Get Meeting Rooms
This request returns a list of meeting rooms for the selected subscriber.
get | /subscribers/{sid}/meetingRooms |
Sample Request
This is a sample GET request to retrieve meeting rooms for the subscribermatching the criteria in the request URL:
curl -X GET \
'https://api.carrierx.com/conference/v1/subscribers/rB0M9.EzXfaO4keb-opANwfb7CHx1Ph1/meetingRooms' \
-u '[your_user_name]:[your_password]'
Sample Response
200
status code with a list of meeting rooms:
{
"last": 0,
"meetingRooms": [
{
"attributes":[],
"created": 1603355950000,
"description": "Test Meeting",
"didGroupReferences": [
{
"didGroupId": 731,
"state": 0
}
],
"keychain": [
{
"accessCode": "463516",
"id": 3464,
"role": 1
}
],
"meetingNumber": 313267,
"primaryDidGroupId": 731,
"subscriberSid": "rB0M9.EzXfaO4keb-opANwfb7CHx1Ph1"
}
],
"offset": 0,
"total": 1
}
This request is enabled for Pagination, Result Filtering, and Field Filtering.
Path Arguments
Parameter | Data Type | Description |
---|---|---|
sid required | string | The subscriber secure ID. |