Properties
| Name | Type | Description |
|---|---|---|
| requestId | string | A unique identifier for the request. |
| isIntegrated | boolean | Whether the meeting integration is properly configured. |
| provider | string | The meeting provider checked. |
| status | string | Current status of the integration. |
| details | string | Additional details about the integration status. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/MeetingIntegrationStatusResponse",
"title": "MeetingIntegrationStatusResponse",
"type": "object",
"properties": {
"requestId": {
"type": "string",
"description": "A unique identifier for the request."
},
"isIntegrated": {
"type": "boolean",
"description": "Whether the meeting integration is properly configured."
},
"provider": {
"type": "string",
"description": "The meeting provider checked."
},
"status": {
"type": "string",
"enum": [
"Active",
"Inactive",
"Error"
],
"description": "Current status of the integration."
},
"details": {
"type": "string",
"description": "Additional details about the integration status."
}
}
}