Bandwidth · Schema

DisconnectRequest

Request to disconnect phone numbers

CommunicationsCPaaSVoiceMessagingTelephonySMSMFA

Properties

Name Type Description
name string A name for the disconnect order
disconnectTelephoneNumberOrderType object
View JSON Schema on GitHub

JSON Schema

phone-numbers-disconnect-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/bandwidth/refs/heads/main/json-schema/phone-numbers-disconnect-request-schema.json",
  "title": "DisconnectRequest",
  "description": "Request to disconnect phone numbers",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "A name for the disconnect order"
    },
    "disconnectTelephoneNumberOrderType": {
      "type": "object",
      "properties": {
        "telephoneNumberList": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "List of phone numbers to disconnect"
        }
      }
    }
  }
}