What is an Index ID?
In the context of RChilli's Search & Match functionality, an Index ID is a unique identifier assigned to a document (e.g., resume or JD) after it has been parsed and indexed into RChilli’s Search Engine.
-
Parsing extracts structured data.
-
Indexing stores the document temporarily in a secure, region-specific environment.
-
The Index ID is used in all operations such as search, match, retrieve, update, or delete.
How to Map Index ID?
Mapping refers to associating the rchilli_index_id
with your internal job or candidate records.
Example Mapping
This helps in:
-
Tracking indexed documents
-
Performing future match or delete operations
How to Get the Index ID Using the API
Step 1: Use the ParseAndIndex
API
Use this API to both parse and index the document in one call.
-
Endpoint:
POST /parseAndIndex
-
Returns:
IndexId
in the response
ParseAndIndex API Documentation
How to Get Document Details Using Index ID
Step 2: Use Get Document Details by Index ID
API
You can retrieve document contents using:
-
Endpoint:
GET /getDocumentDetail
-
Parameter:
indexId
This will return all parsed and indexed data such as skills, experience, education, etc.
Get Document Detail By Index ID
Additional Operations with Index ID
Operation | Description | Link |
---|---|---|
Match Document | Match a specific indexed doc against others | Match by Index ID |
Delete One Document | Remove a single document | Delete Document |
Delete All Documents | Clear the entire index | Delete All Documents |
Search Document | Use Index ID in custom search | Search API Overview |
Maintain the Mapping in Your System
To keep records organized:
Internal ID (e.g., candidate_id) | RChilli Index ID |
---|---|
CAND12345 |
abcde123456 |
JOB001 |
xyz789012 |
Summary
Feature | Description |
---|---|
Index ID | Unique key for indexed documents |
ParseAndIndex API | Combines parsing and indexing |
Document Retrieval | Use /getDocumentByIndexId
|
Search/Match/Delete | Operate using Index ID |
Mapping | Track IDs with internal candidate/job records |
Need Assistance?
-
Email: support@rchilli.com
-
Full API Guide: Search & Match API Documentation
- Delete All Documents API
Comments
0 comments
Please sign in to leave a comment.