Skip to main content
POST
/
api
/
filters.backfillStart
Start background backfill for all filters
curl --request POST \
  --url https://your-instance.example.com/api/filters.backfillStart \
  --header 'Content-Type: application/json' \
  --data '
{
  "workspace_id": "<string>",
  "lookback_days": 183,
  "chunk_size_days": 15.5,
  "batch_size": 25050
}
'
{
  "task_id": "550e8400-e29b-41d4-a716-446655440000"
}

Body

application/json
workspace_id
string
required
lookback_days
number
required
Required range: 1 <= x <= 365
chunk_size_days
number
Required range: 1 <= x <= 30
batch_size
number
Required range: 100 <= x <= 50000

Response

201 - application/json
task_id
string
required

The unique identifier for the backfill task

Example:

"550e8400-e29b-41d4-a716-446655440000"