Skip to main content

Create Company

Endpoint: POST /companies

Authentication: Bearer Token (required)

Request

Headers

NameTypeRequiredDescription
AuthorizationstringYesBearer token for authentication

Request Body

NameTypeRequiredDescription
namestringYesThe display name of the new company (e.g. "BProjects")
baseCurrencyStringstringYesThe ISO 4217 currency code for the company's base currency (e.g. "USD")
isPrimarybooleanNoWhether this company is the user's primary/ main company (e.g. true)

Request Schema

{
"headers": {
"Authorization": "Bearer <token>"
},
"body": {
"name": "BProjects",
"baseCurrencyString": "USD",
"isPrimary": true
}
}