Facebook Pixel
APILinkedIn Messaging

Unstar a conversation

Remove LinkedIn's STARRED category from a conversation (synced to LinkedIn first as the source of truth) and clear it locally. The account is resolved from the conversation. Other connected clients/tabs are notified via WebSocket.

PATCH/conversations/{conversationUrn}/unstar
Authentication requiredConversations

Code Examples

curl -X PATCH 'https://api.connectsafely.ai/linkedin/conversations/<conversationUrn>/unstar' \
-H 'Authorization: Bearer <your_api_key>'

Remove LinkedIn's STARRED category from a conversation (synced to LinkedIn first as the source of truth) and clear it locally. The account is resolved from the conversation. Other connected clients/tabs are notified via WebSocket.

Parameters

NameInRequiredTypeDescription
conversationUrnpathYesstringConversation URN (URL-encoded)

Request Body

No request body.

Responses

StatusDescription
200Conversation unstarred
401Unauthorized
404Conversation or account not found
500Server error

200 Response Parameters

NameTypeDescription
successboolean
conversationUrnstring

200 Example

{
  "success": true,
  "conversationUrn": "urn:li:example:123456"
}

401 Response Parameters

NameTypeDescription
errorstring

401 Example

{
  "error": "example_value"
}

404 Response Parameters

NameTypeDescription
errorstring

404 Example

{
  "error": "example_value"
}

500 Response Parameters

NameTypeDescription
errorstring

500 Example

{
  "error": "example_value"
}