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 Foundation
import ServiceStack

public class CRMTaxReceiptNoteRequest : Codable
{
    public var guid:String

    required public init(){}
}

public class CRMTaxReceiptNoteResponse : CRMNoteResponse
{
    public var guid:String
    public var receipt_template_name:String
    public var receipt_sent_date:Date?
    public var receipt_email_sent_date:Date?
    public var receipt_email_sent_to:String
    public var salutation:String
    public var first_name:String
    public var last_name:String
    public var receipt_email:String

    required public init(){ super.init() }

    private enum CodingKeys : String, CodingKey {
        case guid
        case receipt_template_name
        case receipt_sent_date
        case receipt_email_sent_date
        case receipt_email_sent_to
        case salutation
        case first_name
        case last_name
        case receipt_email
    }

    required public init(from decoder: Decoder) throws {
        try super.init(from: decoder)
        let container = try decoder.container(keyedBy: CodingKeys.self)
        guid = try container.decodeIfPresent(String.self, forKey: .guid)
        receipt_template_name = try container.decodeIfPresent(String.self, forKey: .receipt_template_name)
        receipt_sent_date = try container.decodeIfPresent(Date.self, forKey: .receipt_sent_date)
        receipt_email_sent_date = try container.decodeIfPresent(Date.self, forKey: .receipt_email_sent_date)
        receipt_email_sent_to = try container.decodeIfPresent(String.self, forKey: .receipt_email_sent_to)
        salutation = try container.decodeIfPresent(String.self, forKey: .salutation)
        first_name = try container.decodeIfPresent(String.self, forKey: .first_name)
        last_name = try container.decodeIfPresent(String.self, forKey: .last_name)
        receipt_email = try container.decodeIfPresent(String.self, forKey: .receipt_email)
    }

    public override func encode(to encoder: Encoder) throws {
        try super.encode(to: encoder)
        var container = encoder.container(keyedBy: CodingKeys.self)
        if guid != nil { try container.encode(guid, forKey: .guid) }
        if receipt_template_name != nil { try container.encode(receipt_template_name, forKey: .receipt_template_name) }
        if receipt_sent_date != nil { try container.encode(receipt_sent_date, forKey: .receipt_sent_date) }
        if receipt_email_sent_date != nil { try container.encode(receipt_email_sent_date, forKey: .receipt_email_sent_date) }
        if receipt_email_sent_to != nil { try container.encode(receipt_email_sent_to, forKey: .receipt_email_sent_to) }
        if salutation != nil { try container.encode(salutation, forKey: .salutation) }
        if first_name != nil { try container.encode(first_name, forKey: .first_name) }
        if last_name != nil { try container.encode(last_name, forKey: .last_name) }
        if receipt_email != nil { try container.encode(receipt_email, forKey: .receipt_email) }
    }
}

public class CRMNoteResponse : Codable
{
    public var subject:String
    public var text:String
    public var owner_first_name:String
    public var owner_last_name:String
    public var file_base64:String
    public var filename:String
    public var filesize:Int
    public var mimetype:String
    public var added_date:Date?

    required public init(){}
}


Swift 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"}