Skip to main content
POST
https://api.hirempire.com
/
v1
/
create-company
curl --location --request POST 'https://api.hirempire.com/v1/create-company' \
--header 'Authorization: Bearer YOUR_TOKEN' \
--header 'Content-Type: application/json' \
--data-raw '{
    "company_name": "Example",
    "company_domain": "example.com",
    "company_logo_url": "https://1000logos.net/wp-content/uploads/2017/02/Apple-Logosu.png"
}'
{
  "success": true,
  "company_id": "xyz456abc123"
}

Request Body

company_name
string
required
The name of the company
company_domain
string
required
The domain of the company (e.g., example.com)
company_logo_url
string
required
The URL to the company’s logo image

Authentication

Authorization
string
required
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
curl --location --request POST 'https://api.hirempire.com/v1/create-company' \
--header 'Authorization: Bearer YOUR_TOKEN' \
--header 'Content-Type: application/json' \
--data-raw '{
    "company_name": "Example",
    "company_domain": "example.com",
    "company_logo_url": "https://1000logos.net/wp-content/uploads/2017/02/Apple-Logosu.png"
}'

Response

success
boolean
Indicates if the company was created successfully
company_id
string
The unique identifier of the newly created company
{
  "success": true,
  "company_id": "xyz456abc123"
}