Skip to main content
POST
/
v2
/
entity-ingestion-configs
/
{config_id}
/
sync
Sync Entity Ingestion Config
curl --request POST \
  --url https://public.api.serval.com/v2/entity-ingestion-configs/{config_id}/sync \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "forceFullResync": true
}
'
{}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

config_id
string
required

The ID of the ingestion config to trigger sync for.

Body

application/json
forceFullResync
boolean

When true, ignore and discard any saved resume checkpoint and start the ingestion fresh from the last completed watermark. Default (false) resumes an interrupted run if one exists.

Response

Success

The response is of type SyncEntityIngestionConfigResponse · object.