Bandwidth · Schema
ConferenceMember
ConferenceMember schema from Bandwidth voice API
CommunicationsCPaaSVoiceMessagingTelephonySMSMFA
Properties
| Name | Type | Description |
|---|---|---|
| callId | string | The call ID of the conference member |
| conferenceId | string | The conference ID |
| memberUrl | string | The URL for this member resource |
| mute | boolean | Whether the member is muted |
| hold | boolean | Whether the member is on hold |
| callIdsToCoach | array | List of call IDs that this member is coaching |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/bandwidth/refs/heads/main/json-schema/voice-conference-member-schema.json",
"title": "ConferenceMember",
"description": "ConferenceMember schema from Bandwidth voice API",
"type": "object",
"properties": {
"callId": {
"type": "string",
"description": "The call ID of the conference member"
},
"conferenceId": {
"type": "string",
"description": "The conference ID"
},
"memberUrl": {
"type": "string",
"format": "uri",
"description": "The URL for this member resource"
},
"mute": {
"type": "boolean",
"description": "Whether the member is muted"
},
"hold": {
"type": "boolean",
"description": "Whether the member is on hold"
},
"callIdsToCoach": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of call IDs that this member is coaching"
}
}
}