# st.retrievePersonReactions

This action allows you to retrieve reactions made by a person.

## Constraints

> ⏺️ **Root Start:** not allowed.

> ⬆️ **Parent Actions:** [st.openPersonPage](/docs/action-st-open-person-page).

> ⬇️ **Child Actions:** N/A.

## Parameters

```json
{
  "actionType": "st.retrievePersonReactions",
  "label": "person1Reactions",
  "limit": 10,
  "since": "2023-01-01T00:00:00Z"
}
```

- `label` (optional) – custom label for tracking this action in workflow completion.
- `limit` (optional) – number of reaction to retrieve. Defaults to **20**, with a maximum value of **20**.
- `since` (optional) – timestamp to filter reactions made after the specified time.

**Note**: both `limit` and `since` conditions are applied simultaneously. For example:

- If `limit` is 10, but there are more than 10 reactions since the specified timestamp, only 10 reactions will be returned.
- If `limit` is 15, but only 5 reactions exist after the specified timestamp, only those 5 reactions will be returned.

## Result options

This action always completes successfully. Even if the person has no reactions, it returns an empty array.

```json
{
  "actionType": "st.retrievePersonReactions",
  "label": "person1Reactions",
  "success": true,
  "data": [
    {
      "postUrl": "https://www.linkedin.com/posts/example1",
      "time": "2023-01-02T12:30:00Z",
      "type": "like"
    },
    {
      "postUrl": "https://www.linkedin.com/posts/example2",
      "time": "2023-01-03T12:30:00Z",
      "type": "celebrate"
    }
  ]
}
```

- `label` – included only if specified in the action parameters.
- `data` – array of person reactions.
  - `postUrl` – URL of the post the reaction belongs to.
  - `time` – timestamp when the reaction was made.
  - `type` – enum describing the reaction type. May take one of the following values:
    - `like` – standard "like".
    - `celebrate` – celebrates an achievement.
    - `support` – shows support.
    - `love` – expresses love or admiration.
    - `insightful` – appreciates insightful content.
    - `funny` – reacts to something humorous.
