POST api/AlertisApi/CreateAppointment?kioskName={kioskName}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| kioskName | string |
Required |
Body Parameters
UpsertAppointmentDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| FirstName | string |
None. |
|
| LastName | string |
None. |
|
| string |
None. |
||
| EmployeeId | integer |
None. |
|
| Start | date |
None. |
|
| End | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"FirstName": "sample string 1",
"LastName": "sample string 2",
"Email": "sample string 3",
"EmployeeId": 4,
"Start": "2026-06-14T02:26:47.8842018+00:00",
"End": "2026-06-14T02:26:47.8842018+00:00"
}
application/xml, text/xml
Sample:
<UpsertAppointmentDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Alertis.Model.DTO"> <Email>sample string 3</Email> <EmployeeId>4</EmployeeId> <End>2026-06-14T02:26:47.8842018+00:00</End> <FirstName>sample string 1</FirstName> <LastName>sample string 2</LastName> <Start>2026-06-14T02:26:47.8842018+00:00</Start> </UpsertAppointmentDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
integerResponse Formats
application/json, text/json
Sample:
1
application/xml, text/xml
Sample:
<long xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</long>