Skip to main content

send Email without customer reference

send Email without customer reference

Path Parameters
    departmentUUID string required
Request Body required
    sendEmailRequest object[]
  • Array [
  • fromName string
    fromEmail string
    toList string
    ccList string
    bccList string
    subject string
    message string
    useDealerEmailCredentials boolean
    attachmentUrlAndNameMap object
    property name* string
    reference string
    messagePurposeUuid string deprecated
    messagePurposeKey string
  • ]
  • messageSendingAttributesLite object
    delay int32
    sendSynchronously boolean
    callBackUrl string
    callBackMetadata object
    property name* string
Responses

OK


Schema
    status string

    Possible values: [SUCCESS, FAILURE]

    requestUUID string
    errors object[]
  • Array [
  • errorCode string
    errorDescription string
    errorUID string
  • ]
  • warnings object[]
  • Array [
  • warningCode string
    warningDescription string
  • ]
POST /department/:departmentUUID/email

Authorization

name: basicAuthtype: httpscheme: basic

Request

Base URL
/communications
Username
Password
departmentUUID — path required
Body required
{
"sendEmailRequest": [
{
"fromName": "string",
"fromEmail": "string",
"toList": "string",
"ccList": "string",
"bccList": "string",
"subject": "string",
"message": "string",
"useDealerEmailCredentials": true,
"attachmentUrlAndNameMap": {},
"reference": "string",
"messagePurposeKey": "string"
}
],
"messageSendingAttributesLite": {
"delay": 0,
"sendSynchronously": true,
"callBackUrl": "string",
"callBackMetadata": {}
}
}
curl / cURL
curl -L -X POST '/communications/department/:departmentUUID/email' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"sendEmailRequest": [
{
"fromName": "string",
"fromEmail": "string",
"toList": "string",
"ccList": "string",
"bccList": "string",
"subject": "string",
"message": "string",
"useDealerEmailCredentials": true,
"attachmentUrlAndNameMap": {},
"reference": "string",
"messagePurposeKey": "string"
}
],
"messageSendingAttributesLite": {
"delay": 0,
"sendSynchronously": true,
"callBackUrl": "string",
"callBackMetadata": {}
}
}'