Skip to main content
POST
/
api
/
Conversation
/
email
Receives and replies to emails using AI
curl --request POST \
  --url https://api.example.com/api/Conversation/email \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "from": "<string>",
  "body": "<string>",
  "to": "<string>",
  "subject": "<string>"
}
'

Authorizations

Authorization
string
header
required

Fill the JWT token. Bearer {your_token}

Body

from
string | null
body
string | null
to
string | null
subject
string | null

Response

200

Message processed successfully.