Adjustment lines

Line items in an adjustment represent debits or credits to modify the amount owed by a customer. Create and maintain adjustment lines from the owning adjustment object.

List adjustment lines

get/objects/accounts-receivable/adjustment-line

Returns a collection with a key, ID, and link for each adjustment 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": "2651",
      • "id": "2651",
      • "href": "/objects/accounts-receivable/adjustment-line/2651"
      },
    • {
      • "key": "2563",
      • "id": "2563",
      • "href": "/objects/accounts-receivable/adjustment-line/2563"
      },
    • {
      • "key": "3481",
      • "id": "3481",
      • "href": "/objects/accounts-receivable/adjustment-line/3481"
      }
    ],
  • "ia::meta": {
    • "totalCount": 3,
    • "start": 1,
    • "ageSize": 100,
    • "next": null,
    • "previous": null
    }
}

Get an adjustment line

get/objects/accounts-receivable/adjustment-line/{key}

Returns detailed information for a specified adjustment line.

SecurityOAuth2
Request
path Parameters
key
required
string

System-assigned key for the adjustment line.

Example: 99
Responses
200

OK

400

Bad Request

Request samples
Response samples
application/json
{
  • "ia::result": {
    • "id": "2686",
    • "key": "2686",
    • "arAdjustment": {
      • "id": "288",
      • "key": "288",
      • "href": "/objects/accounts-receivable/adjustment/288"
      },
    • "glAccount": {
      • "key": "254",
      • "id": "6103",
      • "name": "Bonuses",
      • "href": "/objects/general-ledger/account/254"
      },
    • "accountLabel": {
      • "key": "35",
      • "id": "Bonuses",
      • "href": "/objects/accounts-receivable/account-label/35"
      },
    • "baseCurrency": {
      • "amount": "-125.00",
      • "currency": "AUD"
      },
    • "txnCurrency": {
      • "amount": "-125.00",
      • "currency": "AUD"
      },
    • "dimensions": {
      • "department": {
        },
      • "location": {
        },
      • "project": {
        },
      • "customer": {
        },
      • "vendor": {
        },
      • "employee": {
        },
      • "item": {
        },
      • "class": {
        },
      • "warehouse": {
        }
      },
    • "memo": "adjustment one",
    • "exchangeRate": {
      • "date": "2024-09-24",
      • "typeId": "Intacct Daily Rate",
      • "rate": "1"
      },
    • "lineNumber": "1",
    • "adjustmentType": "ra",
    • "isTax": false,
    • "audit": {
      • "createdDateTime": "2024-09-24T13:19:27Z",
      • "modifiedDateTime": "2024-09-24T14:01:12Z",
      • "createdBy": "1",
      • "modifiedBy": "1"
      },
    • "taxEntries": [
      • {
        }
      ],
    • "href": "/objects/accounts-receivable/adjustment-line/2686"
    },
  • "ia::meta": {
    • "totalCount": 1,
    • "totalSuccess": 1,
    • "totalError": 0
    }
}