Webex · Schema
RecallInformation
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| type | object | The type of recall the incoming call is for. Park is the only type of recall currently supported but additional values may be added in the future. |
| party | object | If the type is park, contains the details of where the call was parked. For example, if user A parks a call against user B and A is recalled for the park, then this field contains B's information in A |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/RecallInformation",
"title": "RecallInformation",
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"allOf": [
{
"$ref": "#/components/schemas/RecallTypeEnum"
}
],
"description": "The type of recall the incoming call is for. Park is the only type of recall currently supported but additional values may be added in the future."
},
"party": {
"allOf": [
{
"$ref": "#/components/schemas/PartyInformation"
}
],
"description": "If the type is park, contains the details of where the call was parked. For example, if user A parks a call against user B and A is recalled for the park, then this field contains B's information in A's incoming call details. Only present when the type is park."
}
}
}