Atlas 프로젝트/그룹의 모든 App Services 앱 나열
Atlas 프로젝트/그룹 내의 모든 App Services 앱을 나열합니다.
경로 매개변수
-
Atlas 프로젝트/그룹 ID입니다.
쿼리 매개변수
-
하나 이상의 특정 App Services 제품 유형입니다. 지정된 경우 이 엔드포인트는 지정된 제품 유형의 앱만 반환합니다.
대부분의 앱은 이 엔드포인트가 기본적으로 반환하는
standard
제품 유형을 사용합니다.atlas
,data-api
및device-sync
제품 유형은 Atlas UI를 통해 액세스할 수 있는 Atlas 트리거, Atlas 데이터 API 및 Atlas Device Sync를 위한 특수 앱을 나타냅니다.여러 제품 유형을 쉼표로 구분된 목록으로 지정할 수 있습니다.
/groups/{groupId}/apps?product=atlas,data-api
값은
standard
,atlas
,data-api
또는device-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"
응답 예시(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"
}
]