Skip to main content
POST
/
notifications
/
emails
/
send
Send transactional email
curl --request POST \
  --url https://api.example.com/notifications/emails/send \
  --header 'Content-Type: application/json' \
  --data '
{
  "templateId": "<string>",
  "identifier": "<string>",
  "receiverEmails": [
    "<string>"
  ],
  "attachments": [
    {
      "name": "<string>",
      "data": "<string>"
    }
  ],
  "messageData": [
    {
      "key": "<string>",
      "value": "<string>"
    }
  ],
  "bccEmail": "<string>"
}
'
{
  "title": "INVALID_PRODUCT"
}

Body

application/json
templateId
string
required
identifier
string
required
receiverEmails
string[]
required
attachments
object[]
required
Maximum array length: 5
messageData
object[]
required
Maximum array length: 20
bccEmail
string

Response

400 - application/json
code
enum<string>
required
Available options:
INVALID_PRODUCT
message
string
required
Example:

"Invalid product {product}"

details
object
required