Star a conversation
Add LinkedIn's STARRED category to a conversation (synced to LinkedIn first as the source of truth) and persist it locally. The account is resolved from the conversation. Other connected clients/tabs are notified via WebSocket.
/conversations/{conversationUrn}/starCode Examples
curl -X PATCH 'https://api.connectsafely.ai/linkedin/conversations/<conversationUrn>/star' \ -H 'Authorization: Bearer <your_api_key>'Add LinkedIn's STARRED category to a conversation (synced to LinkedIn first as the source of truth) and persist it locally. The account is resolved from the conversation. Other connected clients/tabs are notified via WebSocket.
Parameters
| Name | In | Required | Type | Description |
|---|---|---|---|---|
conversationUrn | path | Yes | string | Conversation URN (URL-encoded) |
Request Body
No request body.
Responses
| Status | Description |
|---|---|
| 200 | Conversation starred |
| 401 | Unauthorized |
| 404 | Conversation or account not found |
| 500 | Server error |
200 Response Parameters
| Name | Type | Description |
|---|---|---|
success | boolean | |
conversationUrn | string |
200 Example
{
"success": true,
"conversationUrn": "urn:li:example:123456"
}401 Response Parameters
| Name | Type | Description |
|---|---|---|
error | string |
401 Example
{
"error": "example_value"
}404 Response Parameters
| Name | Type | Description |
|---|---|---|
error | string |
404 Example
{
"error": "example_value"
}500 Response Parameters
| Name | Type | Description |
|---|---|---|
error | string |
500 Example
{
"error": "example_value"
}Mark a conversation as unread
Mark a conversation as unread on LinkedIn (source of truth) and locally. The account is resolved from the conversation, so no accountId is required. Other connected clients/tabs are notified via WebSocket.
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.
