Skip to content

Get the signed Twilio inbound-SMS webhook URL for a verified BYO account

GET
/v1/telephony-accounts/{account_id}/inbound-sms-webhook
curl --request GET \
--url https://api.vocapable.com/v1/telephony-accounts/example/inbound-sms-webhook \
--header 'Authorization: Bearer <token>'

Return the one account-level URL a customer copies into Twilio’s Messaging config.

The route is visible only after the BYO account is verified. It does not try to make an unverified credential or a platform-managed account look messaging-ready, and it never serializes the credential reference or either credential field.

account_id
required
Account Id
string

Successful Response

Media typeapplication/json
InboundSmsWebhookSummary

The exact signed Twilio Messaging URL for one eligible BYO account.

This is a configuration address, not a credential: Twilio still proves every request against the account’s vaulted auth token, and the destination number is signed and routed again on receipt.

object
url
required
Url
string
Examplegenerated
{
"url": "example"
}

Validation Error

Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
input
Input
ctx
Context
object
Examplegenerated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example",
"input": "example",
"ctx": {}
}
]
}