POST | Creates and new email and, if a Collection Attempt is provided add's a note to the attempt |
---|
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
ToEmailAddress | body | string | Yes | The To email address. |
FromEmail | body | string | Yes | The From email address. |
EmailMessage | body | string | Yes | The email Message. |
EmailSubject | body | string | Yes | The email Subject. |
EmailisHtml | body | bool | No | Set to true if the body of EmailMessage is in HTML format |
CollectionAttemptID | body | Guid | No | The collection attempt ID. |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
Success | form | bool | No |
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 /email HTTP/1.1
Host: api.paylock.com
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
toEmailAddress: String,
fromEmail: String,
emailMessage: String,
emailSubject: String,
emailisHtml: False,
collectionAttemptID: 00000000000000000000000000000000
}
HTTP/1.1 200 OK Content-Type: text/jsv Content-Length: length { success: False }