Pix ProcessamentoPix Processamento Docs
API EndpointsWebhooks

List webhooks

GET
/user/webhooks

Authorization

BearerAuth
AuthorizationBearer <token>

In: header

Query Parameters

active?boolean

Filter by status. Omit to return both active and inactive webhooks.

Response Body

application/json

curl -X GET "https://api.exemplo.processamento.com/v1/user/webhooks?active=true"
{
  "webhooks": [
    {
      "id": "kx7m2p9q4r8t1v5w3y6z0a2b",
      "url": "https://seusite.com.br/webhooks/pix",
      "active": true,
      "events": [
        "TRANSACTION_COMPLETED",
        "TRANSACTION_REFUNDED"
      ],
      "hasSecret": true,
      "createdAt": "2026-05-06T13:45:12.000Z",
      "updatedAt": "2026-05-06T13:45:12.000Z"
    }
  ]
}