Atualizar um agendamento
Sendo uma API REST, cada método HTTP tem o significado esperado; para realizar a atualização utiliza-se o método PUT.
Given an order identifier changes the appointment details.
Autorizações
AuthorizationstringObrigatório
Parâmetros de rota
foliostringObrigatório
idstringObrigatório
order_idstringObrigatório
Order UUID for which an appointment is to be made.
appointment_idstringObrigatório
Identifier of the appointment to be obtained.
Corpo
appointment_datestringObrigatório
Date of appointment.
appointment_timestringObrigatório
Time of appointment.
appointment_durationintegerObrigatório
Appointment duration in minutes.
Respostas
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}/Atualizado