POST api/v1/scheduleplans
Gets the Schedule Non Compliance Results..
Request Information
URI Parameters
None.
Body Parameters
SchedulePlanRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| FacilityId | integer |
Required |
|
| StartDate | date |
Required |
|
| EndDate | date |
Required |
|
| ComplianceCategories | Collection of ComplianceCategories |
None. |
|
| DepartmentIds | Collection of integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"FacilityId": 1,
"StartDate": "2026-01-02T16:37:21.8526582-06:00",
"EndDate": "2026-01-02T16:37:21.8526582-06:00",
"ComplianceCategories": [
0,
0
],
"DepartmentIds": [
1,
2
]
}
Response Information
Resource Description
ApiResponseModelOfListOfOutOfCompliance| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | ApiResponseDataModelOfListOfOutOfCompliance |
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": null
},
"Errors": [
"sample string 1",
"sample string 2"
],
"Warnings": [
"sample string 1",
"sample string 2"
]
}