Webex · Schema

GetTrackingCodeItemForUserObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string Unique identifier for tracking code.
name string Name for tracking code.
value string Value for tracking code.
View JSON Schema on GitHub

JSON Schema

webex-gettrackingcodeitemforuserobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GetTrackingCodeItemForUserObject",
  "title": "GetTrackingCodeItemForUserObject",
  "type": "object",
  "required": [
    "id",
    "name",
    "value"
  ],
  "properties": {
    "id": {
      "type": "string",
      "example": "1",
      "description": "Unique identifier for tracking code."
    },
    "name": {
      "type": "string",
      "example": "Department",
      "description": "Name for tracking code."
    },
    "value": {
      "type": "string",
      "description": "Value for tracking code."
    }
  }
}