Skip to main content
POST
/
v1
/
share
/
email
Share analysis via email
curl --request POST \
  --url https://api.ivory.finance/v1/share/email \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "recipients": [
    "<string>"
  ],
  "subject": "<string>",
  "body_html": "<string>",
  "channel_id": 123,
  "smtp_host": "<string>",
  "smtp_port": 587,
  "smtp_user": "<string>",
  "smtp_password": "<string>",
  "email_from": "<string>"
}
'
{
  "sent_to": [
    "<string>"
  ],
  "subject": "<string>",
  "status": "sent"
}

Documentation Index

Fetch the complete documentation index at: https://docs.ivory.finance/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

Body

application/json
recipients
string[]
required
subject
string
required
body_html
string
required
channel_id
integer | null
smtp_host
string | null
smtp_port
integer
default:587
smtp_user
string | null
smtp_password
string | null
email_from
string | null

Response

Successful Response

sent_to
string[]
required
subject
string
required
status
string
default:sent