Required role: | REGISUserRole |
POST | /DynamicsCRM/Donation/{guid}/Note |
---|
import java.math.*;
import java.util.*;
import net.servicestack.client.*;
public class dtos
{
public static class CRMDonationNoteRequest
{
public String guid = null;
public String getGuid() { return guid; }
public CRMDonationNoteRequest setGuid(String value) { this.guid = value; return this; }
}
public static class CRMDonationNoteResponse extends CRMNoteResponse
{
public String first_name = null;
public String last_name = null;
public String getFirstName() { return first_name; }
public CRMDonationNoteResponse setFirstName(String value) { this.first_name = value; return this; }
public String getLastName() { return last_name; }
public CRMDonationNoteResponse setLastName(String value) { this.last_name = value; return this; }
}
public static class CRMNoteResponse
{
public String subject = null;
public String text = null;
public String owner_first_name = null;
public String owner_last_name = null;
public String file_base64 = null;
public String filename = null;
public Integer filesize = null;
public String mimetype = null;
public Date added_date = null;
public String getSubject() { return subject; }
public CRMNoteResponse setSubject(String value) { this.subject = value; return this; }
public String getText() { return text; }
public CRMNoteResponse setText(String value) { this.text = value; return this; }
public String getOwnerFirstName() { return owner_first_name; }
public CRMNoteResponse setOwnerFirstName(String value) { this.owner_first_name = value; return this; }
public String getOwnerLastName() { return owner_last_name; }
public CRMNoteResponse setOwnerLastName(String value) { this.owner_last_name = value; return this; }
public String getFileBase64() { return file_base64; }
public CRMNoteResponse setFileBase64(String value) { this.file_base64 = value; return this; }
public String getFilename() { return filename; }
public CRMNoteResponse setFilename(String value) { this.filename = value; return this; }
public Integer getFilesize() { return filesize; }
public CRMNoteResponse setFilesize(Integer value) { this.filesize = value; return this; }
public String getMimetype() { return mimetype; }
public CRMNoteResponse setMimetype(String value) { this.mimetype = value; return this; }
public Date getAddedDate() { return added_date; }
public CRMNoteResponse setAddedDate(Date value) { this.added_date = value; return this; }
}
}
Java CRMDonationNoteRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /DynamicsCRM/Donation/{guid}/Note HTTP/1.1
Host: data.regent-college.edu
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
guid: String
}
HTTP/1.1 200 OK Content-Type: text/jsv Content-Length: length { first_name: String, last_name: String, subject: String, text: String, owner_first_name: String, owner_last_name: String, file_base64: String, filename: String, filesize: 0, mimetype: String, added_date: 0001-01-01 }