Skip to main content

PollAllNowResponse

Response shape from the poll-now-all endpoint.

Reports how many enabled sources had a poll task enqueued in this call. Disabled sources are skipped silently. coalesced counts sources whose existing in-flight task absorbed the request (no new task was created). failed counts sources where the enqueue itself errored — those are logged server-side; the response stays 202 to avoid having one bad source block the rest.

coalescedintegerrequired

Sources whose pending/running poll absorbed the request.

Possible values: >= 0

consideredintegerrequired

Total enabled sources considered.

Possible values: >= 0

enqueuedintegerrequired

Sources for which a fresh poll task was enqueued.

Possible values: >= 0

failedintegerrequired

Sources whose enqueue failed (see server logs).

Possible values: >= 0

PollAllNowResponse
{
"coalesced": 0,
"considered": 0,
"enqueued": 0,
"failed": 0
}