{ "opencollection": "1.0.0", "info": { "name": "SmartRecruiters Candidate Applications Jobs API", "version": "1.0.0" }, "request": { "auth": { "type": "apikey", "key": "X-SmartToken", "value": "{{X-SmartToken}}", "placement": "header" } }, "items": [ { "info": { "name": "Jobs", "type": "folder" }, "items": [ { "info": { "name": "List Jobs", "type": "http" }, "http": { "method": "GET", "url": "https://api.smartrecruiters.com/jobs", "params": [ { "name": "q", "value": "", "type": "query", "description": "Full-text search query" }, { "name": "limit", "value": "", "type": "query", "description": "Maximum number of results to return" }, { "name": "offset", "value": "", "type": "query", "description": "Number of results to skip for pagination" }, { "name": "status", "value": "", "type": "query", "description": "Filter by job status" }, { "name": "department", "value": "", "type": "query", "description": "Filter by department ID" } ] }, "docs": "Returns a paginated list of jobs. Supports filtering by status, department, location, hiring manager, and other criteria." }, { "info": { "name": "Create Job", "type": "http" }, "http": { "method": "POST", "url": "https://api.smartrecruiters.com/jobs", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new job in the SmartRecruiters system." }, { "info": { "name": "Get Job", "type": "http" }, "http": { "method": "GET", "url": "https://api.smartrecruiters.com/jobs/:jobId", "params": [ { "name": "jobId", "value": "", "type": "path", "description": "The unique job identifier" } ] }, "docs": "Retrieves detailed information about a specific job." }, { "info": { "name": "Update Job", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.smartrecruiters.com/jobs/:jobId", "params": [ { "name": "jobId", "value": "", "type": "path", "description": "The unique job identifier" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates properties of an existing job." }, { "info": { "name": "Update Job Status", "type": "http" }, "http": { "method": "PUT", "url": "https://api.smartrecruiters.com/jobs/:jobId/status", "params": [ { "name": "jobId", "value": "", "type": "path", "description": "The unique job identifier" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates the status of a job, moving it through the hiring workflow." }, { "info": { "name": "Get Job Hiring Team", "type": "http" }, "http": { "method": "GET", "url": "https://api.smartrecruiters.com/jobs/:jobId/hiring-team", "params": [ { "name": "jobId", "value": "", "type": "path", "description": "The unique job identifier" } ] }, "docs": "Returns the hiring team members assigned to a specific job." }, { "info": { "name": "List Job Candidates", "type": "http" }, "http": { "method": "GET", "url": "https://api.smartrecruiters.com/jobs/:jobId/candidates", "params": [ { "name": "jobId", "value": "", "type": "path", "description": "The unique job identifier" }, { "name": "status", "value": "", "type": "query", "description": "Filter by candidate status" }, { "name": "limit", "value": "", "type": "query" }, { "name": "offset", "value": "", "type": "query" } ] }, "docs": "Returns a paginated list of candidates who have applied to a specific job." } ] } ], "bundled": true }