Hirempire
  1. Users
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. Users

Add a Collaborator

POST
https://api.hirempire.com/v1/add-collaborator

Request

Header Params

Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.hirempire.com/v1/add-collaborator' \
--header 'Authorization: Bearer 927634980234' \
--header 'Content-Type: application/json' \
--data-raw '{
	"email": "email@example.com",
	"name": "Full Name"
}'
Response Response Example
{
  "success": true,
  "collaborator_email": "email@example.com",
  "role": "Recruiter",
  "created": "2000-01-01 01:00:00",
  "updated": "2000-01-01 01:00:00"
}
Modified at 2025-06-09 18:04:31
Previous
Create an Organization
Built with