GET
/api/v1/webhooksListar Webhooks
Retorna a lista dos endpoints de webhook configurados.
Escoporead + webhooks
Parâmetros de query
| Parâmetro | Tipo | Descrição |
|---|---|---|
page | integer | Página (padrão 1). |
limit | integer | Itens por página (padrão 20). |
Exemplo de requisição
bash
curl https://devexpay-v3.vercel.app/api/v1/webhooks \
-H "Authorization: Bearer $TOKEN"Resposta
json
{
"count": 1,
"next": null,
"previous": null,
"results": [
{
"id": "be6a...",
"name": "CRM Zapier",
"description": null,
"url": "https://hooks.zapier.com/...",
"events": ["sale.paid", "sale.refunded"],
"is_active": true,
"created_at": "2026-06-08T12:00:00Z",
"updated_at": "2026-06-08T12:00:00Z"
}
]
}