Tax Control Account

A tax control account is an account to which the amounts computed for indirect taxes, such as sales tax and VAT, are posted.

To create a tax control account in the UI or view existing ones, go to Setup > Accounting > Taxes > Tax Control Accounts (Administrator).

For more information about working with this record in the UI, see Tax Control Accounts Overview.

For information about using the REST API Browser, see The REST API Browser.

Record ID

The record ID for the tax control account REST record is taxAcct.

Prerequisites

The Legacy Tax feature must be enabled.

Actions

The tax control account record has the following actions through REST web services:

  • Save new

  • Save

  • Reset

Usage Notes

Review these usage notes on working with the tax control account record:

  • If the nexus used in the tax control account record is deleted, then the tax control account record is also deleted.

Code Samples

This code sample shows how to post the tax control account record:

            POST /services/rest/record/v1/taxacct
{ "description": "TaxAccount Ghana desc", "isInactive": false, "name": "TaxAccount Ghana name", "nexus": "10", "taxAcctType": { "id": "sale", "refName": "sale" } } 

          

This code sample shows how to get the tax control account record:

            GET /services/rest/record/v1/taxacct/{{taxacctId}} 

          

This code sample shows how to update the tax control account record:

            PATCH /services/rest/record/v1/taxacct/{{taxacctId}}
{
    "description": "TaxAccount Ghana desc edit"

} 

          

This code sample shows how to delete the tax control account record:

            DELETE /services/rest/record/v1/taxacct/{{taxacctId}} 

          

Related Topics

General Notices