Skip to main content
GET
/
conversations
/
{id}
/
recipients
List all recipients for a conversation
curl --request GET \
  --url https://api.getfernand.com/conversations/{id}/recipients \
  --header 'X-API-Key: <api-key>'
[
  {
    "id": 12345,
    "contact_id": 789,
    "kind": "cc",
    "conversation_id": 456
  }
]
Retrieves all recipients (to, cc, bcc, reply-to) associated with a specific conversation. Recipients are contacts who are part of the conversation thread and will receive messages sent to it.

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

Response

List of recipients retrieved 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