WarmablyWarmablyDOCS
Search docs⌘K
Dashboard
API Reference/Endpoints

React to a message

POST/api/linkedin/gateway/messages/{message_id}/reaction

Drops an emoji reaction onto a message, the same way a person tapping-and-holding it in the LinkedIn app would. Supported on LinkedIn as well as WhatsApp, Telegram and Instagram accounts connected to Warmably.

Authentication

Send your personal API key as a bearer token. A missing, malformed or revoked key returns 401.

Path parameters

FieldTypeDescription
message_id *stringThe id of the message to react to.

Body parameters

FieldTypeDescription
account_id *stringThe connected account this message belongs to. Must belong to the calling key.
reaction *stringA single native emoji character, e.g. “👍”.

Response fields

FieldTypeDescription
successbooleanWhether the reaction was applied.

Errors

·401 Unauthorized. The key is missing, malformed or has been rotated.·403 Forbidden. account_id doesn't belong to this key.·404 Not Found. No message exists with that id on that account.
CredentialsRequired
AuthorizationBearer wm_live_••••••••
RequestTry it
curl -X POST https://api.warmably.com/api/linkedin/gateway/messages/wCQ0j9dQXk2QGRLNJ8xE1w/reaction \
  -H "Authorization: Bearer wm_live_..." \
  -H "Content-Type: application/json" \
  -d '{
    "account_id": "459993d2-b0e7-4b19-baf9-45252ca324cf",
    "reaction": "👍"
  }'
Response
200 OK
{
  "object": "MessageReactionAdded",
  "success": true
}
No key yet? Create one from Dashboard → API Keys.