IdenIden Docs
API ReferenceBridge

Push sync page

Push a page of records for a resource type within a sync session. The request body schema depends on the resource type being synced (account, group, or license). Records are validated and upserted immediately. Call complete_sync when all pages have been pushed to finalize the sync.

PUT
/api/v1/bridge/apps/{app_external_uuid}/sync/{sync_id}/{resource_type_slug}/

Authorization

ApiKeyAuth
Authorization<token>

API key authentication. Format: Api-Key <your_api_key>

In: header

Path Parameters

app_external_uuid*string
Formatuuid
resource_type_slug*string
sync_id*string
Formatuuid
records*array<>

List of account records (max 100 per page).

Response Body

application/json

application/json

application/json

application/json

curl -X PUT "https://developer.idenhq.com/org/{tenant_slug}/api/v1/bridge/apps/497f6eca-6276-4993-bfeb-53cbbbba6f08/sync/497f6eca-6276-4993-bfeb-53cbbbba6f08/string/" \  -H "Content-Type: application/json" \  -d '{    "records": [      {        "id": "string"      }    ]  }'
{
  "total": 0,
  "created": 0,
  "updated": 0
}
{
  "detail": "string"
}
{
  "detail": "string"
}
{
  "detail": "string"
}