WarmablyWarmablyDOCS
Search docs⌘K
Dashboard
API Reference/Endpoints

React to a post

POST/api/linkedin/gateway/posts/reaction

Leaves a reaction on a post, or, with comment_id set, on a comment instead.

Authentication

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

Body parameters

FieldTypeDescription
account_id *stringA connected account's id.
post_id *stringThe post's social_id, not necessarily the id visible in its URL.
comment_idstringReact to this comment instead of the post itself.
as_organizationstringLinkedIn only. React on behalf of a company page this account manages.
reaction_type"like" | "celebrate" | "support" | "love" | "insightful" | "funny"Defaults to like. On Instagram, only like is available.

Response fields

FieldTypeDescription
object"ReactionAdded"Always this value.

Errors

·400 Bad Request. account_id or post_id is missing.·401 Unauthorized. The key is missing, malformed or has been rotated.·403 Forbidden. The account_id doesn't belong to this key.·404 Not Found. No post — or, if comment_id was set, no comment — exists for that id.
CredentialsRequired
AuthorizationBearer wm_live_••••••••
RequestTry it
curl -X POST https://api.warmably.com/api/linkedin/gateway/posts/reaction \
  -H "Authorization: Bearer wm_live_..." \
  -H "Content-Type: application/json" \
  -d '{
    "account_id": "459993d2-b0e7-4b19-baf9-45252ca324cf",
    "post_id": "7123456789012345678",
    "reaction_type": "celebrate"
  }'
Response
201 Created
{
  "object": "ReactionAdded"
}
No key yet? Create one from Dashboard → API Keys.