Skip to main content
GET
/
company
/
info
/
hr
Get Company HR Info
curl --request GET \
  --url https://api.roostedhr.com/api/1_12/company/info/hr \
  --header 'X-API-KEY: <api-key>'
[
  {
    "id": 1,
    "hr_manager": "Jane Smith",
    "hr_email": "hr@company.com",
    "hr_phone": "+1234567890",
    "is_default": 1
  }
]
Returns an array of the company’s HR contacts. Each contact includes the manager name, email, phone number, and whether they are the default HR contact.

Authorizations

X-API-KEY
string
header
required

Response

OK

id
integer

Unique HR contact identifier

hr_manager
string

HR manager name

hr_email
string<email>

HR contact email address

hr_phone
string

HR contact phone number

is_default
integer

Whether this is the default HR contact (0 or 1)