GET api/v1/banzaifieldservices/{PartnerId}/ChangedStatus/Appointments?StartDate={StartDate}&EndDate={EndDate}

Get appointments with date last update between StartDate and End Date

Request Information

URI Parameters

NameDescriptionTypeAdditional information
PartnerId

The partner identifier:
1 = 'ePRICE'

integer

Required

StartDate

StartDate Filter

date

Required

EndDate

End Date Filter

date

Required

Body Parameters

None.

Response Information

Resource Description

Appointments model

Collection of ChangedAppointmentDTO
NameDescriptionTypeAdditional information
AppointmentId

integer

None.

Response Formats

application/json, text/json

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

text/plain

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

application/xml, text/xml

Sample:
<ArrayOfChangedAppointmentDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ServicePlatform.BL.Models.ChangedStatus">
  <ChangedAppointmentDTO>
    <AppointmentId>1</AppointmentId>
  </ChangedAppointmentDTO>
  <ChangedAppointmentDTO>
    <AppointmentId>1</AppointmentId>
  </ChangedAppointmentDTO>
</ArrayOfChangedAppointmentDTO>

application/octet-stream

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

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

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