Skip to main content
PATCH
/
company
/
info
Edit Company Info
curl --request PATCH \
  --url https://api.roostedhr.com/api/1_12/company/info \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '
{
  "name": "<string>",
  "primary_contact": "<string>",
  "contact_number": "<string>",
  "contact_email": "jsmith@example.com",
  "address": "<string>",
  "city": "<string>",
  "zip": "<string>",
  "country_id": 1,
  "timezone_id": 1,
  "hr_manager": "<string>",
  "hr_phone": "<string>",
  "hr_email": "jsmith@example.com"
}
'
true

Authorizations

X-API-KEY
string
header
required

Body

application/json

Company Info Object

name
string
Maximum string length: 50
primary_contact
string
Maximum string length: 50
contact_number
string
Maximum string length: 50
contact_email
string<email>
Maximum string length: 75
address
string
Maximum string length: 75
city
string
Maximum string length: 75
zip
string
Maximum string length: 10
country_id
integer
Required range: x >= 0
timezone_id
integer
Required range: x >= 0
hr_manager
string
Maximum string length: 50
hr_phone
string
Maximum string length: 50
hr_email
string<email>
Maximum string length: 150

Response

OK

The response is of type boolean.