Bandwidth · Schema

OrderListResponse

Response containing a list of orders

CommunicationsCPaaSVoiceMessagingTelephonySMSMFA

Properties

Name Type Description
totalCount integer Total number of orders
orders array
View JSON Schema on GitHub

JSON Schema

phone-numbers-order-list-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-order-list-response-schema.json",
  "title": "OrderListResponse",
  "description": "Response containing a list of orders",
  "type": "object",
  "properties": {
    "totalCount": {
      "type": "integer",
      "description": "Total number of orders"
    },
    "orders": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/OrderResponse"
      }
    }
  }
}