> ## Documentation Index
> Fetch the complete documentation index at: https://docs.humanly.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Async jobs (coming soon)

> Poll long-running Connect write operations

<Warning>
  **Not yet implemented.** Async job polling is planned for **MS7 (PLAT-42)**.
</Warning>

Long-running vendor writes will return **202 Accepted** with a job identifier. Partners poll until completion:

**Endpoint (planned):** `GET /connect/{vendor}/jobs/{jobId}`

## Recommended polling

* Start at **1–2 second** intervals
* Exponential backoff up to **30 seconds**
* Stop after terminal state (`completed`, `failed`) or a partner-defined timeout

## Response shape (planned)

Job status will be returned in the standard Connect envelope with vendor-specific details in `data`.

<Note>
  Webhooks for job completion may land in a future milestone. Until then, polling is the supported pattern.
</Note>

## Related

* [Writes](/connect/writes) — idempotency header
* [Error envelope](/platform/error-envelope)
