web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :

Send Emails using WebApi in MS CRM

Community Member Profile Picture Community Member

Introduction:

This blog explains how to Send Emails using WebApi in MS CRM.

Request:

Post URL:  <your instance url>/api/data/v9.1/ emails (<guid of the email record>)/Microsoft.Dynamics.CRM.SendEmail

Header:

Content-Type: application/json

Parameter To be send in body:

Parameter Value Comment
IssueSend False If value is set as false, then email is market as sent only in MS CRM.
IssueSend True If value is set as true, then email is sent and as well as marked as sent in MS CRM.

Body:

 {
       "IssueSend": "true"
 }

Response:

The post Send Emails using WebApi in MS CRM appeared first on .

Comments

*This post is locked for comments