v1
latestOpenAPI 3.0.32026-08-06138294578.6 KBBulk Sync
Get Ingest Console Logs
Fetch the latest console log entries for ingestion scoped by connection and optional bulk sync. Returns the most recent 50 entries.
get/api/connections/{connection_id}/ingest/consolelog
Path parameters
connection_idstring uuid required
Example:248df4b7-aa70-47b8-a036-33ac447e668d
Query parameters
sync_idstring uuid
Optional bulk sync ID for sync-scoped ingestion logs.
Example:248df4b7-aa70-47b8-a036-33ac447e668d
Optional bulk sync ID for sync-scoped ingestion logs.
limitinteger
Maximum number of entries to return. Values above the logger retention limit are capped to 50.
Example:50
Maximum number of entries to return. Values above the logger retention limit are capped to 50.
afterstring
Return only entries newer than this cursor.
Example:1744311099250-0
Return only entries newer than this cursor.
Headers
X-Polytomic-Versionstring
Response
OK
Example response
{
"data": {
"entries": [
{
"id": "1744311099250-0",
"level": "INFO",
"message": "Started sync",
"timestamp": "2024-01-01T00:00:00Z"
}
]
}
}