POST api/AzureAvCall/AddParticipants
Request Information
URI Parameters
None.
Body Parameters
AddParticipantsDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| MeetingId | string |
None. |
|
| CreatedBy | string |
None. |
|
| Participants | Collection of Participants |
None. |
Request Formats
application/json, text/json
Sample:
{
"meetingId": "sample string 1",
"createdBy": "sample string 2",
"participants": [
{
"userId": "sample string 1"
},
{
"userId": "sample string 1"
}
]
}
application/xml, text/xml
Sample:
<AddParticipantsDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ScribingSoftware.Model.DTO">
<CreatedBy>sample string 2</CreatedBy>
<MeetingId>sample string 1</MeetingId>
<Participants>
<Participants>
<UserId>sample string 1</UserId>
</Participants>
<Participants>
<UserId>sample string 1</UserId>
</Participants>
</Participants>
</AddParticipantsDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.