POST api/v1/facilityscheduleperiod/GetFutureSchedulePeriods
Get future schedule periods
Request Information
URI Parameters
None.
Body Parameters
SchedulePeriodsModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Amount | integer |
None. |
|
| ADate | date |
None. |
|
| IncludeCurrentPeriod | boolean |
None. |
|
| IncludeNextPeriod | boolean |
None. |
|
| FacilityId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Amount": 1,
"ADate": "2026-01-02T21:53:56.3018887-06:00",
"IncludeCurrentPeriod": true,
"IncludeNextPeriod": true,
"FacilityId": 5
}
Response Information
Resource Description
ApiResponseModelOfListOfTimeSlot| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | ApiResponseDataModelOfListOfTimeSlot |
None. |
|
| Errors | Collection of string |
None. |
|
| Warnings | Collection of string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": {
"PageSize": 1,
"Page": 2,
"TotalPages": 3,
"TotalResults": 4,
"Results": [
{
"TimeSpan": "00:00:00",
"SpansADay": false,
"TotalHours": 0.0,
"TotalMinutes": 0.0,
"Hours": 0,
"Minutes": 0,
"Seconds": 0,
"Start": "0001-01-01T00:00:00",
"End": "0001-01-01T00:00:00"
},
{
"TimeSpan": "00:00:00",
"SpansADay": false,
"TotalHours": 0.0,
"TotalMinutes": 0.0,
"Hours": 0,
"Minutes": 0,
"Seconds": 0,
"Start": "0001-01-01T00:00:00",
"End": "0001-01-01T00:00:00"
}
]
},
"Errors": [
"sample string 1",
"sample string 2"
],
"Warnings": [
"sample string 1",
"sample string 2"
]
}