API Reference / Git - Sync

Get sync progress

get https://api.intelig.ai/api/v1/intelig/git/sync/progress

Auth: Authorization: ApiKey <key> (an API key sent as Bearer is rejected) or Authorization: Bearer <jwt> for a dashboard session. operationId: getProgress_1

Returns the current sync progress for the organization including completed steps, total steps, and current phase. Used to display sync status in the UI.

Example request

curl -X GET "https://api.intelig.ai/api/v1/intelig/git/sync/progress" \
  -H "Authorization: ApiKey $INTELIG_API_KEY"

Response 200

application/json · ApiResponseSyncProgressResponse

FieldTypeDescription
success boolean
message string
data SyncProgressResponse Aggregated sync progress for all repositories in an organization

Status codes

  • 200 — Sync progress returned successfully
  • 401 — Organization context is missing or invalid
  • 429 — —

Every response is wrapped in { success, message, data }. A 4xx means the request is wrong — do not retry it unchanged. A 429 carries Retry-After in seconds.