GET api/v1/banzaifieldservices/{PartnerId}/Appointment/ToReschedule?dateLastUpdate={dateLastUpdate}

Get a list of appointments whose status is changed to ("Completed OK" or "Completed KO") after the given date

Request Information

URI Parameters

NameDescriptionTypeAdditional information
PartnerId

The partner identifier:
1 = 'ePRICE'

integer

Required

dateLastUpdate

The validation date of the check

date

Required

Body Parameters

None.

Response Information

Resource Description

Collection of AppointmentToRescheduleResponse
NameDescriptionTypeAdditional information
IdAppointment

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "idAppointment": 1
  },
  {
    "idAppointment": 1
  }
]

text/plain

Sample:
[{"idAppointment":1},{"idAppointment":1}]

application/xml, text/xml

Sample:
<ArrayOfAppointmentToRescheduleResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ServicePlatform.BL.Models.BanzaiServicePlatform.Dto">
  <AppointmentToRescheduleResponse>
    <IdAppointment>1</IdAppointment>
  </AppointmentToRescheduleResponse>
  <AppointmentToRescheduleResponse>
    <IdAppointment>1</IdAppointment>
  </AppointmentToRescheduleResponse>
</ArrayOfAppointmentToRescheduleResponse>

application/octet-stream

Sample:
[{"IdAppointment":1},{"IdAppointment":1}]

text/javascript, application/javascript, application/json-p

Sample:
([{"idAppointment":1},{"idAppointment":1}]);