Status history

Pipeline status history

get

Status history from a pipeline. Every time a pipeline status is changed, a new history entry with the change is created.

Authorizations
Path parameters
pipelinestring · uuidRequired
Query parameters
lastintegerOptional

Last history entries.

statusstring · enumOptional

Filter status entries with matching status.

Possible values:
config_formatstring · enumOptional

Desired output config format.

Possible values:
Responses
200
OK
application/json
get
GET /v1/aggregator_pipelines/{pipeline}/status_history HTTP/1.1
Host: cloud-api.calyptia.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200

OK

[
  {
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "config": {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "rawConfig": "text",
      "createdAt": "2025-06-27T21:25:07.890Z"
    },
    "status": "NEW",
    "events": [
      {
        "source": "k8s:deployment",
        "reason": "text",
        "message": "text",
        "loggedAt": "2025-06-27T21:25:07.890Z"
      }
    ],
    "createdAt": "2025-06-27T21:25:07.890Z"
  }
]