Webex · Schema

GetTrackingCodeForUserObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
siteUrl string Site URL for the tracking code.
personId string Unique identifier for the user.
email string Email address for the user.
trackingCodes array Tracking code information.
View JSON Schema on GitHub

JSON Schema

webex-gettrackingcodeforuserobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GetTrackingCodeForUserObject",
  "title": "GetTrackingCodeForUserObject",
  "type": "object",
  "required": [
    "siteUrl"
  ],
  "properties": {
    "siteUrl": {
      "type": "string",
      "example": "example.webex.com",
      "description": "Site URL for the tracking code."
    },
    "personId": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS8xOGJiOWNjMC0zMWM2LTQ3MzYtYmE4OC0wMDk5ZmQzNDNmODE",
      "description": "Unique identifier for the user."
    },
    "email": {
      "type": "string",
      "example": "[email protected]",
      "description": "Email address for the user."
    },
    "trackingCodes": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/GetTrackingCodeItemForUserObject"
      },
      "description": "Tracking code information."
    }
  }
}