v1
latestOpenAPI 3.0.32026-08-06138294578.6 KBModel Sync
Get Execution Console Logs
Fetch the latest console log entries for a sync execution. Returns the most recent 50 entries.
get/api/syncs/{sync_id}/executions/{id}/consolelog
Path parameters
sync_idstring uuid required
Example:248df4b7-aa70-47b8-a036-33ac447e668d
idstring uuid required
Example:0ecd09c1-b901-4d27-9053-f0367c427254
Query parameters
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"
}
]
}
}