POST api/Appointment/V3/CreateAppointment
Request Information
URI Parameters
None.
Body Parameters
AppointmentCreateV3Dto| Name | Description | Type | Additional information |
|---|---|---|---|
| squareId | string |
None. |
|
| status | string |
None. |
|
| customerNote | string |
None. |
|
| sellerNote | string |
None. |
|
| startAt | date |
None. |
|
| teamMemberId | Collection of string |
None. |
|
| version | integer |
None. |
|
| customerId | string |
None. |
|
| locationId | string |
None. |
|
| feedback | integer |
None. |
|
| isImported | integer |
None. |
|
| duration | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"squareId": "sample string 1",
"status": "sample string 2",
"customerNote": "sample string 3",
"sellerNote": "sample string 4",
"startAt": "2026-01-12T03:55:07.1412689+00:00",
"teamMemberId": [
"sample string 1",
"sample string 2"
],
"version": 6,
"customerId": "sample string 7",
"locationId": "sample string 8",
"feedback": 9,
"isImported": 10,
"duration": 11
}
application/xml, text/xml
Sample:
<AppointmentCreateV3Dto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Beauty_Lab_Dashboard.DTO">
<customerId>sample string 7</customerId>
<customerNote>sample string 3</customerNote>
<duration>11</duration>
<feedback>9</feedback>
<isImported>10</isImported>
<locationId>sample string 8</locationId>
<sellerNote>sample string 4</sellerNote>
<squareId>sample string 1</squareId>
<startAt xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
<d2p1:DateTime>2026-01-12T03:55:07.1412689Z</d2p1:DateTime>
<d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
</startAt>
<status>sample string 2</status>
<teamMemberId xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</teamMemberId>
<version>6</version>
</AppointmentCreateV3Dto>
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. |