Get current webhook configuration for a phone number.
This endpoint returns the current voice and SMS webhook URLs configured for a specific phone number.
Args: phone_number: Phone number to get webhooks for (E.164 format) provider: Provider (‘twilio’ or ‘telnyx’). Auto-detected if not provided
Returns: GetWebhookResponse: Current webhook configuration
This endpoint retrieves the current webhook configuration for a phone number, showing the URLs configured to receive voice call and SMS events.Documentation Index
Fetch the complete documentation index at: https://docs.burki.dev/llms.txt
Use this file to discover all available pages before exploring further.
phone_number (string, required): Phone number to get webhooks for in E.164 format (e.g., +14155551234)provider (string, optional): Provider ("twilio" or "telnyx"). Auto-detected if not provided200 OK status with current webhook configuration.
success (boolean): Whether the request completed successfullyphone_number (string): The queried phone numberprovider (string): Provider that owns the number (“twilio” or “telnyx”)voice_webhook_url (string): Current voice webhook URLsms_webhook_url (string): Current SMS webhook URLconfiguration (object): Complete webhook configuration details
voice_method (string): HTTP method for voice webhookssms_method (string): HTTP method for SMS webhooksstatus_callback_url (string): URL for status callbacksphone_number_sid (string): Twilio phone number SIDfriendly_name (string): Display name for the numberconnection_id (string): Associated connection IDphone_number_id (string): Telnyx phone number IDstatus (string): Number statusfeatures (array): Supported featuresBearer authentication header of the form Bearer <token>, where <token> is your auth token.