Webhooks
List Webhook
Webhooks
List Webhook
List all webhook endpoints associated with the organization. Requires a valid API key.
GET
/
webhooks
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"
],
"description": "<string>",
"disabled": true,
"created_at": "2023-11-07T05:31:56Z"
}
]
}
Authorizations
Response
200 - application/json
Successful Response
Unique identifier for the webhook endpoint
The URL where webhook events will be sent
The types of events the webhook is subscribed to
Available options:
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?
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"
],
"description": "<string>",
"disabled": true,
"created_at": "2023-11-07T05:31:56Z"
}
]
}