ClientEmailRuleDto
A rule that associates emails with a client.
The value determines the matching behaviour:
email addresses (contain '@') match that specific participant,
domains (no '@', not a GUID) match all emails from that domain,
message IDs (valid GUID) pin a specific email to this client.
The same value can be a rule for multiple clients.
Properties
| Name | Type | Description |
|---|---|---|
| code | string | The unique code for this rule |
The unique code for this rule | ||
| client | CodeAndNameDto | |
| value | string | The email address, domain, or message ID to match. |
The email address, domain, or message ID to match. | ||
| createdDate | string | When the rule was created |
When the rule was created | ||
| updatedDate | string | When the rule was last updated |
When the rule was last updated | ||
| isAutoAdded | boolean | Whether this rule was automatically added from client/contact email addresses. |
Whether this rule was automatically added from client/contact email addresses. | ||
JSON Example
{
"code": "string",
"client": {
"code": "string",
"name": "string"
},
"value": "string",
"createdDate": "2024-01-01T00:00:00Z",
"updatedDate": "2024-01-01T00:00:00Z"
}