### GET /webhooks/getExample Source: https://api-pay.ameii.com.br/api/index Retrieves example webhook data. ```APIDOC ## GET /webhooks/getExample ### Description Gets webhook examples. ### Method GET ### Endpoint /webhooks/getExample ### Response #### Success Response (200) - **object** - Example webhook data. #### Response Example ```json { "example": "webhook data" } ``` ``` -------------------------------- ### POST /webhooks/test Source: https://api-pay.ameii.com.br/api/index Sends a test webhook notification. ```APIDOC ## POST /webhooks/test ### Description Sends a test webhook. ### Method POST ### Endpoint /webhooks/test ### Parameters #### Request Body - **sendWebhookTestDto** (SendWebhookTestDto) - Required - Data for the test webhook. ### Request Example ```json { "sendWebhookTestDto": { "url": "string", "eventType": "string" } } ``` ### Response #### Success Response (200) - **string** - Confirmation message. #### Response Example ```json "Webhook test sent successfully." ``` ``` -------------------------------- ### POST /transfers Source: https://api-pay.ameii.com.br/api/index Creates a new transfer. ```APIDOC ## POST /transfers ### Description Creates a new transfer. ### Method POST ### Endpoint /transfers ### Parameters #### Request Body - **createTransferDto** (CreateTransferDto) - Required - Details for creating the transfer. ### Request Example ```json { "createTransferDto": { "fromAccount": "string", "toAccount": "string", "amount": 0, "description": "string" } } ``` ### Response #### Success Response (200) - **createTransferResponseDto** (CreateTransferResponseDto) - Details of the created transfer. #### Response Example ```json { "createTransferResponseDto": { "transferId": "string", "status": "TransferStatus" } } ``` ``` -------------------------------- ### POST /transactions Source: https://api-pay.ameii.com.br/api/index Creates a new transaction using the provided transaction details. ```APIDOC ## POST /transactions ### Description Creates a new transaction. ### Method POST ### Endpoint /transactions ### Parameters #### Request Body - **pixDto** (PixDto) - Required - Details for the Pix transaction. - **customerDto** (CustomerDto) - Required - Customer information. - **transactionItemDto** (TransactionItemDto) - Required - Details of the transaction items. ### Request Example ```json { "pixDto": { "key": "string", "keyType": "PixKeyType" }, "customerDto": { "document": { "type": "string", "value": "string" }, "name": "string" }, "transactionItemDto": { "description": "string", "amount": 0, "quantity": 0 } } ``` ### Response #### Success Response (200) - **createTransactionResponseDto** (CreateTransactionResponseDto) - Details of the created transaction. #### Response Example ```json { "createTransactionResponseDto": { "transactionId": "string", "status": "string" } } ``` ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.