Aurion Docs
Api

Trigger Sync

Trigger a full sync of requesters from the configured ITSM provider. Uses provider-agnostic ITSMClient implementations (Story 1.7) and upserts into the local requester table using (provider_type, external_id). Note: This is a long-running operation. For production, consider using a background task queue (e.g., Celery, AWS Lambda).

POST
/api/v1/configuration/requesters/sync

Trigger a full sync of requesters from the configured ITSM provider.

Uses provider-agnostic ITSMClient implementations (Story 1.7) and upserts into the local requester table using (provider_type, external_id).

Note: This is a long-running operation. For production, consider using a background task queue (e.g., Celery, AWS Lambda).

AuthorizationBearer <token>

In: header

Response Body

application/json

curl -X POST "https://loading/api/v1/configuration/requesters/sync"
{
  "created": 0,
  "duration_seconds": 0,
  "errors": 0,
  "message": "string",
  "success": true,
  "synced": 0,
  "updated": 0
}