Tax details

Tax details describe a specific type of tax that applies to lines in a transaction. When Sage Intacct calculates taxes, the tax schedule map applies the tax details to the taxable lines. See Tax details—Taxes application for more information.

List tax details

get/objects/tax/tax-detail

Returns a collection with a key, ID, and link for each tax detail. This operation is mostly for use in testing; use the query service to find objects that meet certain criteria and to specify properties that are returned.

SecurityOAuth2
Responses
200

OK

400

Bad Request

Request samples
Response samples
application/json
{
  • "ia::result": [
    • {
      • "key": "1",
      • "id": "CGST",
      • "href": "/objects/tax/tax-detail/1"
      },
    • {
      • "key": "2",
      • "id": "SGST",
      • "href": "/objects/tax/tax-detail/2"
      }
    ],
  • "ia::meta": {
    • "totalCount": 2,
    • "start": 1,
    • "pageSize": 100,
    • "next": null,
    • "previous": null
    }
}

Get a tax detail

get/objects/tax/tax-detail/{key}

Returns detailed information for a specified tax detail.

SecurityOAuth2
Request
path Parameters
key
required
string

System-assigned unique key for the tax detail.

Example: 304
Responses
200

OK

400

Bad Request

Request samples
Response samples
application/json
{
  • "ia::result": {
    • "key": "29",
    • "id": "SGST",
    • "taxUniqueId": "AU.InputCapitalPurchase.StandardAU.GST",
    • "description": "G10 Capital Acquisition SGST",
    • "taxType": "purchase",
    • "taxPercent": "10.00",
    • "taxLimit": {
      • "minTaxable": 10,
      • "maxTaxable": 2000,
      • "minTax": 10,
      • "maxTax": 150
      },
    • "amountToTax": "fullAmount",
    • "glAccount": {
      • "id": "6850.03--Taxes"
      },
    • "taxAuthority": {
      • "id": ""
      },
    • "status": "active",
    • "isSystemGenerated": false,
    • "reverseCharge": false,
    • "taxRate": null,
    • "taxSolution": {
      • "id": "Australia - GST",
      • "key": "3",
      • "href": "/objects/tax/tax-solution/3"
      },
    • "useExpenseAccount": false,
    • "href": "/objects/tax/tax-detail/29"
    }
}