Skip to main content
POST
/
messages
/
{messageId}
/
forward
cURL
curl -X POST 'https://api.nuntly.com/messages/imsg_01kabn43yqyxn2bx4ve84mczd3/forward' \
  -H 'Authorization: Bearer apk_xxx' \
  -H 'Content-Type: application/json' \
  -d '{"to":"brian67@gmail.com","text":"Thank you for signing up! Please verify your email address."}'
{
  "data": {
    "id": "<string>",
    "threadId": "<string>",
    "messageId": "<string>",
    "subject": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Use an API key from https://nuntly.com/dashboard/api-keys. Required on every endpoint.

Headers

Idempotency-Key
string

Unique key to ensure the request is processed at most once. UUIDv4 recommended.

Required string length: 1 - 255

Path Parameters

messageId
string
required

The RFC 5322 Message-ID header.

Body

application/json
to
string[]
required

The recipient addresses to forward to.

Example:

"brian67@gmail.com"

text
string

An optional comment to prepend.

Example:

"Thank you for signing up! Please verify your email address."

Response

Request accepted.

data
object
required