Skip to content

Read change-ingestion health

GET
/api/v1/changes/ingestion
curl --request GET \
--url https://api.aletheia-ops.com/api/v1/changes/ingestion \
--header 'Authorization: Bearer <token>'

OK

Media typeapplication/json

/changes/ingestion response

object
cursors
Array<object>

One row of the ingestion-health surface

object
aws_account_id
string
region
string
source_system
string
last_event_time
string format: date-time
last_polled_at
string format: date-time
status
string
error
string
Examplegenerated
{
"cursors": [
{
"aws_account_id": "example",
"region": "example",
"source_system": "example",
"last_event_time": "2026-04-15T12:00:00Z",
"last_polled_at": "2026-04-15T12:00:00Z",
"status": "example",
"error": "example"
}
]
}

No valid credential was presented, or it has expired.

Media typeapplication/json
object
code
required

Stable, machine-readable identifier. Branch on this.

string
message
required

Human-readable explanation. Safe to display; do not parse.

string
Examples
{
"code": "unauthorized",
"message": "authentication required"
}

Authenticated, but not permitted to perform this action.

Media typeapplication/json
object
code
required

Stable, machine-readable identifier. Branch on this.

string
message
required

Human-readable explanation. Safe to display; do not parse.

string
Examples
{
"code": "forbidden",
"message": "you do not have permission to perform this action"
}

An unexpected failure. Diagnostic detail is logged server-side and deliberately not returned. Quote the X-Request-Id response header when reporting one.

Media typeapplication/json
object
code
required

Stable, machine-readable identifier. Branch on this.

string
message
required

Human-readable explanation. Safe to display; do not parse.

string
Examples
Exampleinternal_error
{
"code": "internal_error",
"message": "internal server error"
}