To enable the Compliance API, see the setup guide.
Set up the Compliance API列出遠端工作階段
GET/v1/compliance/apps/sessions/remote
列出金鑰可讀取之組織範圍內的遠端工作階段(在 Anthropic 管理的雲端環境中執行的 Cowork 工作階段)。
每個項目僅包含工作階段中繼資料;請從訊息端點擷取工作階段的逐字稿。預設情況下,清單涵蓋所有此類組織;傳遞最多 500 個 organization_ids[] 值以縮小範圍。傳遞 1 到 10 個 user_ids[] 值以將清單限定於特定使用者:該篩選器會比對工作階段的擁有使用者,因此只要設定此篩選器,代理程式擁有的工作階段就會被排除。使用 created_at 範圍參數(created_at.gte、created_at.gt、created_at.lt、created_at.lte;RFC 3339)限定結果的時間範圍。沒有 updated_at 篩選器。
結果依 created_at 由最新開始排序,每頁最多 limit 個工作階段(預設 100,最大 500)。分頁僅支援向前翻頁:將回應的 next_page 值作為 page 傳回以擷取下一頁,並在 next_page 為 null 時停止。
Query parameters
Headers
Returns
列出遠端工作階段
cURL
curl https://api.anthropic.com/v1/compliance/apps/sessions/remote \
-H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"Response 200
{
"data": [
{
"id": "cse_01A0000000000000000000000",
"organization_uuid": "00000000-0000-0000-0000-000000000000",
"user": {
"id": "user_01A0000000000000000000000",
"email_address": "user@example.com"
},
"status": "active",
"created_at": "2026-01-02T03:04:05.000000Z",
"updated_at": "2026-01-02T03:04:05.000000Z",
"product_surface": "cowork_remote",
"claude_project_id": "claude_proj_01Nm7PqRsTuVwXyZaBcDeFgH"
}
],
"next_page": "page_AAE..."
}Returns Examples
Response 200
{
"data": [
{
"id": "cse_01A0000000000000000000000",
"organization_uuid": "00000000-0000-0000-0000-000000000000",
"user": {
"id": "user_01A0000000000000000000000",
"email_address": "user@example.com"
},
"status": "active",
"created_at": "2026-01-02T03:04:05.000000Z",
"updated_at": "2026-01-02T03:04:05.000000Z",
"product_surface": "cowork_remote",
"claude_project_id": "claude_proj_01Nm7PqRsTuVwXyZaBcDeFgH"
}
],
"next_page": "page_AAE..."
}