Skip to content
Last updated

title: Unified sync endpoint for pipeline data keywords:

  • unified sync endpoint for pipeline data
  • post
  • unified
  • sync
  • endpoint
  • for
  • pipeline
  • data

Unified sync endpoint for pipeline data

Unified endpoint for syncing data from pipeline platforms.

POSThttps://api.aitronos.com/v1/connectors/pipeline/sync

Request Body

organization_id string required

Organization ID (org_ prefixed)

vector_store_id string required

Vector store ID (vs_ prefixed)

sync_mode string required

Sync mode: incremental (updates only) or full_refresh (complete replacement)

sync_timestamp string required

ISO 8601 timestamp of sync start

operations array of SyncOperation required

List of operations to perform


Returns

status string

Overall sync status

sync_id string

Unique sync identifier

processed integer

Total operations processed

results object

Results breakdown by operation type

by_namespace object

Results grouped by namespace

processing_time_ms integer

Processing time in milliseconds

cURL
curl -X POST "https://api.aitronos.com/v1/connectors/pipeline/sync" \
  -H "X-API-Key: $FREDDY_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "organization_id": "org_abc123",
  "vector_store_id": "your_vector_store_id",
  "sync_mode": "your_sync_mode",
  "sync_timestamp": "your_sync_timestamp",
  "operations": []
}'

Response:

200 OK
{
  "status": "success",
  "sync_id": "abc123def456",
  "processed": 1,
  "results": {},
  "by_namespace": {},
  "processing_time_ms": 1
}