Returns a list of all communities
A comma separated list of tag:value search parameters, a colon separator performs an exact match, a percent separator performs a starts-with search and a greater/less than separator searches number/date ranges.
List of communities
Access denied to resource
Resource not found
Internal server error
curl -i -X GET \ 'https://api.whosonlocation.com/v1/community?q=string'
[- {
- "id": 1206,
- "created": "2021-11-26T14:35:28+13:00",
- "modified": "2021-12-31T14:35:28+13:00",
- "name": "Students",
- "active": true,
- "is_evac_enabled": true,
- "evac_primary_filter": "name"
}
]
Retrieves a single community, filtering with the provided ID.
Access denied to resource
Resource not found
Internal server error
curl -i -X GET \ https://api.whosonlocation.com/v1/community/:id
{- "id": 1206,
- "created": "2021-11-26T14:35:28+13:00",
- "modified": "2021-12-31T14:35:28+13:00",
- "name": "Students",
- "active": true,
- "is_evac_enabled": true,
- "evac_primary_filter": "name"
}