Back to Search & Ranking
Get Index Operation Status
Retrieves the status of a specific indexing operation for resumes or jobs.
Request Details
path Parameters
| Field | Type | Required | Description | 
|---|---|---|---|
| operationId | string  | Yes | The unique identifier of the indexing operation | 
Sample Request & Response
GET
/v1/index/status/{operationId}Sample Request
Headers:
{
  "Authorization": "Bearer <YOUR_API_KEY>"
}Path Parameters:
{
  "operationId": "string (required) - The unique identifier of the indexing operation"
}Sample Response (200)
{
  "operationId": "index_a1b2c3",
  "type": "job",
  "status": "processing",
  "accepted": [
    "job_123",
    "job_456"
  ],
  "skipped": [],
  "invalid": [],
  "startedAt": 1691510400000,
  "updatedAt": 1691510460000,
  "completedAt": null
}