POST api/dates/workingdays/filtered

Request Information

URI Parameters

None.

Body Parameters

DatesFilterRequest
NameDescriptionTypeAdditional information
DateRanges

Collection of DateRange

None.

WeekDayPattern

Collection of integer

None.

ExcludeHolidays

boolean

None.

ExcludeHolidaysRegion

string

None.

Request Formats

application/json, text/json

Sample:
{
  "DateRanges": [
    {
      "StartDate": "2025-05-03T03:12:57.4931357Z",
      "EndDate": "2025-05-03T03:12:57.4931357Z"
    },
    {
      "StartDate": "2025-05-03T03:12:57.4931357Z",
      "EndDate": "2025-05-03T03:12:57.4931357Z"
    }
  ],
  "WeekDayPattern": [
    1,
    2
  ],
  "ExcludeHolidays": true,
  "ExcludeHolidaysRegion": "sample string 2"
}

Response Information

Resource Description

Collection of date

Response Formats

application/json, text/json

Sample:
[
  "2025-05-03T04:12:57.4931357+01:00",
  "2025-05-03T04:12:57.4931357+01:00"
]