Skip to main content
POST
/
conversations
/
{id}
/
recipients
Add a recipient to a conversation
curl --request POST \
  --url https://api.getfernand.com/conversations/{id}/recipients \
  --header 'X-API-Key: <api-key>'
{
  "id": 12345,
  "contact_id": 789,
  "kind": "cc",
  "conversation_id": 456
}
🚧 A parsing error occured. Please contact the owner of this website. They can use the Mintlify CLI to test this website locally and see the errors that occur.

Authorizations

X-API-Key
string
header
required

Authenticate your account by including your secret key in API requests. You can manage your API keys in the Dashboard.

Authentication to the API is performed by using the HTTP Header X-API-Key.

Path Parameters

id
integer<int64>
required

ID of the conversation

Query Parameters

email
string<email>
required

Email address of the recipient, optionally with name

Response

Recipient added successfully

id
integer<int64>
required

Unique identifier for the recipient

Example:

12345

contact_id
integer<int64>
required

ID of the contact that is a recipient of this conversation

Example:

789

kind
enum<string>
required

Type of recipient (to, cc, bcc, from, or reply-to)

Available options:
to,
cc,
bcc,
from,
reply-to
Example:

"cc"

conversation_id
integer<int64>
required

ID of the conversation this recipient belongs to

Example:

456