POST CustomerReturn/Email
Emails the specified Customer Return.
Request Information
URI Parameters
None.
Body Parameters
The request.
Email Request Model| Name | Type | Additional information | Description |
|---|---|---|---|
| ID | integer |
None. |
Document id. |
| EmailAddress | string |
None. |
If you enter multiple email addresses please separate each email address with a semi-colon(;) with no spaces in between. |
| CCAddress | string |
None. |
If you enter multiple email addresses please separate each email address with a semi-colon(;) with no spaces in between. |
| BCCAddress | string |
None. |
If you enter multiple email addresses please separate each email address with a semi-colon(;) with no spaces in between. |
| Subject | string |
None. |
The email subject line. |
| Message | string |
None. |
The message that will appear in the email body. |
| Attachments | Collection of Pair of string [key] and string [value] |
None. |
Set both Key and Value to the file GUID of the file you want to attach. |
Request Formats
application/json, text/json
Sample:
{
"ID": 1,
"EmailAddress": "sample string 2",
"CCAddress": "sample string 3",
"BCCAddress": "sample string 4",
"Subject": "sample string 5",
"Message": "sample string 6",
"Attachments": [
{
"Key": "sample string 1",
"Value": "sample string 2"
},
{
"Key": "sample string 1",
"Value": "sample string 2"
}
]
}
Response Information
Resource Description
None.