regis

<back to all web services

CRMTaxReceiptNoteRequest

Requires Authentication
Required role:REGISUserRole
The following routes are available for this service:
POST/DynamicsCRM/TaxReceipt/{guid}/Note
import java.math.*;
import java.util.*;
import net.servicestack.client.*;

public class dtos
{

    public static class CRMTaxReceiptNoteRequest
    {
        public String guid = null;
        
        public String getGuid() { return guid; }
        public CRMTaxReceiptNoteRequest setGuid(String value) { this.guid = value; return this; }
    }

    public static class CRMTaxReceiptNoteResponse extends CRMNoteResponse
    {
        public String guid = null;
        public String receipt_template_name = null;
        public Date receipt_sent_date = null;
        public Date receipt_email_sent_date = null;
        public String receipt_email_sent_to = null;
        public String salutation = null;
        public String first_name = null;
        public String last_name = null;
        public String receipt_email = null;
        
        public String getGuid() { return guid; }
        public CRMTaxReceiptNoteResponse setGuid(String value) { this.guid = value; return this; }
        public String getReceiptTemplateName() { return receipt_template_name; }
        public CRMTaxReceiptNoteResponse setReceiptTemplateName(String value) { this.receipt_template_name = value; return this; }
        public Date getReceiptSentDate() { return receipt_sent_date; }
        public CRMTaxReceiptNoteResponse setReceiptSentDate(Date value) { this.receipt_sent_date = value; return this; }
        public Date getReceiptEmailSentDate() { return receipt_email_sent_date; }
        public CRMTaxReceiptNoteResponse setReceiptEmailSentDate(Date value) { this.receipt_email_sent_date = value; return this; }
        public String getReceiptEmailSentTo() { return receipt_email_sent_to; }
        public CRMTaxReceiptNoteResponse setReceiptEmailSentTo(String value) { this.receipt_email_sent_to = value; return this; }
        public String getSalutation() { return salutation; }
        public CRMTaxReceiptNoteResponse setSalutation(String value) { this.salutation = value; return this; }
        public String getFirstName() { return first_name; }
        public CRMTaxReceiptNoteResponse setFirstName(String value) { this.first_name = value; return this; }
        public String getLastName() { return last_name; }
        public CRMTaxReceiptNoteResponse setLastName(String value) { this.last_name = value; return this; }
        public String getReceiptEmail() { return receipt_email; }
        public CRMTaxReceiptNoteResponse setReceiptEmail(String value) { this.receipt_email = 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 CRMTaxReceiptNoteRequest DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other

HTTP + OTHER

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /DynamicsCRM/TaxReceipt/{guid}/Note HTTP/1.1 
Host: data.regent-college.edu 
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length

{"guid":"String"}
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length

{"guid":"String","receipt_template_name":"String","receipt_sent_date":"0001-01-01T00:00:00.0000000","receipt_email_sent_date":"0001-01-01T00:00:00.0000000","receipt_email_sent_to":"String","salutation":"String","first_name":"String","last_name":"String","receipt_email":"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-01T00:00:00.0000000"}