GET/webhooks

Lista

Recupera todos os Webhooks associados à sua aplicação

Responses

200Lista de Webhooks
object
pagenumber (double)
totalnumber (double)
totalPagesnumber (double)
resultsobject[]
itemsobject

Example response

json
{
  "page": 0,
  "total": 0,
  "totalPages": 0,
  "results": [
    {
      "id": "string",
      "url": "string",
      "event": "all",
      "disabledAt": "2024-01-01T00:00:00Z",
      "createdAt": "2024-01-01T00:00:00Z",
      "updatedAt": "2024-01-01T00:00:00Z",
      "headers": {
        "<key>": "string"
      }
    }
  ]
}
curl -X GET \
'https://api.pluggy.ai/webhooks' \
-H 'Content-Type: application/json' \
-H 'X-API-KEY: YOUR_API_KEY'
Resposta de exemplo
{
"page": 0,
"total": 0,
"totalPages": 0,
"results": [
{
"id": "string",
"url": "string",
"event": "all",
"disabledAt": "2024-01-01T00:00:00Z",
"createdAt": "2024-01-01T00:00:00Z",
"updatedAt": "2024-01-01T00:00:00Z",
"headers": {
"<key>": "string"
}
}
]
}