webhooks

Get

GET
Gets the requested webhook's information.

Query parameters

idstringRequired
ID for the webhook.

Response

This endpoint returns an object
webhook
object
GET
1curl -G https://api.devrev.ai/webhooks.get \
2 -H "Authorization: <apiKey>" \
3 --data-urlencode id=don:integration:<partition>:devo/<dev-org-id>:webhook/<webhook-id>
Response
1{
2 "webhook": {
3 "id": "id",
4 "secret": "secret",
5 "status": "active",
6 "url": "url",
7 "created_date": "2023-01-01T12:00:00Z",
8 "display_id": "display_id",
9 "event_types": [
10 "account_created"
11 ],
12 "modified_date": "2023-01-01T12:00:00Z"
13 }
14}