Get Meeting Attributes
This request returns a list of call flow attributes associated with the specified meeting.
get | /meetings/{meetingNumber}/attributes |
Sample Request
A sample GET request to retrieve a list of meeting attributes, targeted by meetingNumber
:
curl -X GET \
'https://api.carrierx.com/conference/v1/meetings/111/attributes?limit=6' \
-u '[your_user_name]:[your_password]'
Sample Response
200
status code with a serialized copy of the Meeting object attributes:
[
{
"name": "conference_exittones",
"value": "on"
},
{
"name": "conference_qa_policy",
"value": "p"
},
{
"name": "conf_participants_count",
"value": "0"
},
{
"name": "conf_hosts_count",
"value": "1"
},
{
"name": "conf_listeners_count",
"value": "0"
},
{
"name": "participant_list",
"value": "5626245432:15162065310:'2756'"
}
]
note
Note that the meetingNumber
and not the id
is used to target the meeting.
This request is enabled for Pagination, Result Filtering, and Field Filtering.
Path Arguments
Parameter | Data Type | Description |
---|---|---|
meetingNumber required | integer | The meeting number. |