Skip to content
Last updated
GEThttps://api.aitronos.com/v1/streamline/automations/{automation_id}/sync-logs

Retrieve sync logs for a specific automation with filtering and pagination. Monitor Git repository synchronization events, errors, and status for your Streamline automations.

automation_id string required

Automation ID (sauto_ prefixed)

Query Parameters

limit integer optional

Number of logs per page (1-100, default: 50)

offset integer optional

Pagination offset (default: 0)

status string optional

Filter by status: success, error, warning

event_type string optional

Filter by event type: pull, webhook_register, webhook_remove, validation, credential_check

Returns

Returns a paginated list of sync log objects with total count.

cURL
curl -X GET "https://api.aitronos.com/api/v1/streamline/automations/sauto_abc123/sync-logs?limit=20&status=error" \
  -H "X-API-Key: $FREDDY_API_KEY"