Hirempire
  1. Applicants
Hirempire
  • Get started
  • Jobs
    • Get all jobs
      GET
    • Get a specific job
      GET
    • Add a job
      POST
    • Delete a job
      DELETE
    • Update job status
      PATCH
  • Applicants
    • Get all applicants
      GET
    • Get a specific applicant
      GET
    • Get a specific job’s applicants
      GET
    • Update applicant status
      PATCH
  • Companies
    • Create a Company
      POST
    • Delete a company
      DELETE
  • Organizations
    • Create an Organization
      POST
  • Users
    • Add a Collaborator
      POST
  1. Applicants

Update applicant status

PATCH
https://api.hirempire.com/v1/update-applicant

Request

Header Params

Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PATCH 'https://api.hirempire.com/v1/update-applicant' \
--header 'Authorization: Bearer YOUR_TOKEN_HERE' \
--header 'Content-Type: application/json' \
--data-raw '{
  "applicant_id": "xyz456abc123",
  "status": "Rejected" // Applied, Reviewed, Accepted, Scheduled, Met, Hired, Rejected
}'
Response Response Example
{
  "success": true,
  "id": "xyz456abc123",
  "status": "Rejected"
}
Modified at 2025-06-09 18:04:04
Previous
Get a specific job’s applicants
Next
Create a Company
Built with