Skip to main content
POST
/
v1
/
api
/
email
/
messages
/
{id}
/
reply
Send an email reply
curl --request POST \
  --url https://api.hq.zone/v1/api/email/messages/{id}/reply \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "text": "<string>",
  "html": "<string>"
}
'
{
  "ok": true,
  "handling_state": "<string>",
  "note": "<string>"
}

Authorizations

Authorization
string
header
required

Personal Access Token. Send as Authorization: Bearer hq_pat_....

Path Parameters

id
string<uuid>
required

Email message id

Body

application/json
text
string
required
html
string | null

Response

Reply sent; item settled to handled

ok
boolean
required
handling_state
string | null
note
string | null