Update a scheduling
Being a REST API, each HTTP method has the expected meaning; to perform the update the PUT method is used.
Given an order identifier changes the appointment details.
Authorizations
AuthorizationstringRequired
Path parameters
foliostringRequired
idstringRequired
order_idstringRequired
Order UUID for which an appointment is to be made.
appointment_idstringRequired
Identifier of the appointment to be obtained.
Body
appointment_datestringRequired
Date of appointment.
appointment_timestringRequired
Time of appointment.
appointment_durationintegerRequired
Appointment duration in minutes.
Responses
200
A successful response that returns the appointment details.
application/json
400
A failed response because the required parameters were not received.
application/json
401
A failed response due to insufficient permissions to execute the operation.
application/json
403
A failed response due to not having the proper permissions.
application/json
500
A failed response due to a server problem.
application/json
put
/orders/{folio}/appointments/{id}/Last updated