Skip to main content
POST
/
integrations
/
email
/
send
Send Email
curl --request POST \
  --url https://api.{your-broker}.slate-labs.com/integrations/email/send \
  --header 'Content-Type: application/json' \
  --data '
{
  "to": "<string>",
  "subject": "<string>",
  "body_html": "<string>",
  "body_text": "<string>",
  "from_email": "<string>",
  "from_name": "<string>",
  "reply_to": "<string>",
  "cc": [
    "<string>"
  ],
  "bcc": [
    "<string>"
  ],
  "tags": {},
  "customer_id": "<string>",
  "event_type": "<string>"
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Body

application/json
to
string
required
subject
string
required
body_html
string | null
body_text
string | null
from_email
string | null
from_name
string | null
reply_to
string | null
cc
string[] | null
bcc
string[] | null
tags
Tags · object
customer_id
string | null
event_type
string | null

Response

Successful Response