Recurring Line Notes
On this page
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
| # | Name | Description | Length | Padding Type |
|---|---|---|---|---|
| 1 | AR_NUMBER | The unique accounting identifier assigned to the customer. | 10 | Pad with trailing spaces. |
| 2 | ACCOUNT_NUMBER | The subscriber account number assigned upon creation. | 9 | Pad with trailing spaces. |
| 3 | BILLING_CODE_LINE | The unique identifier assigned to the line. | 2 | Pad with trailing spaces. |
| 4 | LINE_NOTES | Miscellaneous information assigned to the line. | No max length | Text 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
}