Credit card fee tax entries

Tax entry details for VAT enabled credit card fee transactions, each line item will have applicable tax entry information. Providing multiple entries is allowed if the tax solution supports it (AU, GB, FR). For ZA, only one tax entry is allowed. (Taxes subscription)

Create and maintain bank fee tax entries from the owning bank fee line items.

For more information, read about entering taxable transactions in the Sage Intacct Help Center.

List credit card fee tax entries

get/objects/cash-management/credit-card-fee-tax-entry

Returns a collection with a key, ID, and link for each credit card fee tax entry. 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": "39",
      • "id": "39",
      • "href": "/objects/cash-management/credit-card-fee-tax-entry/39"
      },
    • {
      • "key": "40",
      • "id": "40",
      • "href": "/objects/cash-management/credit-card-fee-tax-entry/40"
      },
    • {
      • "key": "42",
      • "id": "42",
      • "href": "/objects/cash-management/credit-card-fee-tax-entry/42"
      },
    • {
      • "key": "41",
      • "id": "41",
      • "href": "/objects/cash-management/credit-card-fee-tax-entry/41"
      }
    ],
  • "ia::meta": {
    • "totalCount": 4,
    • "start": 1,
    • "pageSize": 100,
    • "next": null,
    • "previous": null
    }
}

Get a credit card fee tax entry

get/objects/cash-management/credit-card-fee-tax-entry/{key}

Returns detailed information for a specified credit card fee tax entry.

SecurityOAuth2
Request
path Parameters
key
required
string

System-assigned unique key for the credit card fee 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,
    • "purchasingTaxDetail": {
      • "id": "UK Export Reduced Rate",
      • "key": "24",
      • "href": "/objects/tax/purchasing-tax-detail/24"
      },
    • "creditCardFeeLine": {
      • "id": "148",
      • "key": "148",
      • "href": "/objects/cash-management/credit-card-fee-line/148"
      },
    • "href": "/objects/cash-management/tax/credit-card-fee-tax-entry/300"
    },
  • "ia::meta": {
    • "totalCount": 1
    }
}