Remove access for specified emails from a conversation.
curl --request DELETE \
--url https://api.example.com/api/v1/conversations/{conversation_id}/access \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"emails": [
"[email protected]"
]
}
'{}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful Response
The response is of type Response Remove Access Api V1 Conversations Conversation Id Access Delete · object.
curl --request DELETE \
--url https://api.example.com/api/v1/conversations/{conversation_id}/access \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"emails": [
"[email protected]"
]
}
'{}