Get Meetings
This request returns a list of active meetings.
get | /meetings |
Sample Request
A sample GET request to retrieve a list of meetings matching the criteria in the request URL.
curl -X GET \
'https://api.carrierx.com/conference/v1/meetings' \
-u '[your_user_name]:[your_password]'
Sample Response
200
status code with a list of meetings associated with the Conference endpoint:
{
"last": 0,
"meetings": [
{
"attributes": [],
"created": 1544729701000,
"duration": 48,
"holdMode": 0,
"id": 196938,
"isRecording": false,
"isSecured": false,
"meetingNumber": 106131,
"muteMode": 32,
"participantCount": 1,
"qaMode": 0,
"state": 2,
"subscriberName": "John Smith",
"type": 1
}
],
"offset": 0,
"total": 1
}
This request is enabled for Pagination, Result Filtering, and Field Filtering.