cURL
curl --request POST \ --url https://api.example.com/addJobByFile \ --header 'Content-Type: application/json' \ --data ' { "recruiterId": "<string>", "organizationId": "<string>", "prompt": "<string>" } '
{ "status": 1, "message": "Job(s) created successfully", "jobs": [ { "job_unique_id": "68c42431b9f38f8c24fbc91f", "job_title": "Full Stack Developer", "job_code": "FSD-2025-001", "department": "Engineering", "location": "San Francisco, CA", "employment_type": "Full-time", "created_at": "2025-10-23T10:30:00.000Z" } ] }
Add a job posting by uploading a file or providing a prompt
POST /addJobByFile Content-Type: multipart/form-data
curl -X POST https://api.exterview.ai/ats/jobs/upload \ -H "x-api-key: YOUR_API_KEY" \ -H "Authorization: Bearer YOUR_TOKEN" \ -F "recfiles=@job_posting.csv" \ -F "recruiterId=68a5b11168f3d6ccd1a" \ -F "organizationId=68a595060754e2425" \ -F "prompt=Parse as software engineering roles"
Show Job Object Properties