List facilities
Allows you to retrieve the paginated list of facilities that you have access to.
Query parameters
-
filter
string criteria to filter by
-
sort
string criteria to sort by
-
limit
string amount of results per page to return
-
page
string page number
-
start
string Required ISO8601 formatted date to query data from
-
includes
string optional features to include
-
search
string criteria to search by
-
end
string ISO8601 formatted date to query data until
GET
/api/facilities
curl \
--request GET 'http://localhost:4000/api/facilities?start=string' \
--header "Authorization: $API_KEY"
Response examples (200)
{
"data": [
{
"id": "293f191b-f2e6-4dde-bcab-00b10fdb8cf3",
"name": "Test Facility",
"booths": 1,
"status": "active",
"region_id": "392098bb-ac91-010c-aaa1-9032b19b8cf4",
"account_id": "293f191b-f2e6-4dde-bcab-00b10fdb8cf4",
"working_hours": []
}
],
"page": 1,
"limit": 1,
"pages": 20,
"total": 20
}
Response examples (200)
{
"data": [
{
"id": "293f191b-f2e6-4dde-bcab-00b10fdb8cf3",
"name": "Test Facility",
"booths": 1,
"status": "active",
"region_id": "392098bb-ac91-010c-aaa1-9032b19b8cf4",
"account_id": "293f191b-f2e6-4dde-bcab-00b10fdb8cf4",
"working_hours": []
}
],
"page": 1,
"limit": 1,
"pages": 20,
"total": 20
}
Response examples (401)
{
"error": "Error Reason"
}
Response examples (401)
{
"error": "Error Reason"
}