POST
/
v0
/
business
curl --request POST \
  --url https://api.sandbox.getasset.com/v0/business \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "Roofing Pros",
  "entity_type": "c-corp",
  "entries_start": "2023-11-07T05:31:56Z",
  "fiscal_year": "<string>",
  "status": "active"
}'
{
  "data": {
    "tenant_id": "<string>",
    "name": "<string>",
    "entries_start": "2023-11-07T05:31:56Z",
    "entity_type": "c-corp",
    "fiscal_year": "<string>",
    "status": "active",
    "id": "<string>"
  }
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json
name
string
required

The name of the Business

Maximum length: 255
Example:

"Roofing Pros"

entity_type
enum<string>
required

The Business structure, which determines the default Chart of Accounts

Available options:
c-corp,
llc,
partnership,
s-corp,
sole-prop
entries_start
string
required

The datetime in UTC ISO 8601 format from which the system will sync a Business' accounting data. All data prior to this date will be ignored

fiscal_year
string
required

The Business' fiscal year ending period in format MM/DD

status
enum<string>

The status of the Business

Available options:
active,
inactive

Response

201
application/json
Successful Response
data
object
required