To enable the Compliance API, see the setup guide.
Set up the Compliance API로컬 세션 목록 조회
GET/v1/compliance/apps/sessions/local
키가 읽을 수 있는 조직 전체의 로컬 세션을 나열합니다.
결과는 created_at 기준 내림차순으로 정렬됩니다. 페이지네이션은 next_page를 통한 정방향 전용이며, 역방향 커서는 없습니다.
Query parameters
Headers
Returns
로컬 세션 목록 조회
cURL
curl https://api.anthropic.com/v1/compliance/apps/sessions/local \
-H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"Response 200
{
"data": [
{
"type": "compliance_local_session",
"id": "clls_eyJ2IjoxLCJvIjoiOWEx…",
"organization_uuid": "9a1e0000-0000-0000-0000-000000000000",
"workspace_id": "wrkspc_01SvYKoWVRVHoEbwESNvzYdR",
"user": {
"id": "user_01GpKpLmNoPqRsTuVwXyZaBc",
"email_address": "engineer@example.com"
},
"product_surface": "cowork",
"created_at": "2026-07-09T14:02:11Z",
"updated_at": "2026-07-09T15:47:33Z"
}
]
}Returns Examples
Response 200
{
"data": [
{
"type": "compliance_local_session",
"id": "clls_eyJ2IjoxLCJvIjoiOWEx…",
"organization_uuid": "9a1e0000-0000-0000-0000-000000000000",
"workspace_id": "wrkspc_01SvYKoWVRVHoEbwESNvzYdR",
"user": {
"id": "user_01GpKpLmNoPqRsTuVwXyZaBc",
"email_address": "engineer@example.com"
},
"product_surface": "cowork",
"created_at": "2026-07-09T14:02:11Z",
"updated_at": "2026-07-09T15:47:33Z"
}
]
}