Skip to main content
GET
/
providers
/
{provider_id}
/
deployment
Get Deployment Status
curl --request GET \
  --url https://api.example.com/providers/{provider_id}/deployment
{
  "status": "pending",
  "version": "<string>",
  "updated_at": "2023-11-07T05:31:56Z",
  "healthy": false
}

Path Parameters

provider_id
string
required

Response

Successful Response

User-facing provider deployment status.

Minimal representation without internal K8s details like replica counts, deployment names, or container images.

Attributes: status: Current deployment status. version: CalVer version string of deployed build. updated_at: Last update timestamp. healthy: Whether the provider is healthy (available with ready replicas).

status
enum<string>
required

Status of a provider deployment.

Available options:
pending,
progressing,
available,
failed
version
string | null
updated_at
string<date-time> | null
healthy
boolean
default:false