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.
Parameters
Returns
Daftar Workspace Aturan Federasi
<?php
require_once dirname(__DIR__) . '/vendor/autoload.php';
$client = new Client(apiKey: 'my-anthropic-api-key');
$page = $client->beta->organization->federation->rules->workspaces->list(
'federation_rule_id',
limit: 1,
page: 'page',
betas: [AnthropicBeta::MESSAGE_BATCHES_2024_09_24],
);
var_dump($page);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"
}