webhooks

List Post

POST
Lists the webhooks.

Request

This endpoint expects a map from strings to any.

Response

This endpoint returns an object
webhooks
list of objects
The list of webhooks.
POST
1curl -X POST https://api.devrev.ai/webhooks.list \
2 -H "Authorization: <apiKey>" \
3 -H "Content-Type: application/json" \
4 -d '{}'
Response
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}