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}$
. -
The Twilio-provided string that uniquely identifies the Webhook resource to fetch.
Minimum length is
34
, maximum length is34
. Format should match the following pattern:^YW[0-9a-fA-F]{32}$
.
GET
/v2/Services/{ServiceSid}/Webhooks/{Sid}
curl \
--request GET 'https://verify.twilio.com/v2/Services/{ServiceSid}/Webhooks/{Sid}' \
--user "username:password"
Response examples (200)
{
"sid": "YWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"url": "https://verify.twilio.com/v2/Services/VAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Webhooks/YWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"status": "enabled",
"version": "v2",
"account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"event_types": [
"factor.deleted",
"factor.verified"
],
"service_sid": "VAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"webhook_url": "https://owlbank.twilio.com",
"date_created": "2015-07-30T20:00:00Z",
"date_updated": "2015-07-30T20:00:00Z",
"friendly_name": "name",
"webhook_method": "POST"
}