API Reference / Git - Sync Activity

Get recent webhook activity

get https://api.intelig.ai/api/v1/intelig/git/sync/recent-activity

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

Returns recent webhook-triggered syncs with their outcomes. Paginated with limit/offset parameters. Shows event type, status, and timing for each webhook processing.

Example request

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

Query parameters

NameTypeRequiredDescription
limit integer (int32) no
offset integer (int32) no

Response 200

application/json · ApiResponseRecentWebhookActivityDto

FieldTypeDescription
success boolean
message string
data RecentWebhookActivityDto Recent webhook activity feed for the sync narrative

Status codes

  • 200 — Recent webhook activity 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.