curl --request GET \
--url https://api.prod.usesimple.ai/api/v1/webhooks \
--header 'Authorization: <api-key>'{
"endpoints": [
{
"endpoint_id": "<string>",
"url": "<string>",
"event_types": [
"call.started"
],
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"disabled": true
}
]
}List all webhook endpoints associated with the organization. Requires a valid API key.
curl --request GET \
--url https://api.prod.usesimple.ai/api/v1/webhooks \
--header 'Authorization: <api-key>'{
"endpoints": [
{
"endpoint_id": "<string>",
"url": "<string>",
"event_types": [
"call.started"
],
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"disabled": true
}
]
}Successful Response
Show child attributes
Unique identifier for the webhook endpoint
The URL where webhook events will be sent
The types of events the webhook is subscribed to
call.started, call.completed, transcript.updated When the webhook endpoint was created
Description of the webhook endpoint
Whether the webhook is disabled
Was this page helpful?