Bulk Import
Connect many creator accounts from one pasted list. `POST /import/preview` validates without side effects; `POST /import/jobs` runs the import in the background and streams `import.progress` / `import.complete` over `GET /events/stream`. Rows that hit a 2FA prompt park as `needs_2fa` until you supply a code.
Connect many creator accounts from one pasted list. POST /import/preview validates without side effects; POST /import/jobs runs the import in the background and streams import.progress / import.complete over GET /events/stream. Rows that hit a 2FA prompt park as needs_2fa until you supply a code.
| Method | Endpoint | Path |
|---|---|---|
GET | List import jobs | /import/jobs |
POST | Start a bulk import | /import/jobs |
GET | Get an import job | /import/jobs/{job_id} |
POST | Cancel an import job | /import/jobs/{job_id}/cancel |
POST | Supply a 2FA code for an import row | /import/jobs/{job_id}/rows/{row_id}/otp |
POST | Retry an import row | /import/jobs/{job_id}/rows/{row_id}/retry |
GET | List rows waiting on a 2FA code | /import/pending-2fa |
POST | Preview an import paste | /import/preview |
Toggle MCP non-GET proxy access PATCH
Toggle whether the hosted MCP server may issue non-GET requests through the generic OF proxy tool. Off by default. Use with care: enabling it lets a model POST/PATCH/DELETE…
Preview an import paste POST
Parse and validate a pasted account list without side effects — nothing is written, no login is attempted, and no slot is consumed. Use it to show which rows are valid,…