Recurring Line Notes

This documentation defines the Recurring Line Notes (ARRECNTS) schema fields.

Please Note This documentation defines the most relevant fields. Treat the response from the View Table Schema (XMGETFMT) endpoint as the authoritative field list for any specific site.

Field definitions

#NameDescriptionLengthPadding Type
1AR_NUMBERThe unique accounting identifier assigned to the customer.10Pad with trailing spaces.
2ACCOUNT_NUMBERThe subscriber account number assigned upon creation.9Pad with trailing spaces.
3BILLING_CODE_LINEThe unique identifier assigned to the line.2Pad with trailing spaces.
4LINE_NOTESMiscellaneous information assigned to the line.No max lengthText field.

Example request

curl --request GET \
--url 'https://global-rest.ci.matrixmcloud.com/rest/rest.php?dataSource=dice&*view=arrecnts&*limit=1&*blanks=all' \
--header 'X-DICE-APPKEY: {{X-DICE-APPKEY}}' \
--header 'X-DICE-USERNAME: {{X-DICE-USERNAME}}' \
--header 'X-DICE-DATE: {{X-DICE-DATE}}' \
--header 'X-DICE-NONCE: {{X-DICE-NONCE}}' \
--header 'X-DICE-DIGEST: {{X-DICE-DIGEST}}' \
--header 'Accept: application/json' \

Example response

{
  "ARRECNTS": [
    {
      "AR_NUMBER": "000117",
      "ACCOUNT_NUMBER": "000004231",
      "BILLING_CODE_LINE": " !",
      "LINE_NOTES": "THIS IS A LINE NOTE ON 4231 ACCOUNT\n"
    }
  ],
  "totalRecords": 1
}