Get Location where app is installed
GET/oauth/installedLocations
Fetch the locations where the app is installed.
Request
API Version
2021-07-28Parameter to skip the number installed locations
0Parameter to limit the number installed locations (max 100)
10Parameter to search for the installed location by name
Filters out location which are installed for specified app under the specified company
When true, restricts the list to locations the current user has access to (for restricted agency admins and account admins). When false or omitted, no user-based filter is applied for installed list; for backward compatibility, install list (isInstalled=false) is still filtered by user when this param is omitted.
Parameter to search by the companyId
Parameter to search by the appId
VersionId of the app
Sort order for installedAt date. Defaults to desc (latest first)
ascdescFilter locations installed on or after this date (ISO 8601)
Filter locations installed on or before this date (ISO 8601)
Filters out locations which are installed for specified app in trial mode
Filters out location which are installed for specified app under the specified planId
locationId
Successful response
- application/json
- Schema
- Example (auto)
Schema
List of locations with their installation status for the requested app
Total location count under the company
Boolean to control if user wants app to be automatically installed to future locations
{
"locations": [
{
"_id": "0IHuJvc2ofPAAA8GzTRi",
"name": "John Deo",
"address": "47 W 13th St, New York, NY 10011, USA",
"isInstalled": true
}
],
"count": 1231,
"installToFutureLocations": true
}