Sessions
api/compliance/apps/sessions
Nearest release: v2.1.245, published an hour after this site recorded the change. Shown because the two are within 24 hours of each other. Nothing here says the release caused the edit.
api/compliance/apps/sessions Changed · +193 / -557 lines
## Sessions › Local ### List local sessions #### Query parameters #### Headers #### Returns #### Example ##### Response (200) ### Retrieve a local session #### Path parameters #### Headers #### Returns #### Example ##### Response (200) ## Sessions › Local › Messages ### Retrieve local session messages #### Path parameters #### Query parameters #### Headers #### Returns #### Example ##### Response (200) ## Sessions › Remote ### List remote sessions #### Query parameters #### Headers #### Returns #### Example ##### Response (200) ## Sessions › Remote › Messages ### Retrieve remote session messages #### Path parameters #### Query parameters #### Headers #### Returns #### Example ##### Response (200) # Local ## List local sessions ### Query Parameters ### Header Parameters ### Returns ### Example #### Response ## Retrieve a local session ### Path Parameters ### Header Parameters ### Returns ### Example #### Response ## Domain Types ### Local List Response ### Local Retrieve Response # Messages ## Retrieve local session messages ### Path Parameters ### Query Parameters ### Header Parameters ### Returns ### Example #### Response ## Domain Types ### Message List Response # Remote ## List remote sessions ### Query Parameters ### Header Parameters ### Returns ### Example #### Response ## Domain Types ### Remote List Response # Messages ## Retrieve remote session messages ### Path Parameters ### Query Parameters ### Header Parameters ### Returns ### Example #### Response ## Domain Types ### Message List Response
The two sides of this change are too far apart to line up, so this is the differ's own diff of it.
---- -title: Sessions -url: https://platform.claude.com/docs/en/api/compliance/apps/sessions ---- - # Sessions -# Local - -## List local sessions - -**get** `/v1/compliance/apps/sessions/local` +## Sessions › Local + +### List local sessions + +**GET** `/v1/compliance/apps/sessions/local` List local sessions across the organizations the key may read. Results are ordered by `created_at` descending. Pagination is forward-only via `next_page`; there is no reverse cursor. -### Query Parameters - -- `created_at: optional object { gte, lt }` +#### Query parameters + +- `created_at: optional object` - `gte: optional string` Only return sessions whose first inference call is at or after this time (RFC 3339; a UTC offset is required). + format: date-time + - `lt: optional string` Only return sessions whose first inference call is strictly before this time (RFC 3339; a UTC offset is required). + format: date-time + - `limit: optional number` Maximum results (default: 100, max: 500) + default: 100, maximum: 500, minimum: 1 + - `page: optional string` Opaque pagination token from a previous response's `next_page` field. Pass this to retrieve the next page of results. Clients should treat this value as an opaque string and not attempt to parse or interpret its contents, as the format may change without notice. -- `updated_at: optional object { gte }` +- `updated_at: optional object` - `gte: optional string` Only return sessions whose last inference call is at or after this time (RFC 3339; a UTC offset is required). Combines with `created_at.gte` / `created_at.lt`; the ordering and pagination are unchanged. Use it to poll for sessions that have been active since a previous pass — a session that becomes active later can only enter the result, never leave it. -### Header Parameters + format: date-time + +#### Headers - `"x-api-key": optional string` -### Returns - -- `data: array of object { id, created_at, organization_uuid, 5 more }` +#### Returns + +- `data: array of object` Page of local sessions, ordered by `created_at` descending; ties are broken by a fixed server-side order. `updated_at` never participates in the ordering; the `updated_at.gte` query parameter filters on it without changing the order or the pagination cursor.
Timestamp of the session's first retained inference call (RFC 3339, UTC). When a session's activity spans the child organization's retention boundary, calls older than the boundary are no longer reflected, so this value is the timestamp of the earliest retained call: always strictly after the boundary, never the boundary itself. + format: date-time + - `organization_uuid: string` UUID of the child organization the session belongs to
- `type: "compliance_local_session"` - - `"compliance_local_session"` + default: compliance_local_session - `updated_at: string` Timestamp of the session's last retained inference call (RFC 3339, UTC). Always at or after `created_at`. When a session's activity spans the child organization's retention boundary, calls older than the boundary are no longer reflected — but because retention removes only the oldest calls, this value (unlike `created_at`) is unaffected until the entire session has aged out. On the list endpoint this value is a lower bound: for a session still active at a page or `created_at.lt` window boundary it can momentarily lag the session's true last activity. Retrieving the session, or its messages, always reflects the exact latest retained call. - - `user: object { id, email_address }` + format: date-time + + - `user: object` The authenticated user at the time of the session. Always set; `user.id` is always populated. `user.email_address` is null when the user's account has been deleted or the user is no longer a member of an organization the key may read.
Opaque pagination cursor (prefixed `page_`) for the next page. Null when there is no further page. Treat as an opaque string; the format may change without notice. -### Example - -```http +#### Example + +```bash curl https://api.anthropic.com/v1/compliance/apps/sessions/local \ -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY" ``` -#### Response +##### Response (200) ```json {
} ``` -## Retrieve a local session - -**get** `/v1/compliance/apps/sessions/local/{local_session_id}` +### Retrieve a local session + +**GET** `/v1/compliance/apps/sessions/local/{local_session_id}` Retrieve one local session.
enforced when the response is served: a session whose every inference call has aged out returns 404. -### Path Parameters +#### Path parameters - `local_session_id: string` -### Header Parameters +#### Headers - `"x-api-key": optional string` -### Returns +#### Returns - `id: string`
Timestamp of the session's first retained inference call (RFC 3339, UTC). When a session's activity spans the child organization's retention boundary, calls older than the boundary are no longer reflected, so this value is the timestamp of the earliest retained call: always strictly after the boundary, never the boundary itself. + format: date-time + - `organization_uuid: string` UUID of the child organization the session belongs to
- `type: "compliance_local_session"` - - `"compliance_local_session"` + default: compliance_local_session - `updated_at: string` Timestamp of the session's last retained inference call (RFC 3339, UTC). Always at or after `created_at`. When a session's activity spans the child organization's retention boundary, calls older than the boundary are no longer reflected — but because retention removes only the oldest calls, this value (unlike `created_at`) is unaffected until the entire session has aged out. On the list endpoint this value is a lower bound: for a session still active at a page or `created_at.lt` window boundary it can momentarily lag the session's true last activity. Retrieving the session, or its messages, always reflects the exact latest retained call. -- `user: object { id, email_address }` + format: date-time + +- `user: object` The authenticated user at the time of the session. Always set; `user.id` is always populated. `user.email_address` is null when the user's account has been deleted or the user is no longer a member of an organization the key may read.
Workspace identifier (tagged ID, prefixed `wrkspc_`). Null for sessions not attributed to a workspace. -### Example - -```http +#### Example + +```bash curl https://api.anthropic.com/v1/compliance/apps/sessions/local/$LOCAL_SESSION_ID \ -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY" ``` -#### Response +##### Response (200) ```json {
} ``` -## Domain Types - -### Local List Response - -- `LocalListResponse object { id, created_at, organization_uuid, 5 more }` - - A Cowork or Claude Code session that a user ran on their own computer - while signed in with their organization account. - - - `id: string` - - Local session identifier, prefixed `clls_`. Unique within the parent organization. Treat as an opaque string; the format may change without notice. - - - `created_at: string` - - Timestamp of the session's first retained inference call (RFC 3339, UTC). When a session's activity spans the child organization's retention boundary, calls older than the boundary are no longer reflected, so this value is the timestamp of the earliest retained call: always strictly after the boundary, never the boundary itself. - - - `organization_uuid: string` - - UUID of the child organization the session belongs to - - - `product_surface: string or null` - - The product the session ran in: `cowork` for Cowork sessions in Claude Desktop, or `claude_code` for Claude Code sessions. New values appear as coverage expands; treat unrecognized values as opaque. `null` when the surface was not recorded. - - - `type: "compliance_local_session"` - - - `"compliance_local_session"` - - - `updated_at: string` - - Timestamp of the session's last retained inference call (RFC 3339, UTC). Always at or after `created_at`. When a session's activity spans the child organization's retention boundary, calls older than the boundary are no longer reflected — but because retention removes only the oldest calls, this value (unlike `created_at`) is unaffected until the entire session has aged out. On the list endpoint this value is a lower bound: for a session still active at a page or `created_at.lt` window boundary it can momentarily lag the session's true last activity. Retrieving the session, or its messages, always reflects the exact latest retained call. - - - `user: object { id, email_address }` - - The authenticated user at the time of the session. Always set; `user.id` is always populated. `user.email_address` is null when the user's account has been deleted or the user is no longer a member of an organization the key may read. - - - `id: string` - - User identifier (tagged ID, prefixed `user_`). Always set, so attribution survives after the user's account is deleted or the user leaves the organizations the key may read. - - - `email_address: string or null` - - User's email address. Null when the user's account has been deleted or the user is no longer a member of an organization the key may read. The messages endpoint does not resolve email addresses; this field is always null there. - - - `workspace_id: string or null` - - Workspace identifier (tagged ID, prefixed `wrkspc_`). Null for sessions not attributed to a workspace. - -### Local Retrieve Response - -- `LocalRetrieveResponse object { id, created_at, organization_uuid, 5 more }` - - A Cowork or Claude Code session that a user ran on their own computer - while signed in with their organization account. - - - `id: string` - - Local session identifier, prefixed `clls_`. Unique within the parent organization. Treat as an opaque string; the format may change without notice. - - - `created_at: string` - - Timestamp of the session's first retained inference call (RFC 3339, UTC). When a session's activity spans the child organization's retention boundary, calls older than the boundary are no longer reflected, so this value is the timestamp of the earliest retained call: always strictly after the boundary, never the boundary itself. - - - `organization_uuid: string` - - UUID of the child organization the session belongs to - - - `product_surface: string or null` - - The product the session ran in: `cowork` for Cowork sessions in Claude Desktop, or `claude_code` for Claude Code sessions. New values appear as coverage expands; treat unrecognized values as opaque. `null` when the surface was not recorded. - - - `type: "compliance_local_session"` - - - `"compliance_local_session"` - - - `updated_at: string` - - Timestamp of the session's last retained inference call (RFC 3339, UTC). Always at or after `created_at`. When a session's activity spans the child organization's retention boundary, calls older than the boundary are no longer reflected — but because retention removes only the oldest calls, this value (unlike `created_at`) is unaffected until the entire session has aged out. On the list endpoint this value is a lower bound: for a session still active at a page or `created_at.lt` window boundary it can momentarily lag the session's true last activity. Retrieving the session, or its messages, always reflects the exact latest retained call. - - - `user: object { id, email_address }` - - The authenticated user at the time of the session. Always set; `user.id` is always populated. `user.email_address` is null when the user's account has been deleted or the user is no longer a member of an organization the key may read. - - - `id: string` - - User identifier (tagged ID, prefixed `user_`). Always set, so attribution survives after the user's account is deleted or the user leaves the organizations the key may read. - - - `email_address: string or null` - - User's email address. Null when the user's account has been deleted or the user is no longer a member of an organization the key may read. The messages endpoint does not resolve email addresses; this field is always null there. - - - `workspace_id: string or null` - - Workspace identifier (tagged ID, prefixed `wrkspc_`). Null for sessions not attributed to a workspace. - -# Messages - -## Retrieve local session messages - -**get** `/v1/compliance/apps/sessions/local/{local_session_id}/messages` +## Sessions › Local › Messages + +### Retrieve local session messages + +**GET** `/v1/compliance/apps/sessions/local/{local_session_id}/messages` Read one local session's transcript, oldest-first by default.
honored for 24 hours: a cursor older than that is rejected with an explicit 400; restart the walk to read under the current boundary. -### Path Parameters +#### Path parameters - `local_session_id: string` -### Query Parameters +#### Query parameters - `limit: optional number` Maximum results (default: 100, max: 1000) + default: 100, maximum: 1000, minimum: 1 + - `order: optional "asc" or "desc"` Sort direction. `asc` (oldest-first, default) or `desc`. + default: asc + - `"asc"` - `"desc"`
Truncate each text item inside a tool result to at most this many bytes (cut on a code-point boundary). Pass `-1` to request the server maximum (approximately 1 MiB); larger values are clamped to it. `0` is not a valid value. + default: 10000, maximum: 2147483647, minimum: -1 + - `tool_use_input_max_bytes: optional number` Truncate each tool-use input to at most this many bytes (cut on a code-point boundary so the result is valid UTF-8). Pass `-1` to request the server maximum (approximately 1 MiB); larger values are clamped to it. `0` is not a valid value. -### Header Parameters + default: 10000, maximum: 2147483647, minimum: -1 + +#### Headers - `"x-api-key": optional string` -### Returns - -- `data: array of object { id, content, created_at, 4 more }` +#### Returns + +- `data: array of object` Transcript turns for this page, in call order: oldest call first by default, newest call first with `order=desc`. The messages of one call carry the call's timestamp and follow each other in transcript order; a page boundary can fall between them.
Message identifier, prefixed `clsm_`. Stable for as long as the message's turn is retained: identifiers of retained turns do not change as older turns age out of the organization's retention period. The `retention_elapsed` placeholder's identifier is distinct from every retained turn's and changes only when further turns age out. - - `content: array of object { text, truncated, type } or object { id, input, name, 2 more } or object { content, is_error, name, 3 more }` + - `content: array of object or object or object` Content blocks within the message, discriminated on `type` (`text` / `tool_use` / `tool_result`: the same discriminator values as the claude.ai chat-messages endpoint; the tool variants omit `integration_name` and `mcp_server_url`, and `text` carries `truncated`). Extended-thinking content is never included. The request's `system` field is never included; a presence-only marker message is emitted when it was set. The request's `tools[]` definitions are never included as transcript messages. Project-level instructions (such as CLAUDE.md files) appear in the message stream as a user-role context block and are included. Empty when `provenance.type` is `content_unavailable`. - - `Text object { text, truncated, type }` + - `Text object` Text content block.
True when `text` was shortened by the server's fixed per-string bound (approximately 1 MiB), or when ancillary content the block carried (such as citations) was omitted, or when this block stands in for a non-text block whose content is not shown, or when it is an explanatory marker the server inserted (its text enclosed in square brackets, e.g. prefacing client-asserted history). There is no request parameter that raises the per-string bound. + default: false + - `type: "text"` - - `"text"` - - - `ToolUse object { id, input, name, 2 more }` + default: text + + - `ToolUse object` Tool invocation requested by the assistant.
True when `input` was shortened. Pass `tool_use_input_max_bytes=-1` to request the server maximum. + default: false + - `type: "tool_use"` - - `"tool_use"` - - - `ToolResult object { content, is_error, name, 3 more }` + default: tool_use + + - `ToolResult object` Result returned by a tool invocation. - - `content: array of object { text, type }` + - `content: array of object` Text content returned by the tool. Non-text item types are omitted and signalled via `truncated` with an in-band item-count marker.
- `type: "text"` - - `"text"` + default: text - `is_error: boolean`
True when one or more text items in `content` were shortened or non-text items were omitted. Pass `tool_result_max_bytes=-1` to request the server maximum. + default: false + - `type: "tool_result"` - - `"tool_result"` + default: tool_result - `created_at: string` When the message was recorded (RFC 3339, UTC) + format: date-time + - `model: string or null` The model that served this assistant turn, as reported in the `model` field of the underlying Messages API response. Null on user messages and on any assistant message whose `provenance` is set: client-asserted history and synthetic markers were not produced by a model during this session, and for unavailable content the serving model is not known. - - `provenance: object { reason, type } or object { type } or object { type } or null` + - `provenance: object or object or object or null` Where this turn's content came from, discriminated on `type`. Null (the common case) means verified content: on an assistant message, content Claude produced during this session; on a user message, content the user sent. `content_unavailable`: the turn's content cannot be returned and `content` is empty; `reason` says why. `client_asserted`: assistant content the client supplied as conversation history; `content` shows what the model received but its authorship is not verified; never on user-role messages. `synthetic_marker`: a transcript marker the endpoint generated rather than content either party sent during the session. Both `client_asserted` and `synthetic_marker` can result from normal request or client processing, not only client modification. Callers should tolerate unrecognized `type` values. - - `ContentUnavailable object { reason, type }` + - `ContentUnavailable object` The turn's content cannot be returned; `content` is empty.
- `type: "content_unavailable"` - - `"content_unavailable"` - - - `ClientAsserted object { type }` + default: content_unavailable + + - `ClientAsserted object` Assistant content the client supplied as conversation history rather than produced by Claude during this session. `content` shows
- `type: "client_asserted"` - - `"client_asserted"` - - - `SyntheticMarker object { type }` + default: client_asserted + + - `SyntheticMarker object` A transcript marker generated by the endpoint rather than sent by either party during the session. Marker messages indicate that the
- `type: "synthetic_marker"` - - `"synthetic_marker"` + default: synthetic_marker - `role: "assistant" or "user"`
- `type: "compliance_local_session_message"` - - `"compliance_local_session_message"` + default: compliance_local_session_message - `next_page: string or null` Opaque pagination cursor (prefixed `page_`) for the next page. Null when there is no further page. Treat as an opaque string; the format may change without notice. -- `session: object { id, created_at, organization_uuid, 5 more }` +- `session: object` The local session the messages belong to. `user.email_address` is always null on this endpoint; the messages endpoint does not resolve email addresses.
Timestamp of the session's first retained inference call (RFC 3339, UTC). When a session's activity spans the child organization's retention boundary, calls older than the boundary are no longer reflected, so this value is the timestamp of the earliest retained call: always strictly after the boundary, never the boundary itself. + format: date-time + - `organization_uuid: string` UUID of the child organization the session belongs to
- `type: "compliance_local_session"` - - `"compliance_local_session"` + default: compliance_local_session - `updated_at: string` Timestamp of the session's last retained inference call (RFC 3339, UTC). Always at or after `created_at`. When a session's activity spans the child organization's retention boundary, calls older than the boundary are no longer reflected — but because retention removes only the oldest calls, this value (unlike `created_at`) is unaffected until the entire session has aged out. On the list endpoint this value is a lower bound: for a session still active at a page or `created_at.lt` window boundary it can momentarily lag the session's true last activity. Retrieving the session, or its messages, always reflects the exact latest retained call. - - `user: object { id, email_address }` + format: date-time + + - `user: object` The authenticated user at the time of the session. Always set; `user.id` is always populated. `user.email_address` is null when the user's account has been deleted or the user is no longer a member of an organization the key may read.
Workspace identifier (tagged ID, prefixed `wrkspc_`). Null for sessions not attributed to a workspace. -### Example - -```http +#### Example + +```bash curl https://api.anthropic.com/v1/compliance/apps/sessions/local/$LOCAL_SESSION_ID/messages \ -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY" ``` -#### Response +##### Response (200) ```json {
} ``` -## Domain Types - -### Message List Response - -- `MessageListResponse object { id, content, created_at, 4 more }` - - A single user or assistant turn in a local session transcript. - - - `id: string` - - Message identifier, prefixed `clsm_`. Stable for as long as the message's turn is retained: identifiers of retained turns do not change as older turns age out of the organization's retention period. The `retention_elapsed` placeholder's identifier is distinct from every retained turn's and changes only when further turns age out. - - - `content: array of object { text, truncated, type } or object { id, input, name, 2 more } or object { content, is_error, name, 3 more }` - - Content blocks within the message, discriminated on `type` (`text` / `tool_use` / `tool_result`: the same discriminator values as the claude.ai chat-messages endpoint; the tool variants omit `integration_name` and `mcp_server_url`, and `text` carries `truncated`). Extended-thinking content is never included. The request's `system` field is never included; a presence-only marker message is emitted when it was set. The request's `tools[]` definitions are never included as transcript messages. Project-level instructions (such as CLAUDE.md files) appear in the message stream as a user-role context block and are included. Empty when `provenance.type` is `content_unavailable`. - - - `Text object { text, truncated, type }` - - Text content block. - - - `text: string` - - Text content from the user or the assistant - - - `truncated: boolean` - - True when `text` was shortened by the server's fixed per-string bound (approximately 1 MiB), or when ancillary content the block carried (such as citations) was omitted, or when this block stands in for a non-text block whose content is not shown, or when it is an explanatory marker the server inserted (its text enclosed in square brackets, e.g. prefacing client-asserted history). There is no request parameter that raises the per-string bound. - - - `type: "text"` - - - `"text"` - - - `ToolUse object { id, input, name, 2 more }` - - Tool invocation requested by the assistant. - - - `id: string or null` - - Tool-use ID, e.g. 'toolu_01AbC...' - - - `input: string` - - Arguments passed to the tool, as a JSON-encoded string. May be shortened (see the `truncated` field); a truncated value is cut mid-document and is not valid JSON. - - - `name: string` - - Name of the tool invoked - - - `truncated: boolean` - - True when `input` was shortened. Pass `tool_use_input_max_bytes=-1` to request the server maximum. - - - `type: "tool_use"` - - - `"tool_use"` - - - `ToolResult object { content, is_error, name, 3 more }` - - Result returned by a tool invocation. - - - `content: array of object { text, type }` - - Text content returned by the tool. Non-text item types are omitted and signalled via `truncated` with an in-band item-count marker. - - - `text: string` - - Text returned by the tool - - - `type: "text"` - - - `"text"` - - - `is_error: boolean` - - True when the tool reported an error - - - `name: string` - - Name of the tool that produced this result - - - `tool_use_id: string or null` - - ID of the tool_use block this result responds to - - - `truncated: boolean` - - True when one or more text items in `content` were shortened or non-text items were omitted. Pass `tool_result_max_bytes=-1` to request the server maximum. - - - `type: "tool_result"` - - - `"tool_result"` - - - `created_at: string` - - When the message was recorded (RFC 3339, UTC) - - - `model: string or null` - - The model that served this assistant turn, as reported in the `model` field of the underlying Messages API response. Null on user messages and on any assistant message whose `provenance` is set: client-asserted history and synthetic markers were not produced by a model during this session, and for unavailable content the serving model is not known. - - - `provenance: object { reason, type } or object { type } or object { type } or null` - - Where this turn's content came from, discriminated on `type`. Null (the common case) means verified content: on an assistant message, content Claude produced during this session; on a user message, content the user sent. `content_unavailable`: the turn's content cannot be returned and `content` is empty; `reason` says why. `client_asserted`: assistant content the client supplied as conversation history; `content` shows what the model received but its authorship is not verified; never on user-role messages. `synthetic_marker`: a transcript marker the endpoint generated rather than content either party sent during the session. Both `client_asserted` and `synthetic_marker` can result from normal request or client processing, not only client modification. Callers should tolerate unrecognized `type` values. - - - `ContentUnavailable object { reason, type }` - - The turn's content cannot be returned; `content` is empty. - - - `reason: string` - - Why this turn's content cannot be returned, e.g. `not_captured` (the content was not captured for compliance retrieval), `client_aborted` (the client closed the connection or cancelled the request before the response completed, so the response was not captured for this turn; any partial output already streamed to the client is not included; assistant-role turns only), `cmek_key_revoked` (the content is encrypted under the organization's customer-managed key and that key is unavailable), `retention_elapsed` (the content lies past the organization's retention boundary; on the placeholder standing in for every pre-boundary turn), or `oversize` (the message exceeds the server's per-message size bound even after per-block truncation). Callers should tolerate unrecognized values. `not_captured` is not proof that no record was stored: content withheld by the storage layer's fail-closed access policies carries the same reason and is deliberately indistinguishable from content that was never captured. - - - `type: "content_unavailable"` - - - `"content_unavailable"` - - - `ClientAsserted object { type }` - - Assistant content the client supplied as conversation history - rather than produced by Claude during this session. `content` shows - what the model received but its authorship is not verified; this can - result from normal request or client processing, not only client - modification. Never on user-role messages. - - - `type: "client_asserted"` - - - `"client_asserted"` - - - `SyntheticMarker object { type }` - - A transcript marker generated by the endpoint rather than sent by - either party during the session. Marker messages indicate that the - prompt history diverged from what was captured, that the request's - `system` field was present but is not shown, or that - prompt-carried history was suppressed because the session spans the - child organization's retention boundary and those turns cannot be - placed against it (the marker's text names the cause). Markers that - report a mismatch with captured history can result from normal request - or client processing, not only client modification. - - - `type: "synthetic_marker"` - - - `"synthetic_marker"` - - - `role: "assistant" or "user"` - - Message sender (`user` or `assistant`) - - - `"assistant"` - - - `"user"` - - - `type: "compliance_local_session_message"` - - - `"compliance_local_session_message"` - -# Remote - -## List remote sessions - -**get** `/v1/compliance/apps/sessions/remote` +## Sessions › Remote + +### List remote sessions + +**GET** `/v1/compliance/apps/sessions/remote` List remote sessions (Cowork sessions that run in Anthropic-managed cloud environments) across the organizations the key may read.
forward-only: pass the response's `next_page` value back as `page` to retrieve the next page, and stop when `next_page` is null. -### Query Parameters - -- `created_at: optional object { gt, gte, lt, lte }` +#### Query parameters + +- `created_at: optional object` - `gt: optional string` Filter remote sessions created after this time (RFC 3339 format) + format: date-time + - `gte: optional string` Filter remote sessions created at or after this time (RFC 3339 format) + format: date-time + - `lt: optional string` Filter remote sessions created before this time (RFC 3339 format) + format: date-time + - `lte: optional string` Filter remote sessions created at or before this time (RFC 3339 format) + format: date-time + - `limit: optional number` Maximum results (default: 100, max: 500) + default: 100, maximum: 500, minimum: 1 + - `organization_ids: optional array of string` Filter to specific child organization identifiers. Omit to enumerate every child organization the key may read. + maxItems: 500 + - `page: optional string` Opaque pagination token from a previous response's `next_page` field. Pass this to retrieve the next page of results. Clients should treat this value as an opaque string and not attempt to parse or interpret its contents, as the format may change without notice.
Filter to sessions owned by specific users (max 10 per request). Agent-owned sessions are excluded when this filter is set. -### Header Parameters + maxItems: 10 + +#### Headers - `"x-api-key": optional string` -### Returns - -- `data: array of object { id, agent_id, claude_project_id, 7 more }` +#### Returns + +- `data: array of object` - `id: string`
When the session was created (RFC 3339, UTC) + format: date-time + - `organization_uuid: string` UUID of the organization the session belongs to
The Claude product the session was created from. Currently `cowork_remote`, for Cowork sessions started on claude.ai web or mobile. More values will appear as other surfaces launch, so treat any unrecognized value as an unclassified surface rather than an error. Null for sessions created before this field was recorded, for surfaces that do not stamp it, and for unrecognized tag values. - - `started_by_user: object { id, email_address } or null` + - `started_by_user: object or null` A user associated with a remote session.
When the session was last modified (RFC 3339, UTC) - - `user: object { id, email_address } or null` + format: date-time + + - `user: object or null` A user associated with a remote session.
Opaque page token; pass as `page` to retrieve the next page. Null when no rows exist after this page. Treat this value as opaque; do not parse or store it long-term, as the format may change without notice. -### Example - -```http +#### Example + +```bash curl https://api.anthropic.com/v1/compliance/apps/sessions/remote \ -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY" ``` -#### Response +##### Response (200) ```json {
} ``` -## Domain Types - -### Remote List Response - -- `RemoteListResponse object { id, agent_id, claude_project_id, 7 more }` - - Metadata for one remote session, as returned in the list response - and in the messages response's `session` field. - - Carries session attributes only, not transcript content. Use the - messages endpoint to retrieve a session's transcript. - - - `id: string` - - Remote session identifier - - - `agent_id: string or null` - - Identifier of the automated agent that owns the session. Null for user-owned sessions. At most one of `user` and `agent_id` is set. - - - `claude_project_id: string or null` - - ID of the project the session is bound to. Null when the session has no project binding. - - - `created_at: string` - - When the session was created (RFC 3339, UTC) - - - `organization_uuid: string` - - UUID of the organization the session belongs to - - - `product_surface: string or null` - - The Claude product the session was created from. Currently `cowork_remote`, for Cowork sessions started on claude.ai web or mobile. More values will appear as other surfaces launch, so treat any unrecognized value as an unclassified surface rather than an error. Null for sessions created before this field was recorded, for surfaces that do not stamp it, and for unrecognized tag values. - - - `started_by_user: object { id, email_address } or null` - - A user associated with a remote session. - - - `id: string` - - User identifier - - - `email_address: string or null` - - User's email address. Null when the user is no longer a member of an organization the key may read — `id` remains set so attribution is preserved. The messages endpoint does not resolve email addresses; this field is always null there. - - - `status: string` - - Session lifecycle state. One of `active`, `paused`, `archived`, or `failed` — the lifecycle states the owning product surface exposes — plus `pending`, a brief transient state that resolves before any transcript content exists. The list endpoint includes `pending`; the messages endpoint returns 404 for it. Deleted sessions are not returned on either endpoint. Treat unrecognized values as an unknown state rather than an error. - - - `updated_at: string` - - When the session was last modified (RFC 3339, UTC) - - - `user: object { id, email_address } or null` - - A user associated with a remote session. - - - `id: string` - - User identifier - - - `email_address: string or null` - - User's email address. Null when the user is no longer a member of an organization the key may read — `id` remains set so attribution is preserved. The messages endpoint does not resolve email addresses; this field is always null there. - -# Messages - -## Retrieve remote session messages - -**get** `/v1/compliance/apps/sessions/remote/{claude_remote_session_id}/messages` +## Sessions › Remote › Messages + +### Retrieve remote session messages + +**GET** `/v1/compliance/apps/sessions/remote/{claude_remote_session_id}/messages` Retrieve one remote session's transcript: user prompts, assistant responses, and tool calls and results. Thinking blocks and images are
and for sessions outside the organizations the key may read. A malformed session identifier returns 400. -### Path Parameters +#### Path parameters - `claude_remote_session_id: string` The remote session identifier (`cse_...`) to retrieve -### Query Parameters +#### Query parameters - `limit: optional number` Maximum results (default: 100, max: 1000) + default: 100, maximum: 1000, minimum: 1 + - `order: optional "asc" or "desc"` Sort direction. `asc` (oldest-first) or `desc`. + default: asc + - `"asc"` - `"desc"`
Truncate each text item inside a tool result to at most this many bytes (cut on a code-point boundary). Pass `-1` to request the server maximum. `0` is not a valid value. + default: 10000, maximum: 2147483647, minimum: -1 + - `tool_use_input_max_bytes: optional number` Truncate each tool-use input to at most this many bytes (cut on a code-point boundary so the result is valid UTF-8). Pass `-1` to request the server maximum. `0` is not a valid value. -### Header Parameters + default: 10000, maximum: 2147483647, minimum: -1 + +#### Headers - `"x-api-key": optional string` -### Returns - -- `data: array of object { id, content, content_unavailable, 3 more }` +#### Returns + +- `data: array of object` Transcript turns for this page, ordered by transcript position. `created_at` is a commit timestamp and may tie or invert under concurrent writes; do not re-sort by it.
Unique identifier for the message, e.g. `csev_abc123` - - `content: array of object { text, truncated, type } or object { id, input, name, 2 more } or object { content, is_error, name, 3 more }` + - `content: array of object or object or object` Content blocks within the message - - `Text object { text, truncated, type }` + - `Text object` Text content block.
True when `text` exceeded the server-defined maximum (approximately 1 MiB) and was shortened. + default: false + - `type: "text"` - - `"text"` - - - `ToolUse object { id, input, name, 2 more }` + default: text + + - `ToolUse object` Tool invocation requested by the assistant.
True when `input` was shortened. Pass `tool_use_input_max_bytes=-1` to request full content, subject to the server-side maximum. + default: false + - `type: "tool_use"` - - `"tool_use"` - - - `ToolResult object { content, is_error, name, 3 more }` + default: tool_use + + - `ToolResult object` Result returned by a tool invocation. - - `content: array of object { text, type }` + - `content: array of object` Text content returned by the tool. Non-text item types are omitted.
- `type: "text"` - - `"text"` + default: text - `is_error: boolean`
True when one or more text items in `content` were shortened. Pass `tool_result_max_bytes=-1` to request full content, subject to the server-side maximum. + default: false + - `type: "tool_result"` - - `"tool_result"` + default: tool_result - `content_unavailable: boolean` True when the stored content could not be returned — it could not be decrypted, or it exceeded the server's per-event size bound. `content` is empty in that case; this distinguishes 'no content' from 'content withheld'. + default: false + - `created_at: string` When the message was recorded (RFC 3339, UTC) + format: date-time + - `role: "assistant" or "user"` Message sender (`user` or `assistant`)
Opaque page token; pass as `page` to retrieve the next page. Null when no rows exist after this page. Treat this value as opaque; do not parse or store it long-term, as the format may change without notice. -- `session: object { id, agent_id, claude_project_id, 7 more }` +- `session: object` Session metadata. `started_by_user`, `user.email_address`, and `claude_project_id` are always null on this endpoint; the messages endpoint resolves neither email addresses nor project bindings.
When the session was created (RFC 3339, UTC) + format: date-time + - `organization_uuid: string` UUID of the organization the session belongs to
The Claude product the session was created from. Currently `cowork_remote`, for Cowork sessions started on claude.ai web or mobile. More values will appear as other surfaces launch, so treat any unrecognized value as an unclassified surface rather than an error. Null for sessions created before this field was recorded, for surfaces that do not stamp it, and for unrecognized tag values. - - `started_by_user: object { id, email_address } or null` + - `started_by_user: object or null` A user associated with a remote session.
When the session was last modified (RFC 3339, UTC) - - `user: object { id, email_address } or null` + format: date-time + + - `user: object or null` A user associated with a remote session.
User's email address. Null when the user is no longer a member of an organization the key may read — `id` remains set so attribution is preserved. The messages endpoint does not resolve email addresses; this field is always null there. -### Example - -```http +#### Example + +```bash curl https://api.anthropic.com/v1/compliance/apps/sessions/remote/$CLAUDE_REMOTE_SESSION_ID/messages \ -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY" ``` -#### Response +##### Response (200) ```json {
} } ``` - -## Domain Types - -### Message List Response - -- `MessageListResponse object { id, content, content_unavailable, 3 more }` - - A single user or assistant turn in a remote session transcript. - - `content` is a discriminated union of `text`, `tool_use`, and - `tool_result` blocks. - - - `id: string` - - Unique identifier for the message, e.g. `csev_abc123` - - - `content: array of object { text, truncated, type } or object { id, input, name, 2 more } or object { content, is_error, name, 3 more }` - - Content blocks within the message - - - `Text object { text, truncated, type }` - - Text content block. - - - `text: string` - - Text content from the user or the assistant - - - `truncated: boolean` - - True when `text` exceeded the server-defined maximum (approximately 1 MiB) and was shortened. - - - `type: "text"` - - - `"text"` - - - `ToolUse object { id, input, name, 2 more }` - - Tool invocation requested by the assistant. - - - `id: string or null` - - Tool-use ID, e.g. 'toolu_01AbC...' - - - `input: string` - - Arguments passed to the tool, as a JSON-encoded string. May be shortened — see the `truncated` field - - - `name: string` - - Name of the tool invoked - - - `truncated: boolean` - - True when `input` was shortened. Pass `tool_use_input_max_bytes=-1` to request full content, subject to the server-side maximum. - - - `type: "tool_use"` - - - `"tool_use"` - - - `ToolResult object { content, is_error, name, 3 more }` - - Result returned by a tool invocation. - - - `content: array of object { text, type }` - - Text content returned by the tool. Non-text item types are omitted. - - - `text: string` - - Text returned by the tool - - - `type: "text"` - - - `"text"` - - - `is_error: boolean` - - True when the tool reported an error - - - `name: string` - - Name of the tool that produced this result - - - `tool_use_id: string or null` - - ID of the tool_use block this result responds to - - - `truncated: boolean` - - True when one or more text items in `content` were shortened. Pass `tool_result_max_bytes=-1` to request full content, subject to the server-side maximum. - - - `type: "tool_result"` - - - `"tool_result"` - - - `content_unavailable: boolean` - - True when the stored content could not be returned — it could not be decrypted, or it exceeded the server's per-event size bound. `content` is empty in that case; this distinguishes 'no content' from 'content withheld'. - - - `created_at: string` - - When the message was recorded (RFC 3339, UTC) - - - `role: "assistant" or "user"` - - Message sender (`user` or `assistant`) - - - `"assistant"` - - - `"user"` - - - `sent_by_user_id: string or null` - - Identifier of the human account that sent this turn on an agent-owned session. Null on user-owned sessions, where every user-role turn was sent by the session's `user`.