Required role: | REGISUserRole |
POST | /DynamicsCRM/Email | ||
---|---|---|---|
POST | /DynamicsCRM/Email/{guid} |
import java.math.*;
import java.util.*;
import net.servicestack.client.*;
public class dtos
{
public static class CRMEmailRequest
{
public String guid = null;
public String gmail_thread_index = null;
public String getGuid() { return guid; }
public CRMEmailRequest setGuid(String value) { this.guid = value; return this; }
public String getGmailThreadIndex() { return gmail_thread_index; }
public CRMEmailRequest setGmailThreadIndex(String value) { this.gmail_thread_index = value; return this; }
}
public static class CRMEmailResponse
{
public String guid = null;
public String gmail_thread_index = null;
public String subject = null;
public Date changed_date = null;
public String getGuid() { return guid; }
public CRMEmailResponse setGuid(String value) { this.guid = value; return this; }
public String getGmailThreadIndex() { return gmail_thread_index; }
public CRMEmailResponse setGmailThreadIndex(String value) { this.gmail_thread_index = value; return this; }
public String getSubject() { return subject; }
public CRMEmailResponse setSubject(String value) { this.subject = value; return this; }
public Date getChangedDate() { return changed_date; }
public CRMEmailResponse setChangedDate(Date value) { this.changed_date = value; return this; }
}
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /DynamicsCRM/Email HTTP/1.1
Host: data.regent-college.edu
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{"guid":"String","gmail_thread_index":"String"}
HTTP/1.1 200 OK Content-Type: text/jsonl Content-Length: length {"guid":"String","gmail_thread_index":"String","subject":"String","changed_date":"0001-01-01T00:00:00.0000000"}