Customer Emails

This documentation defines the Customer Emails (DCEMLCUS) 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.
2LIST_NUMBERThe ID associated with the contact within the ARCONTCT table.4Pad with trailing spaces.
3UNIQUELegacy field. To remain blank.1Pad with trailing spaces.
4E_MAIL_ADDRESSThe contact’s email address.60Pad with trailing spaces.
5DISPLAY_NAMEThe name assigned to the contact’s email address.60Pad with trailing spaces.

Example request

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

{
  "DCEMLCUS": [
    {
      "AR_NUMBER": "    KMN01~",
      "LIST_NUMBER": "10",
      "UNIQUE": "\"",
      "E_MAIL_ADDRESS": "katherine.james@example.com",
      "DISPLAY_NAME": "Katherine James"
    }
  ],
  "totalRecords": 1
}