Bandwidth · Schema

AvailableNumbersResponse

Response containing a list of available phone numbers

CommunicationsCPaaSVoiceMessagingTelephonySMSMFA

Properties

Name Type Description
resultCount integer The number of results returned
telephoneNumberList array
View JSON Schema on GitHub

JSON Schema

phone-numbers-available-numbers-response-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-available-numbers-response-schema.json",
  "title": "AvailableNumbersResponse",
  "description": "Response containing a list of available phone numbers",
  "type": "object",
  "properties": {
    "resultCount": {
      "type": "integer",
      "description": "The number of results returned"
    },
    "telephoneNumberList": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/AvailableNumber"
      }
    }
  }
}