GET v1/ServiceContract/ScheduledServicesAppointmentsPerDay?shopOwnerId={shopOwnerId}&periodFrom={periodFrom}&periodTill={periodTill}

Return the scheduled services per day in given period.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
shopOwnerId

The shop owner id

integer

Required.

periodFrom

Period from

date

Required.

periodTill

Period till

date

Required.

Body Parameters

None.

Response Information

Resource Description

A collection of days, with per day the number of scheduled services.

Collection of ScheduledServicesPerDayResponse
NameDescriptionTypeAdditional information
Date

The day

date

None.

ScheduledCount

The number of scheduled services.

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Date": "2026-01-11T16:17:13.1203429+01:00",
    "ScheduledCount": 2
  },
  {
    "Date": "2026-01-11T16:17:13.1203429+01:00",
    "ScheduledCount": 2
  }
]

application/xml, text/xml

Sample:
<ArrayOfScheduledServicesPerDayResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ScheduledServicesPerDayResponse>
    <Date>2026-01-11T16:17:13.1203429+01:00</Date>
    <ScheduledCount>2</ScheduledCount>
  </ScheduledServicesPerDayResponse>
  <ScheduledServicesPerDayResponse>
    <Date>2026-01-11T16:17:13.1203429+01:00</Date>
    <ScheduledCount>2</ScheduledCount>
  </ScheduledServicesPerDayResponse>
</ArrayOfScheduledServicesPerDayResponse>