GET api/Phone/Certificates/attendees/{staffId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| staffId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
StaffPhoneAttendees| Name | Description | Type | Additional information |
|---|---|---|---|
| StaffId | integer |
None. |
|
| Attendees | Collection of PhoneAttendee |
None. |
Response Formats
application/json, text/json
Sample:
{
"StaffId": 1,
"Attendees": [
{
"Id": 1,
"StaffId": 2,
"StaffName": "sample string 3"
},
{
"Id": 1,
"StaffId": 2,
"StaffName": "sample string 3"
}
]
}
application/xml, text/xml
Sample:
<StaffPhoneAttendees xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Icculus.Portal.Controllers.Phone">
<Attendees>
<PhoneAttendee>
<Id>1</Id>
<StaffId>2</StaffId>
<StaffName>sample string 3</StaffName>
</PhoneAttendee>
<PhoneAttendee>
<Id>1</Id>
<StaffId>2</StaffId>
<StaffName>sample string 3</StaffName>
</PhoneAttendee>
</Attendees>
<StaffId>1</StaffId>
</StaffPhoneAttendees>