Vonage · Schema

SmsResponse

CommunicationMessagingTelecommunicationsVideo ConferencingVoiceSMSVerification

Properties

Name Type Description
message-count string Number of message parts sent.
messages array
View JSON Schema on GitHub

JSON Schema

vonage-smsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SmsResponse",
  "title": "SmsResponse",
  "type": "object",
  "properties": {
    "message-count": {
      "type": "string",
      "description": "Number of message parts sent."
    },
    "messages": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "to": {
            "type": "string"
          },
          "message-id": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "remaining-balance": {
            "type": "string"
          },
          "message-price": {
            "type": "string"
          },
          "network": {
            "type": "string"
          }
        }
      }
    }
  }
}