Loading...
Manage job postings and applications.
/v1/jobsList job postings.
| Name | Type | Required | Description |
|---|---|---|---|
| type | string | optional | full-time, part-time, contract, freelance |
| remote | boolean | optional | Filter for remote positions |
{ "data": [{ "id": "job_201", "title": "Senior Backend Engineer", "company": "TechCo", "remote": true }] }/v1/jobsCreate a job posting.
{ "title": "Frontend Dev", "company": "StartupXYZ", "type": "full-time" }{ "id": "job_202", "title": "Frontend Dev", "status": "active" }/v1/jobs/:id/applyApply to a job posting.
{ "cover_letter": "...", "resume_url": "https://..." }{ "application_id": "app_301", "status": "submitted" }/v1/jobs/:idClose a job posting.
{ "success": true, "message": "Job posting closed" }