Fetch sip domain

GET /v2/SipDomains/{SipDomain}

Path parameters

  • SipDomain string Required

Responses

  • 200 application/json

    OK

    Hide headers attributes Show headers attributes
    • Access-Control-Allow-Origin string

      Specify the origin(s) allowed to access the resource

    • Access-Control-Allow-Methods string

      Specify the HTTP methods allowed when accessing the resource

    • Access-Control-Allow-Headers string

      Specify the headers allowed when accessing the resource

    • Access-Control-Allow-Credentials boolean

      Indicates whether the browser should include credentials

    • Access-Control-Expose-Headers string

      Headers exposed to the client

    Hide response attributes Show response attributes object
    • sip_domain string | null
    • url string(uri) | null
    • sid string | null

      Minimum length is 34, maximum length is 34. Format should match the following pattern: ^QQ[0-9a-fA-F]{32}$.

    • account_sid string | null

      Minimum length is 34, maximum length is 34. Format should match the following pattern: ^AC[0-9a-fA-F]{32}$.

    • friendly_name string | null
    • voice_region string | null
    • date_created string(date-time) | null
    • date_updated string(date-time) | null
GET /v2/SipDomains/{SipDomain}
curl \
 --request GET 'https://routes.twilio.com/v2/SipDomains/{SipDomain}' \
 --user "username:password"
Response examples (200)
{
  "sid": "QQ00000000000000000000000000000000",
  "url": "https://routes.twilio.com/v2/SipDomains/test.sip.twilio.com",
  "sip_domain": "test.sip.twilio.com",
  "account_sid": "AC00000000000000000000000000000000",
  "date_created": "2022-06-02T22:33:47Z",
  "date_updated": "2022-06-02T22:33:47Z",
  "voice_region": "string",
  "friendly_name": "string"
}