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>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
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>"
}