GET
/webhooksList
Retrieves all Webhooks associated with your application
Responses
200List of 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"
}
]
}Code Examples
bash
curl -X GET 'https://api.pluggy.ai/webhooks' \
-H 'Content-Type: application/json' \
-H 'X-API-KEY: YOUR_API_KEY'