Delete an Incoming Carrier

This API lets you remove an incoming carrier from your account.

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

Warning

This action is permanent and cannot be undone.

All IP mappings associated with this carrier will be removed from OpenSIPS. Ensure no active SIP traffic is relying on this carrier before deletion.

Arguments

No arguments need to be passed.

Response Example

HTTP Status Code: 204
{
  "api_id": "correlation-id-uuid"
}

Response Notes

  • HTTP 204: Carrier deleted successfully
  • IP Mappings: All IP addresses removed from OpenSIPS whitelist
  • Permanent: This action cannot be undone

Examples

cURL - Delete Incoming Carrier

cURL Request
curl -X DELETE 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"