Retrieve an Incoming Carrier

This API returns the details of an incoming carrier.

API Endpoint
GEThttps://api.vobiz.ai/api/v1/Account/{auth_id}/IncomingCarrier/{carrier_id}/

Arguments

No arguments need to be passed.

Returns

Returns an IncomingCarrier object.

Response Example

HTTP Status Code: 200
{
  "api_id": "correlation-id-uuid",
  "carrier_id": "a1b2c3d4e5f6g7",
  "name": "My SIP Carrier",
  "ip_set": "203.0.113.10,203.0.113.11,203.0.113.12",
  "voice": true,
  "sms": false,
  "resource_uri": "/v1/Account/{Auth_ID}/IncomingCarrier/a1b2c3d4e5f6g7/"
}

Examples

cURL - Retrieve Incoming Carrier

cURL Request
curl -X GET https://api.vobiz.ai/api/v1/Account/{Auth_ID}/IncomingCarrier/a1b2c3d4e5f6g7/ \
  -H "X-Auth-ID: YOUR_AUTH_ID" \
  -H "X-Auth-Token: YOUR_AUTH_TOKEN"