List Deployments
List of all deployments associated with an agent.
Path parameters
agent_id
The ID of the agent.
Headers
Authorization
Bearer authentication of the form Bearer <token>, where token is your auth token.
Cartesia-Version
Response
This endpoint returns a list of objects.
id
The unique identifier for the deployment.
agent_id
The ID of the agent associated with this deployment.
status
The current status of the deployment. It can be queued
, inactive
, deploy_error
, skipped
, build_error
, building
, or deployed
.
is_pinned
Marks that this deployment is the active deployment for its associated agent_id
. Only one deployment per agent can be pinned at a time. Deployments can be pinned even if they are not live or failed.
is_live
True if this deployment is the live production deployment for its associated agent_id
. Only one deployment per agent can be live at a time.
env_var_collection_id
The ID of the environment variable collection associated with this deployment.
source_code_file_id
The ID of the source code file associated with this deployment.
git_commit_hash
The commit hash of the Git repository for this deployment.
created_at
The UTC timestamp when the deployment was created.
updated_at
The UTC timestamp when the deployment was last updated.
build_completed_at
The UTC timestamp when the build was completed.
build_logs
Logs generated during the build process of the deployment.
build_started_at
The UTC timestamp when the build process started.
deployment_started_at
The UTC timestamp when the deployment process started.
deployment_completed_at
The UTC timestamp when the deployment process was completed.
build_error
Any error that occurred during the build process.
deployment_error
Any error that occurred during the deployment process.