webhooks

List

GET
Lists the webhooks.

Response

This endpoint returns an object
webhooks
list of objects
The list of webhooks.
GET
1curl https://api.devrev.ai/webhooks.list \
2 -H "Authorization: <apiKey>"
Response - 200 Success
1{
2 "webhooks": [
3 {
4 "id": "id",
5 "secret": "secret",
6 "status": "active",
7 "url": "url",
8 "created_date": "2023-01-01T12:00:00Z",
9 "display_id": "display_id",
10 "event_types": [
11 "account_created"
12 ],
13 "modified_date": "2023-01-01T12:00:00Z"
14 }
15 ]
16}