Webex · Schema

SubscriptionTagsResponse

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
orgName string Name of the customer organization.
orgId string The unique identifier for the customer organization.
tags array An array of tags.
subscriptionId string The unique identifier for the subscription.
trial string boolean flag for trial or not.
View JSON Schema on GitHub

JSON Schema

webex-subscriptiontagsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SubscriptionTagsResponse",
  "title": "SubscriptionTagsResponse",
  "type": "object",
  "properties": {
    "orgName": {
      "type": "string",
      "example": "Customer Name",
      "description": "Name of the customer organization."
    },
    "orgId": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS9mNWIzNjE4Ny1jOGRkLTQ3MjctOGIyZi1mOWM0NDdmMjkwNDY",
      "description": "The unique identifier for the customer organization."
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string",
        "example": "Tags1,Tags2"
      },
      "description": "An array of tags."
    },
    "subscriptionId": {
      "type": "string",
      "example": "Sub119911",
      "description": "The unique identifier for the subscription."
    },
    "trial": {
      "type": "string",
      "example": "false",
      "description": "boolean flag for trial or not."
    }
  }
}