Claude Platform Docs

Get Deployment Run

$ ant beta:deployment-runs retrieve
GET/v1/deployment_runs/{deployment_run_id}

Get Deployment Run

Parameters
--deployment-run-id: string

Path parameter deployment_run_id

--beta: optional array of AnthropicBeta

Optional header to specify the beta version(s) you want to use.

--workspace-id: optional string

Optional header to select the Workspace for this request. The value is a Workspace ID (for example, wrkspc_011CZkZaBF1tNoB5wlCeusgy).

Only needed for credentials that can act on more than one Workspace. A credential that belongs to a specific Workspace may omit it; if sent, it must match that Workspace.

Returns
beta_managed_agents_deployment_run: object{ type: "deployment_run", id, agent, 5 more }

A persistent, append-only record of a single deployment execution. Records session creation success or failure — no session lifecycle tracking.

type: "deployment_run"
id: string

Unique identifier for this run (drun_...).

agent: object{ type: "agent", id, version }

A resolved agent reference with a concrete version.

type: "agent"
id: string
version: number
formatint32
created_at: string

A timestamp in RFC 3339 format

formatdate-time
deployment_id: string

ID of the deployment that produced this run.

Why the run failed to create a session. The type identifies the failure; message is human-readable detail.

One of the following:
beta_managed_agents_environment_archived_run_error: object{ type: "environment_archived_error", message }

The deployment's environment was archived.

type: "environment_archived_error"
message: string

Human-readable error description.

beta_managed_agents_agent_archived_run_error: object{ type: "agent_archived_error", message }

The deployment's agent was archived.

type: "agent_archived_error"
message: string

Human-readable error description.

beta_managed_agents_environment_not_found_run_error: object{ type: "environment_not_found_error", message }

The deployment's environment no longer exists.

type: "environment_not_found_error"
message: string

Human-readable error description.

beta_managed_agents_vault_not_found_run_error: object{ type: "vault_not_found_error", message }

A vault referenced by the deployment no longer exists.

type: "vault_not_found_error"
message: string

Human-readable error description.

beta_managed_agents_vault_archived_run_error: object{ type: "vault_archived_error", message }

A vault referenced by the deployment is archived.

type: "vault_archived_error"
message: string

Human-readable error description.

beta_managed_agents_file_not_found_run_error: object{ type: "file_not_found_error", message }

A file resource referenced by the deployment no longer exists.

type: "file_not_found_error"
message: string

Human-readable error description.

beta_managed_agents_memory_store_archived_run_error: object{ type: "memory_store_archived_error", message }

A memory store referenced by the deployment is archived.

type: "memory_store_archived_error"
message: string

Human-readable error description.

beta_managed_agents_skill_not_found_run_error: object{ type: "skill_not_found_error", message }

A skill referenced by the deployment's agent no longer exists.

type: "skill_not_found_error"
message: string

Human-readable error description.

beta_managed_agents_session_resource_not_found_run_error: object{ type: "session_resource_not_found_error", message }

A referenced resource no longer exists and its kind was not reported.

type: "session_resource_not_found_error"
message: string

Human-readable error description.

beta_managed_agents_workspace_archived_run_error: object{ type: "workspace_archived_error", message }

The deployment's workspace was archived.

type: "workspace_archived_error"
message: string

Human-readable error description.

beta_managed_agents_organization_disabled_run_error: object{ type: "organization_disabled_error", message }

The deployment's organization is disabled.

type: "organization_disabled_error"
message: string

Human-readable error description.

beta_managed_agents_session_rate_limited_run_error: object{ type: "session_rate_limited_error", message }

Session creation was rejected due to rate limiting. The schedule keeps firing; subsequent runs may succeed.

type: "session_rate_limited_error"
message: string

Human-readable error description.

beta_managed_agents_session_creation_rejected_run_error: object{ type: "session_creation_rejected_error", message }

The session create request was rejected with a non-retryable validation error.

type: "session_creation_rejected_error"
message: string

Human-readable error description.

beta_managed_agents_unknown_run_error: object{ type: "unknown_error", message }

An unknown or unexpected error caused the run to fail. A fallback variant; clients that do not recognize a new error type can match on message alone.

type: "unknown_error"
message: string

Human-readable error description.

beta_managed_agents_self_hosted_resources_unsupported_run_error: object{ type: "self_hosted_resources_unsupported_error", message }

The deployment configures resources, but its environment is self-hosted and cannot mount them.

type: "self_hosted_resources_unsupported_error"
message: string

Human-readable error description.

beta_managed_agents_mcp_egress_blocked_run_error: object{ type: "mcp_egress_blocked_error", message }

An MCP server host used by the deployment's agent is blocked by the environment's network policy.

type: "mcp_egress_blocked_error"
message: string

Human-readable error description.

session_id: string

Populated on success. Null on creation failure. Exactly one of session_id or error is non-null.

Describes what triggered a deployment run, with trigger-specific metadata.

One of the following:
beta_managed_agents_schedule_trigger_context: object{ type: "schedule", scheduled_at }

The run was fired by the deployment's cron schedule.

type: "schedule"
scheduled_at: string

A timestamp in RFC 3339 format

formatdate-time
beta_managed_agents_manual_trigger_context: object{ type: "manual" }

The run was started manually by creating a session directly against the deployment.

type: "manual"
Get Deployment Run
ant beta:deployment-runs retrieve \
  --api-key my-anthropic-api-key \
  --deployment-run-id deployment_run_id
Returns Examples
Response 200
{
  "id": "id",
  "agent": {
    "id": "agent_011CZkYqphY8vELVzwCUpqiQ",
    "type": "agent",
    "version": 1
  },
  "created_at": "2019-12-27T18:11:19.117Z",
  "deployment_id": "deployment_id",
  "error": {
    "message": "message",
    "type": "environment_archived_error"
  },
  "session_id": "session_id",
  "trigger_context": {
    "scheduled_at": "2019-12-27T18:11:19.117Z",
    "type": "schedule"
  },
  "type": "deployment_run"
}