GET api/v1/facilities/{page}/{pageSize}
Returns a list of facilities for the specified "page" of size "pageSize". This is an asynchronous service.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| page | integer |
Required |
|
| pageSize | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
FsFacilityReturnModel
ApiResponseModelOfListOfFacilityModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | ApiResponseDataModelOfListOfFacilityModel |
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": [
{
"FacilityId": 1,
"Coid": "sample string 2",
"Name": "sample string 3",
"AppChanged": "sample string 4",
"UserChanged": "sample string 5",
"Version": "QEA=",
"Rowguid": "94b37321-178d-4871-9c2a-6f230add2e7a",
"DateChangedUTC": "2026-01-03T23:14:57.7020778-06:00",
"ProcessLevel": 1,
"HrCompany": 1,
"ProcessLevelContractLabor": 1,
"HrCompanyContractLabor": 1,
"CensusInterface": true,
"DaysInSchedule": 1
},
{
"FacilityId": 1,
"Coid": "sample string 2",
"Name": "sample string 3",
"AppChanged": "sample string 4",
"UserChanged": "sample string 5",
"Version": "QEA=",
"Rowguid": "94b37321-178d-4871-9c2a-6f230add2e7a",
"DateChangedUTC": "2026-01-03T23:14:57.7020778-06:00",
"ProcessLevel": 1,
"HrCompany": 1,
"ProcessLevelContractLabor": 1,
"HrCompanyContractLabor": 1,
"CensusInterface": true,
"DaysInSchedule": 1
}
]
},
"Errors": [
"sample string 1",
"sample string 2"
],
"Warnings": [
"sample string 1",
"sample string 2"
]
}