List Instance Activity Log
GET/api/integrations/17track/instances/:instance/activity
Paginated activity log entries scoped to a single 17TRACK integration instance. Surfaces both (1) rows where the instance itself is the activity subject (connect / settings update / disconnect) and (2) rows where properties.integration_instance_id matches (webhook ingest, backfill, quota threshold).
Any valid API token can call this endpoint — no specific scope required. Manage tokens.
Powers the "Activity" sub-page of the 17TRACK integration UI.
Supported filters:
filter[event_type]— comma-separated activity event names (Spatieeventcolumn)filter[causer_id]— comma-separated user IDsfilter[search]— substring match on descriptionfilter[date_from],filter[date_to]— m/d/Y, applied to created_at
Allowed sorts: created_at, event, id (default: -created_at, -id).
Common event values emitted by the 17TRACK module:
connected— Integration connected (causer = user)updated— Settings updated (properties.changed_keys)disconnected— Integration disconnectedwebhook_processed/webhook_failed— per webhook ingestbackfill_started/backfill_completed— historical backfill jobquota_exceeded— quota threshold reached (no causer)
Responses:
200 OK— paginated activity rows401 Unauthorized— missing/invalid bearer token404 Not Found— instance id does not exist
Request
Responses
- 200
- 401
- 403
- 404
- 429
OK
Response Headers
Unauthenticated — the bearer token is missing, revoked, expired, or malformed. Never retry automatically; fix the credential. See the Errors guide.
Forbidden — the token lacks a required scope, the endpoint is not available to API tokens, or the user behind the token lacks the permission. A human must adjust the token scopes or user permissions; do not retry.
Not found — no record with the given identifier (or the route does not exist). Verify the ID before retrying.
Rate limited — platform limit is 1,000 requests/min; individual tokens may carry lower limits. Honor the Retry-After header before retrying. See the Rate Limits guide.