GET v1/Orders/{id}/GetAvailablePhotographerBookings

Returns a list of available photographer booking times.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

Order number

integer

Required

Body Parameters

None.


Response Information

Resource Description

Collection of BookingSlotsViewModel
NameDescriptionTypeAdditional information
PhotographerId

integer

None.

PhotographerName

string

None.

Start

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "photographerId": 1,
    "photographerName": "sample string 1",
    "start": "2025-04-24T13:03:49.3603245+01:00"
  },
  {
    "photographerId": 1,
    "photographerName": "sample string 1",
    "start": "2025-04-24T13:03:49.3603245+01:00"
  }
]