curl --request PUT \
  --url https://api.splose.com/v1/appointments/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "start": "2024-08-28T01:15:00.000Z",
  "end": "2024-09-22T11:45:00.000Z",
  "serviceId": 1,
  "locationId": 1,
  "practitionerId": 1,
  "caseId": 1,
  "patientId": 1
}'
1

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
integer
required
Required range: x > 0
Example:

1

Body

application/json
start

Appointment start date time (UTC)

Example:

"2024-08-28T01:15:00.000Z"

end

Appointment end date time (UTC)

Example:

"2024-09-22T11:45:00.000Z"

serviceId
integer | null

The service id of this appointment

Required range: x > 0
Example:

1

locationId
integer

The location id of this appointment

Required range: x > 0
Example:

1

practitionerId
integer

The practitioner id of this appointment

Required range: x > 0
Example:

1

caseId
integer | null

The case id of this appointment

Required range: x > 0
Example:

1

patientId
integer

The patient id of this appointment

Required range: x > 0
Example:

1

Response

200 - text
Return 1 on success

The response is of type enum<number>.

Available options:
1