Daftar Workspace Aturan Federasi
GET/v1/organizations/federation_rules/{federation_rule_id}/workspaces
Memerlukan token akses OAuth dengan cakupan org:admin, dari ant auth login --scope org:admin atau aturan workload identity federation; kunci Admin API tidak diterima. Lihat Kelola WIF dengan Admin API.
Menampilkan daftar workspace tempat aturan federasi ini diaktifkan.
Mengembalikan semua pengaktifan workspace dalam satu respons; parameter limit dan
page diterima tetapi tidak berpengaruh, dan next_page
selalu null. Hanya mengembalikan pengaktifan eksplisit per workspace; untuk
aturan dengan applies_to_all_workspaces atau satu
workspace_id lama, periksa field tersebut pada aturan itu sendiri.
Path parameters
Query parameters
Headers
Returns
Daftar Workspace Aturan Federasi
cURL
curl https://api.anthropic.com/v1/organizations/federation_rules/$FEDERATION_RULE_ID/workspaces \
-H 'anthropic-version: 2023-06-01' \
-H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"Response 200
{
"data": [
{
"created_at": "2024-10-30T23:58:27.427722Z",
"created_by_actor_id": "created_by_actor_id",
"federation_rule_id": "federation_rule_id",
"type": "federation_rule_workspace",
"workspace_id": "workspace_id",
"workspace_name": "workspace_name"
}
],
"next_page": "next_page"
}Returns Examples
Response 200
{
"data": [
{
"created_at": "2024-10-30T23:58:27.427722Z",
"created_by_actor_id": "created_by_actor_id",
"federation_rule_id": "federation_rule_id",
"type": "federation_rule_workspace",
"workspace_id": "workspace_id",
"workspace_name": "workspace_name"
}
],
"next_page": "next_page"
}