Ingest checks

Ingest Check

get

Check by ID.

Authorizations
Path parameters
checkIDstring · uuidRequired
Responses
200
OK
application/json
get
GET /v1/ingest_checks/{checkID} HTTP/1.1
Host: cloud-api.calyptia.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200

OK

{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "config": "text",
  "status": "new",
  "collectLogs": false,
  "logs": "Ynl0ZXM=",
  "retries": 0,
  "createdAt": "2025-06-28T03:11:19.339Z",
  "updatedAt": "2025-06-28T03:11:19.339Z"
}

Delete a Ingest check.

delete

Delete Ingest check by its ID.

Authorizations
Path parameters
checkIDstring · uuidRequired
Responses
204
No Content
delete
DELETE /v1/ingest_checks/{checkID} HTTP/1.1
Host: cloud-api.calyptia.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
204

No Content

No content

Update Ingest check

patch

Update a Ingest check by its ID.

Authorizations
Path parameters
checkIDstring · uuidRequired
Body

Update a core instance Ingest check request body.

logsstring | nullableOptional

logs coming from the fluent-bit pod, maximum size is 10MiB.

Default: null
statusstring · enum | nullableOptional

The status of a check.

Default: nullPossible values:
Responses
204
No Content
patch
PATCH /v1/ingest_checks/{checkID} HTTP/1.1
Host: cloud-api.calyptia.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 30

{
  "logs": "text",
  "status": "new"
}
204

No Content

No content