Other receipt tax entries

Other receipt tax entries contain information about the order entry tax detail and the other receipt line item that it relates to. Order Entry tax details describe a specific type of tax that applies to lines in Accounts Receivable and Order Entry transactions. Create and maintain other receipt tax entries in the owning other receipt line item.

For more information, see tax details in the Sage Intacct Help Center.

List other receipts tax entries

get/objects/cash-management/other-receipt-tax-entry

Returns a collection with a key, ID, and link for each tax entry associated with a line item in an other receipts transaction. 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": "8",
      • "id": "8",
      • "href": "/objects/cash-management/other-receipt-tax-entry/8"
      },
    • {
      • "key": "9",
      • "id": "9",
      • "href": "/objects/cash-management/other-receipt-tax-entry/9"
      },
    • {
      • "key": "10",
      • "id": "10",
      • "href": "/objects/cash-management/other-receipt-tax-entry/10"
      }
    ],
  • "ia::meta": {
    • "totalCount": 3,
    • "start": 1,
    • "pageSize": 100,
    • "next": null,
    • "previous": null
    }
}

Get other receipt tax entries

get/objects/cash-management/other-receipt-tax-entry/{key}

Returns detailed information for a specified other receipt tax entry.

SecurityOAuth2
Request
path Parameters
key
required
string

System-assigned key for the other receipt tax entry.

Example: 134
Responses
200

OK

400

Bad Request

Request samples
Response samples
application/json
{
  • "ia::result": {
    • "key": "300",
    • "id": "300",
    • "baseTaxAmount": "100",
    • "txnTaxAmount": "100",
    • "description": "Standard Rate for UK Import Services",
    • "taxRate": 5.5,
    • "taxDetail": {
      • "id": "UK Export Reduced Rate",
      • "key": "24",
      • "href": "/objects/tax/order-entry-tax-detail/24"
      },
    • "otherReceiptLine": {
      • "id": "148",
      • "key": "148",
      • "href": "/objects/cash-management/other-receipt-line/148"
      },
    • "href": "/objects/cash-management/tax/other-receipt-tax-entry/300"
    },
  • "ia::meta": {
    • "totalCount": 1
    }
}