Skip to main content
POST
/
v1
/
emails
/
{id}
/
reply
Reply in-thread
curl --request POST \
  --url https://api.drin.run/v1/emails/{id}/reply \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "html": "<string>",
  "text": "<string>",
  "subject": "<string>"
}
'
{
  "id": "<string>",
  "status": "queued"
}

Documentation Index

Fetch the complete documentation index at: https://docs.drin.run/llms.txt

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

Authorizations

Authorization
string
header
required

Your Drin API key, sent as Authorization: Bearer <key>.

Headers

Idempotency-Key
string

Make a POST safe to retry; honored 24h per project.

Path Parameters

id
string
required

Body

application/json
html
string
text
string
subject
string
from
object

Response

202 - application/json

Reply queued.

id
string
status
string
Example:

"queued"