POST
/
accounting
/
accounts
curl --request POST \
  --url https://api.rootfi.dev/v3/accounting/accounts \
  --header 'Content-Type: application/json' \
  --header 'api_key: <api-key>' \
  --data '{
  "company_id": 123,
  "data": [
    {
      "name": "Rootfi Test Account",
      "description": "Rootfi Test Account",
      "nominal_code": "123456",
      "sub_category": "Test",
      "currency_id": "123456",
      "parent_account_id": "1234567"
    }
  ]
}'
{
  "data": {
    "rootfi_id": 157,
    "rootfi_deleted_at": null,
    "rootfi_created_at": "2024-01-22T05:07:31.465Z",
    "rootfi_updated_at": "2024-01-22T05:07:31.000Z",
    "rootfi_company_id": 1089,
    "platform_id": "123456_1",
    "platform_unique_id": "123456",
    "name": "Rootfi Test Account",
    "description": "Rootfi Test Account",
    "nominal_code": "123456",
    "current_balance": 0,
    "updated_at": "2021-08-10T14:00:00.000Z",
    "status": "active",
    "category": "ASSET",
    "sub_category": "Test",
    "currency_id": "123456",
    "parent_account_id": "1234567"
  }
}

The Accounts Data Model is designed to streamline the management and retrieval of account-related information across various accounting platforms.

Additional Required Fields

To successfully create an account, certain fields must be included in the raw_data object of the request body. The required fields are as follows:

IntegrationFieldDescription
MS_DYNAMICS_365_FOChartOfAccountsThe chart of accounts to which the account belongs.
MYOB_BUSINESStax_idThe tax ID associated to the account.
SAGE_ZA_CLOUD_ACCOUNTINGsub_category_idThe sub-category ID associated to the account.

Authorizations

api_key
string
header
required

Body

application/json
company_id
integer
required

The ID of the company in the accounting platform

data
object[]
required

The data of the accounts endpoint

run_async
boolean | null

Run the request asynchronously

Response

200
application/json
data
object

The data of the accounts endpoint

sync_id
string | null

The sync id of the request