Webex · Schema

CustomerTagsResponse

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.
View JSON Schema on GitHub

JSON Schema

webex-customertagsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomerTagsResponse",
  "title": "CustomerTagsResponse",
  "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."
    }
  }
}