v1
latestOpenAPI 3.1.02026-08-0456127224.3 KBCandidates
Async ingest a single candidate
Queue a candidate for async processing through the interviewer's workflow. Returns an ingestion ID to track the job.
post/api/v2/postings/{posting_id}/candidates/async
Path parameters
posting_idstring required
Headers
X-API-KEYstring nullable
Authorizationstring nullable
X-Workspace-Idstring nullable
Request body
Example request
{
"name": "Jane Doe",
"email": "jane.doe@example.com",
"phone_number": "+12065551234",
"metadata": {
"ats_stage": "phone_screen",
"external_id": "candidate_xyz"
}
}Response
Successful Response
Example response
{
"data": {
"ingestion_id": "intake_abc123",
"status": "queued"
}
}