保留中のユーザーを一覧表示する
非推奨
保留中のユーザー アカウント登録を一覧表示します。通話中に最大 50 人の保留中のユーザーを返します。
path パラメータ
-
Atlas Project/Group ID。
-
アプリケーションの ObjectID。App Services API プロジェクトとアプリケーション ID のセクションでは、この値を見つける方法が示されています。
GET /groups/{groupId}/apps/{appId}/user_registrations/pending_users
curl \
--request GET 'https://services.cloud.mongodb.com/api/admin/v3.0/groups/{groupId}/apps/{appId}/user_registrations/pending_users' \
--header "Authorization: Bearer $ACCESS_TOKEN"
応答の例(200)
[
{
"_id": "63754f968a605a78ea6939e7",
"user_id": "",
"domain_id": "60c8f69864c0a72d14bb534c",
"login_ids": [
{
"id": "someone@example.com",
"id_type": "email"
}
]
},
{
"_id": "63754fd83c001970b1e5ea66",
"user_id": "",
"domain_id": "60c8f69864c0a73e3e11c22b",
"login_ids": [
{
"id": "joe@example.com",
"id_type": "email"
}
]
}
]