PUT api/appointments/complete/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
AppointmentCompletedModel| Name | Description | Type | Additional information |
|---|---|---|---|
| attendee_id | string |
None. |
|
| id | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"attendee_id": "sample string 1",
"id": "b618bce5-2031-47e9-b03b-7ff9b28c05de"
}
application/xml, text/xml
Sample:
<AppointmentCompletedModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CompleteEmpireApp.Api.Models"> <Id xmlns="http://schemas.datacontract.org/2004/07/CompleteEmpireApp.Api.Models.Base">b618bce5-2031-47e9-b03b-7ff9b28c05de</Id> <AttendeeId>sample string 1</AttendeeId> </AppointmentCompletedModel>
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.