1. Webhook
  • Bem vindo
  • Webhook
    • Webhook de TRANSAÇÃO
    • Webhook de Saque
    • Create
      POST
    • Find
      GET
    • Find All
      GET
    • Delete
      DELETE
  • Transactions
    • Pix
      POST
    • BOLETO
      POST
    • CARTÃO
      POST
    • Find All
      GET
    • Find
      GET
    • Find By Metadata
      GET
  • Withdraw
    • Find All
      GET
    • Cash Out
      POST
    • Find By Metadata
      GET
    • Find
      GET
  • Balance
    • Get Balance
      GET
  • Disputes
    • Find All
      GET
    • Find
      GET
    • Seller appeal
      POST
  • Fees
    • Get seller Fees
      GET
  • Check
    GET
  1. Webhook

Find All

GET
/webhooks

Requisição

Authorization
Adicionar parâmetro em header
x-api-key
Exemplo:
x-api-key: ********************

Respostas

🟢200OK
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/webhooks' \
--header 'x-api-key: <api-key>'
Response Response Example
{
    "status": true,
    "data": {
        "data": [
            {
                "id": "42f223af-17a2-4b2e-ba42-400e4f5bb538",
                "sellerId": "6e1f3704-588b-4bf4-ba1f-bbd4e884fc5c",
                "url": "https://seller.example.com/webhook-endpoint",
                "description": "Production webhook for transaction events",
                "eventType": "TRANSACTION",
                "isActive": true,
                "secret": "de70036ead5d1a288a2ee886cc57737e1f2250a14c7a03a6ec7f67ed3bb2b60e",
                "createdAt": "2025-06-27T18:34:35.798Z",
                "updatedAt": "2025-06-27T18:34:35.798Z"
            },
            {
                "id": "8bc6f61b-cf24-4334-9aad-197c5aaedd8b",
                "sellerId": "6e1f3704-588b-4bf4-ba1f-bbd4e884fc5c",
                "url": "https://seller.example1.com/webhook-endpoint",
                "description": "Production webhook for transaction events",
                "eventType": "TRANSACTION",
                "isActive": true,
                "secret": "bc5bb1e8adb830ec55c0b28c89637345c814f8dd82567476200e4f8618e775b0",
                "createdAt": "2025-06-27T18:39:06.299Z",
                "updatedAt": "2025-06-27T18:39:06.299Z"
            }
        ],
        "count": 2,
        "take": 10,
        "skip": 0
    }
}
Modificado em 2025-10-22 13:17:40
Página anterior
Find
Próxima página
Delete
Built with