プロジェクトコラボレーターの一覧取得
GET/v1/compliance/apps/projects/{project_id}/collaborators
プロジェクトに対するユーザー、グループ、および組織全体への付与を一覧表示します。
各エントリは、プロジェクト上のアクティブなロール割り当て 1 件を表します。プリンシパルは type による判別共用体として返されます。個々のユーザー、RBAC グループ、組織全体、または組織レベルのロールを持つすべてのユーザーのいずれかです。
Path parameters
Query parameters
Headers
Returns
プロジェクトコラボレーターの一覧取得
cURL
curl https://api.anthropic.com/v1/compliance/apps/projects/$PROJECT_ID/collaborators \
-H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"Response 200
{
"data": [
{
"granted_at": "2019-12-27T18:11:19.117Z",
"role": "admin",
"type": "user",
"user_id": "user_id"
}
],
"has_more": true,
"next_page": "next_page"
}Returns Examples
Response 200
{
"data": [
{
"granted_at": "2019-12-27T18:11:19.117Z",
"role": "admin",
"type": "user",
"user_id": "user_id"
}
],
"has_more": true,
"next_page": "next_page"
}