POST api/Appointment/Post
Request Information
URI Parameters
None.
Body Parameters
Appointment| Name | Description | Type | Additional information |
|---|---|---|---|
| LeadCode | integer |
None. |
|
| AppointmentDate | date |
None. |
|
| AppointmentSalesMan | string |
None. |
|
| AppointmentReminder | integer |
None. |
|
| AppointmentConfirmed | boolean |
None. |
|
| AppointmentVip | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"LeadCode": 1,
"AppointmentDate": "2025-10-27T17:31:55.1100014+00:00",
"AppointmentSalesMan": "sample string 3",
"AppointmentReminder": 1,
"AppointmentConfirmed": true,
"AppointmentVip": true
}
application/xml, text/xml
Sample:
<Appointment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Automatrix.MPI.Business.Entities"> <AppointmentConfirmed>true</AppointmentConfirmed> <AppointmentDate>2025-10-27T17:31:55.1100014+00:00</AppointmentDate> <AppointmentReminder>1</AppointmentReminder> <AppointmentSalesMan>sample string 3</AppointmentSalesMan> <AppointmentVip>true</AppointmentVip> <LeadCode>1</LeadCode> </Appointment>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |