Skip to main content
POST
/
api
/
v1
/
conversations
/
share
Share Chat
curl --request POST \
  --url https://api.example.com/api/v1/conversations/share \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "conversation_id": "<string>",
  "visibility": "private",
  "recipientEmails": [
    "[email protected]"
  ]
}
'
{
  "message": "<string>",
  "sharedID": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
conversation_id
string
required
visibility
enum<string>
required
Available options:
private,
public
recipientEmails
string<email>[] | null

Response

Successful Response

message
string
required
sharedID
string
required