Skip to main content
GET
/
v1
/
installs
/
{id}
/
status
Get install deploy status
curl --request GET \
  --url https://api.cnap.tech/v1/installs/{id}/status \
  --header 'Authorization: Bearer <token>'
{
  "install_id": "j572abc123def456",
  "health": "Healthy",
  "sync": "Synced",
  "revision": "abc123def",
  "resources": [
    {
      "kind": "<string>",
      "name": "<string>",
      "group": "<string>",
      "namespace": "<string>",
      "version": "<string>",
      "status": "<string>",
      "health": {
        "status": "<string>"
      }
    }
  ],
  "operation_phase": "Succeeded",
  "updated_at": 123
}

Authorizations

Authorization
string
header
required

Personal Access Token (cnap_pat_...) or OAuth2 JWT. Create tokens at https://cnap.tech/account/tokens

Path Parameters

id
string
required

Install ID

Response

Install deploy status

install_id
string
required
Example:

"j572abc123def456"

health
string | null
required
Example:

"Healthy"

sync
string | null
required
Example:

"Synced"

revision
string | null
required
Example:

"abc123def"

resources
object[] | null
required
operation_phase
string | null
required
Example:

"Succeeded"

updated_at
number | null
required

Unix timestamp (seconds) when status was last updated via webhook