TODO: Resource-level docs
Retrieve a list of all Webhooks for a Service.
Path parameters
-
The unique SID identifier of the Service.
Minimum length is
34, maximum length is34. Format should match the following pattern:^VA[0-9a-fA-F]{32}$.
GET
/v2/Services/{ServiceSid}/Webhooks
curl \
--request GET 'https://verify.twilio.com/v2/Services/{ServiceSid}/Webhooks' \
--user "username:password"
Response examples (200)
{
"meta": {
"first_page_url": "https://example.com",
"key": "string",
"next_page_url": "https://example.com",
"page": 42,
"page_size": 42,
"previous_page_url": "https://example.com",
"url": "https://example.com"
},
"webhooks": [
{
"account_sid": "string",
"date_created": "2026-05-04T09:42:00Z",
"date_updated": "2026-05-04T09:42:00Z",
"event_types": [
"string"
],
"friendly_name": "string",
"service_sid": "string",
"sid": "string",
"status": "enabled",
"url": "https://example.com",
"version": "v1",
"webhook_method": "GET",
"webhook_url": "https://example.com"
}
]
}