Properties
| Name | Type | Description |
|---|---|---|
| id | string | The unique id of the guest. This is a `personId` |
| subject | string | The external unique identifier of the guest. |
| displayName | string | The guest’s display name shown in Webex applications |
| string | The person’s synthetic email in Webex. | |
| accessToken | string | The guests access token. Guest tokens usually are over 2000 characters in length. |
| expiresIn | number | The token expiration in seconds from the time of issuance. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Guest",
"title": "Guest",
"type": "object",
"properties": {
"id": {
"type": "string",
"example": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS8zNzlhNWQ4ZC1hNTE4LTQ3NmQtYmY1NC1mZmE5MWQ3OWM4MTI",
"description": "The unique id of the guest. This is a `personId`"
},
"subject": {
"type": "string",
"example": "PersonNo#1",
"description": "The external unique identifier of the guest."
},
"displayName": {
"type": "string",
"example": "Person of Interest",
"description": "The guest\u2019s display name shown in Webex applications"
},
"email": {
"type": "string",
"example": "[email protected]",
"description": "The person\u2019s synthetic email in Webex."
},
"accessToken": {
"type": "string",
"example": "eyJhbGciOiJSUzI1NiJ9.eyJkw1zx5iIDv7FL3cWQ_JEjehqtPVRmFf572q7RZwSIZgQRziAw",
"description": "The guests access token. Guest tokens usually are over 2000 characters in length."
},
"expiresIn": {
"type": "number",
"example": 64799,
"description": "The token expiration in seconds from the time of issuance."
}
}
}