Creacion de agendamiento
Al ser una API REST, cada método HTTP tiene el significado esperado, para realizar la creación se utiliza el método POST.
Given an order identifier creates a new appointment.
Authorizations
AuthorizationstringRequired
Path parameters
foliostringRequired
Body
room_namestringOptional
Name of the room in which the appointment will be made.
appointment_datestringRequired
Date of appointment.
appointment_timestringRequired
Time of appointment.
appointment_durationintegerRequired
Appointment duration in minutes.
Responses
201
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
post
/orders/{folio}/appointments/Last updated