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

Create an Organization

POST
https://api.hirempire.com/v1/create-organization

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/create-organization' \
--header 'Authorization: Bearer 927634980234' \
--header 'Content-Type: application/json' \
--data-raw '{
    "organization_name": "Example",
    "organization_domain": "example.com"
}'
Response Response Example
{
  "success": true,
  "organization_id": "xyz123456",
  "created": "2000-01-01 01:00:00",
  "updated": "2000-01-01 01:00:00"
}
Modified at 2025-06-09 18:04:24
Previous
Delete a company
Next
Add a Collaborator
Built with