Last active
December 24, 2018 10:58
-
-
Save AshV/25248b1c4ad7db19567eec756ba0d7c7 to your computer and use it in GitHub Desktop.
Email with CRM records available or without(directly using email Id) | Microsoft Dynamics 365 Sample
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"[email protected]": "/contacts(<regarding contact record guid>)", | |
"subject": "Email Subject", | |
"description": "Email Description", | |
"email_activity_parties": [ | |
{ | |
"[email protected]": "/systemusers(<from system user record guid>)", | |
"participationtypemask": 1 | |
}, | |
{ | |
"[email protected]": "/contacts(<to contact record guid>)", | |
"participationtypemask": 2 | |
}, | |
{ | |
"addressused": "<Cc email id>", | |
"participationtypemask": 3 | |
}, | |
{ | |
"addressused": "<Bcc email id>", | |
"participationtypemask": 4 | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment