Facebook Pixel
APILinkedIn Messaging

React or unreact to a message

Add or remove an emoji reaction on a message. The reaction is applied on LinkedIn first; other connected clients/tabs are notified via WebSocket. Set react=true to add the reaction, react=false to remove it.

POST/conversations/{conversationUrn}/messages/{messageUrn}/react
Authentication requiredConversations

Code Examples

curl -X POST 'https://api.connectsafely.ai/linkedin/conversations/<conversationUrn>/messages/<messageUrn>/react' \
-H 'Authorization: Bearer <your_api_key>' \
-H 'Content-Type: application/json' \
-d '{"emoji":"example_value","react":false}'

Add or remove an emoji reaction on a message. The reaction is applied on LinkedIn first; other connected clients/tabs are notified via WebSocket. Set react=true to add the reaction, react=false to remove it.

Parameters

NameInRequiredTypeDescription
conversationUrnpathYesstringConversation URN (URL-encoded)
messageUrnpathYesstringURN of the message to react to (URL-encoded)
accountIdqueryNostringLinkedIn account ID

Request Body

FieldTypeRequiredDescription
emojistringYesEmoji to react with (e.g., "👍")
reactbooleanYestrue to add the reaction, false to remove it

Example

{
  "emoji": "example_value",
  "react": false
}

Responses

StatusDescription
200Reaction applied
400Reaction failed
401Unauthorized
404Account not found
500Server error

200 Response Parameters

NameTypeDescription
successboolean
messageUrnstring
emojistring
reactboolean

200 Example

{
  "success": true,
  "messageUrn": "Hello! I would like to connect with you.",
  "emoji": "example_value",
  "react": true
}

400 Response Parameters

NameTypeDescription
errorstring

400 Example

{
  "error": "example_value"
}

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"
}