Skip to main content

Actions

retrievePersonComments

This action allows you to retrieve comments left by a person.

Constraints

⏺️
Root Start: not allowed.
⬆️
Parent Actions: openPersonPage.
⬇️
Child Actions: N/A.

Paramenters


{
  "actionType": "retrievePersonComments",
  "label": "person1Comments",
  "limit": 10,
  "since": "2023-01-01T00:00:00Z"
}
  • label (optional) – custom label for tracking this action in workflow completion.
  • limit (optional) – number of comments to retrieve. Defaults to 20, with a maximum value of 20.
  • since (optional) – timestamp to filter comments 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 comments since the specified timestamp, only 10 reactions will be returned.
  • If limit is 15, but only 5 comments 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 comments, it returns an empty array.


{
  "actionType": "retrievePersonComments",
  "label": "person1Comments",
  "success": true,
  "data": [
    {
      "postUrl": "https://www.linkedin.com/posts/example1",
      "time": "2023-01-02T10:30:00Z",
      "text": "Great work!",
      "image": null,
      "reactionCount": 3
    },
    {
      "postUrl": "https://www.linkedin.com/posts/example2",
      "time": "2023-01-03T10:30:00Z",
      "text": "Feeling the same :)",
      "image": "https://static.linkedin.com/image1.jpg",
      "reactionCount": 0
    }
  ]
}
  • label – included only if specified in the action parameters.
  • data – array of person comments.
    • postUrl – URL of the post the comment belongs to.
    • time – timestamp when the comment was left.
    • text – text content of the comment, if available.
    • image – URL of the comment's image, if available.
    • reactionCount – number of reactions on the comment.