Webex · Schema

UpdateTrackingCodeForUserObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
siteUrl string Site URL for the tracking code.
personId string Unique identifier for the user. At least one parameter of `personId` or `email` is required. `personId` must precede `email` if both are specified.
email string Email address for the user. At least one parameter of `personId` or `email` is required. `personId` must precede `email` if both are specified.
trackingCodes array Tracking code information for updates.
View JSON Schema on GitHub

JSON Schema

webex-updatetrackingcodeforuserobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateTrackingCodeForUserObject",
  "title": "UpdateTrackingCodeForUserObject",
  "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. At least one parameter of `personId` or `email` is required. `personId` must precede `email` if both are specified."
    },
    "email": {
      "type": "string",
      "example": "[email protected]",
      "description": "Email address for the user. At least one parameter of `personId` or `email` is required. `personId` must precede `email` if both are specified."
    },
    "trackingCodes": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/UpdateTrackingCodeItemForUserObject"
      },
      "description": "Tracking code information for updates."
    }
  }
}