# React to a post

### React to a post

`POST /api/v1/linkedin/posts/{postId}/reactions`

Operation ID: `reactToLinkedinPost`

Adds a reaction to a post, or to a comment when commentId is given. Defaults to like.

**Request body** (required)

- `connectedAccountId` (string · uuid, required): Connected account to act as
- `reaction` ("like" | "celebrate" | "support" | "love" | "insightful" | "funny", optional): Defaults to like.
- `commentId` (string, optional): React to this comment instead of the post.

**201**: Reaction result.

- `remainingToday` (integer, required): Remaining daily allowance for this action on the connected account. Each action type has its own limit.

**Errors**

- `400`: Bad request
- `401`: Unauthorized: missing or invalid API key
- `403`: Forbidden
- `404`: Not found
- `422`: Invalid request payload
