Credit card fee lines

Line items in a credit card fee transaction represent credit card finance charges and other fees applied. Create and maintain credit card fee lines from the owning credit card fee transaction.

List credit card fee lines

get/objects/cash-management/credit-card-fee-line

Returns a collection with a key, ID, and link for each credit card fee line. 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": "1717",
      • "id": "1717",
      • "href": "/objects/credit-card-fee-line/1717"
      },
    • {
      • "key": "1718",
      • "id": "1718",
      • "href": "/objects/credit-card-fee-line/1718"
      },
    • {
      • "key": "1719",
      • "id": "1719",
      • "href": "/objects/credit-card-fee-line/1719"
      }
    ],
  • "ia::meta": {
    • "totalCount": 3,
    • "start": 1,
    • "pageSize": 100,
    • "next": null,
    • "previous": null
    }
}

Get a credit card fee line

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

Returns detailed information for a specified credit card fee line.

SecurityOAuth2
Request
path Parameters
key
required
string

System-assigned unique key for the credit card fee line.

Example: 134
Responses
200

OK

400

Bad Request

Request samples
Response samples
application/json
{
  • "ia::result": {
    • "id": "2955",
    • "key": "2955",
    • "creditCardFee": {
      • "id": "563",
      • "key": "563",
      • "href": "/objects/cash-management/credit-card-fee/563"
      },
    • "glAccount": {
      • "key": "346",
      • "id": "7509.03",
      • "name": "Exchange Gain / Loss Account on Net Assets- AR",
      • "href": "/objects/general-ledger/account/346"
      },
    • "apAccountLabel": {
      • "key": null,
      • "id": null
      },
    • "baseAmount": "14.50",
    • "txnAmount": "14.50",
    • "dimensions": {
      • "department": {
        },
      • "location": {
        },
      • "project": {
        },
      • "customer": {
        },
      • "vendor": {
        },
      • "employee": {
        },
      • "item": {
        },
      • "class": {
        }
      },
    • "baseLocation": {
      • "name": "Richmond District",
      • "key": "65",
      • "href": "/objects/company-config/location/65"
      },
    • "description": "CC fee charge",
    • "currency": {
      • "txnCurrency": "USD",
      • "baseCurrency": "USD"
      },
    • "status": "active",
    • "audit": {
      • "createdDateTime": "2025-04-11T12:56:46Z",
      • "modifiedDateTime": "2025-04-11T12:56:46Z",
      • "createdByUser": {
        },
      • "createdBy": "159",
      • "modifiedByUser": {
        },
      • "modifiedBy": "159"
      },
    • "href": "/objects/cash-management/credit-card-fee-line/2955"
    },
  • "ia::meta": {
    • "totalCount": 1,
    • "totalSuccess": 1,
    • "totalError": 0
    }
}