digitaluapi

<back to all web services

SendGridSingleMailRequest

Requires Authentication
Requires any of the roles:Client, Admin, Partner
The following routes are available for this service:
All Verbs/sendmail/sendgrid/single
import java.math.*
import java.util.*
import java.io.InputStream
import net.servicestack.client.*


open class SendGridSingleMailRequest
{
    open var To:EmailAddress? = null
    open var Subject:String? = null
    open var TemplateId:String? = null
    open var ReplyToEmail:EmailAddress? = null
    open var FromEmail:EmailAddress? = null
    open var PlaintText:String? = null
    open var HtmlText:String? = null
    open var APIKey:String? = null
}

open class EmailAddress
{
    open var Name:String? = null
    open var Email:String? = null
}

Kotlin SendGridSingleMailRequest DTOs

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

To embed the response in a jsonp callback, append ?callback=myCallback

HTTP + JSON

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

POST /sendmail/sendgrid/single HTTP/1.1 
Host: duengageapi.uat.scadsoftware.com 
Accept: application/json
Content-Type: application/json
Content-Length: length

{"To":{"Name":"String","Email":"String"},"Subject":"String","TemplateId":"String","ReplyToEmail":{"Name":"String","Email":"String"},"FromEmail":{"Name":"String","Email":"String"},"PlaintText":"String","HtmlText":"String","APIKey":"String"}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

{}