Cancelar un agendamiento
Para este servicio se utiliza el método HTTP DELETE, pero el registro no se borra, solo se cancela y queda en el histórico por si es necesario hacer alguna validación posterior.
Given an order identifier cancels its appointment.
Authorizations
AuthorizationstringRequired
Path parameters
idstringRequired
order_idstringRequired
Order UUID for which an appointment is to be made.
Responses
200
A successful response that returns the appointment details.
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
delete
/appointments/{id}/Last updated