Customer Emails
On this page
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
| # | Name | Description | Length | Padding Type |
|---|---|---|---|---|
| 1 | AR_NUMBER | The unique accounting identifier assigned to the customer. | 10 | Pad with trailing spaces. |
| 2 | LIST_NUMBER | The ID associated with the contact within the ARCONTCT table. | 4 | Pad with trailing spaces. |
| 3 | UNIQUE | Legacy field. To remain blank. | 1 | Pad with trailing spaces. |
| 4 | E_MAIL_ADDRESS | The contact’s email address. | 60 | Pad with trailing spaces. |
| 5 | DISPLAY_NAME | The name assigned to the contact’s email address. | 60 | Pad 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
}