POST api/create-appointment
Request Information
URI Parameters
None.
Body Parameters
AppointmentParam| Name | Description | Type | Additional information |
|---|---|---|---|
| ComId | string |
None. |
|
| AptId | integer |
None. |
|
| CustomerId | integer |
None. |
|
| Note | string |
None. |
|
| StartTime | string |
None. |
|
| Services | Collection of TabletAppointmentItem |
None. |
Request Formats
application/json, text/json
Sample:
{
"ComId": "sample string 1",
"AptId": 2,
"CustomerId": 3,
"Note": "sample string 4",
"StartTime": "sample string 5",
"Services": [
{
"ItemId": 1,
"ServerId": 2,
"StartTime": "sample string 3"
},
{
"ItemId": 1,
"ServerId": 2,
"StartTime": "sample string 3"
}
]
}
multipart/form-data
Sample:
{"ComId":"sample string 1","AptId":2,"CustomerId":3,"Note":"sample string 4","StartTime":"sample string 5","Services":[{"ItemId":1,"ServerId":2,"StartTime":"sample string 3"},{"ItemId":1,"ServerId":2,"StartTime":"sample string 3"}]}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ObjectNone.
Response Formats
application/json, text/json, multipart/form-data
Sample:
{}