Webex · Schema

BulkActivationEmailResendJobCounts

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
userResendInviteSent number Count of users sent an invitation.
userResendInviteFailed number Count of users who failed to receive an invitation.
userResendInviteSkipped number Count of users who were skipped.
totalUsers number Total count of users processed.
View JSON Schema on GitHub

JSON Schema

webex-bulkactivationemailresendjobcounts-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BulkActivationEmailResendJobCounts",
  "title": "BulkActivationEmailResendJobCounts",
  "type": "object",
  "required": [
    "userResendInviteSent",
    "userResendInviteFailed",
    "userResendInviteSkipped",
    "totalUsers"
  ],
  "properties": {
    "userResendInviteSent": {
      "type": "number",
      "description": "Count of users sent an invitation."
    },
    "userResendInviteFailed": {
      "type": "number",
      "description": "Count of users who failed to receive an invitation."
    },
    "userResendInviteSkipped": {
      "type": "number",
      "description": "Count of users who were skipped."
    },
    "totalUsers": {
      "type": "number",
      "description": "Total count of users processed."
    }
  }
}