Recurring Expiration Overrides

This documentation defines the Recurring Expiration Overrides (ARSUBEXP) 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.

Date formats

NTD is a timestamp format used by DICE. NTD dates are used when defining time frames within endpoint calls. See the Date Format documentation for information on converting NTD to UNIX and vice versa if needed.

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.9Right justify data and pad with leading spaces.
3BILLING_CODE_LINEThe unique identifier assigned to the line.2Pad with trailing spaces.
4EXPIRATION_DATEThe expiration date based on the contract code term assigned to the recurring line.6Pad with trailing spaces.
5WARRANTY_EXPThe expiration date based on the warranty code term for the recurring line.6Pad with trailing spaces.
6OVERRIDE_EXP_DATEDetermines whether the default expiration date should be overridden by an alternate date. Accepts: Y or N.1Pad with trailing spaces.
7OVERRIDE_WARN_EXPDetermines whether the default warranty expiration date should be overridden by an alternate date. Accepts: Y or N.1Pad with trailing spaces.

Example request

curl --request GET \
--url 'https://global-rest.ci.matrixmcloud.com/rest/rest.php?dataSource=dice&*view=arsubexp&*limit=100&*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

{
  "ARSUBEXP": [
    {
      "AR_NUMBER": "000180",
      "ACCOUNT_NUMBER": "   010754",
      "BILLING_CODE_LINE": " !",
      "EXPIRATION_DATE": "04/30/25",
      "WARRANTY_EXP": "01/01/18",
      "OVERRIDE_EXP_DATE": "",
      "OVERRIDE_WARN_EXP": ""
    }
  ],
  "totalRecords": 1
}