List all App Services Apps in an Atlas project/group
List all App Services Apps within an Atlas project/group.
Path parameters
-
An Atlas Project/Group ID.
Query parameters
-
One or more specific App Services product types. If specified, this endpoint only returns Apps of the specified product type(s).
Most apps use the
standardproduct type, which this endpoint returns by default. Theatlas,data-api, anddevice-syncproduct types represent special apps for Atlas Triggers, Atlas Data API, and Atlas Device Sync that you can access through the Atlas UI.You can specify multiple product types as a comma-separated list:
/groups/{groupId}/apps?product=atlas,data-apiValues are
standard,atlas,data-api, ordevice-sync.
GET
/groups/{groupId}/apps
curl \
--request GET 'https://services.cloud.mongodb.com/api/admin/v3.0/groups/{groupId}/apps' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
{
"name": "MyApp",
"provider_region": "aws-us-east-1",
"location": "US-VA",
"deployment_model": "GLOBAL",
"environment": "production",
"_id": "633209ffd3bd3478005d1bac",
"client_app_id": "myapp-abcde",
"domain_id": "63320a2b5f9de9a6e0a213e8",
"group_id": "5b2ec991973129243223a114",
"last_used": 1664224746,
"last_modified": 1656440824,
"product": "standard"
}
]