Webex · Schema

PatchUserLicenses

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
email string Email address of the user.
personId string A unique identifier for the user.
orgId string The ID of the organization to which the licenses and siteUrls belong. If not specified, the organization ID from the OAuth token is used.
licenses array An array of licenses to be assigned to the user.
siteUrls array An array of siteUrls to be assigned to the user.
View JSON Schema on GitHub

JSON Schema

webex-patchuserlicenses-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PatchUserLicenses",
  "title": "PatchUserLicenses",
  "type": "object",
  "properties": {
    "email": {
      "type": "string",
      "example": "[email protected]",
      "description": "Email address of the user."
    },
    "personId": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS9mNWIzNjE4Ny1jOGRkLTQ3MjctOGIyZi1mOWM0NDdmMjkwNDY",
      "description": "A unique identifier for the user."
    },
    "orgId": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL09SR0FOSVpBVElPTi85NmFiYzJhYS0zZGNjLTExZTUtYTE1Mi1mZTM0ODE5Y2RjOWE",
      "description": "The ID of the organization to which the licenses and siteUrls belong. If not specified, the organization ID from the OAuth token is used."
    },
    "licenses": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/LicenseRequest"
      },
      "description": "An array of licenses to be assigned to the user."
    },
    "siteUrls": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/SiteUrlsRequest"
      },
      "description": "An array of siteUrls to be assigned to the user."
    }
  }
}