Enqueue extraction across a date range
POST
/follow-ups/backfill
const url = 'https://my-instance.example.com/follow-ups/backfill';const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://my-instance.example.com/follow-ups/backfill \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” since
string format: date-time
ISO8601 lower bound. Defaults to the server’s backfill window.
force
boolean
Responses
Section titled “ Responses ”Extraction enqueued across the range.
Media type application/json
object
enqueued
integer
since
string format: date-time
Example generated
{ "enqueued": 1, "since": "2026-04-15T12:00:00Z"}since is not a valid ISO8601 timestamp.
Media type application/json
object
error
required
string
code
string
Example
{ "error": "since must be a valid ISO8601 timestamp"}The bearer token is missing or wrong.
Media type application/json
object
error
required
string
code
string
Example
{ "error": "Unauthorized"}The lookup failed.
Media type application/json
object
error
required
string
code
string
Example generated
{ "error": "example", "code": "example"}