Skip to main content

Actions

st.doForPosts

This action allows you to apply the actions specified in its then parameter to each post provided by the parent action.

There is a limit of 20 posts that this action can be applied to. If the parent action provides more than 20 posts, only the first 20 will be processed.

Constraints

⏺️
Root Start: not allowed.

Paramenters


{
  "actionType": "st.doForPosts",
  "then": { ... }
}
  • then – object or array of child actions to apply to each post from the parent action.

Result options

This action doesn't produce its own distinct result. The effects are visible in the posts that were involved, as they will contain a then field with the results of the applied actions. See usage examples for more details.

Usage examples

  1. Liking the latest 3 posts from the company:

Workflow:


{
  "actionType": "st.openCompanyPage",
  "companyUrl": "https://www.linkedin.com/company/company1",
  "then": {
    "actionType": "st.retrieveCompanyPosts",
    "limit": 3,
    "then": {
      "actionType": "st.doForPosts",
      "then": {
        "actionType": "st.reactToPost",
        "type": "like"
      }
    }
  }
}

Completion:



{
  "actionType": "st.openCompanyPage",
  "success": true,
  "data": {
    ...
    "then": {
      "actionType": "st.retrieveCompanyPosts",
      "success": true,
      "data": [
        {
          ...
          "then": {
            "actionType": "st.reactToPost",
            "success": true
          }
        },
        {
          ...
          "then": {
            "actionType": "st.reactToPost",
            "success": true
          }
        },
        {
          ...
          "then": {
            "actionType": "st.reactToPost",
            "success": true
          }
        }
      ]
    }
  }
}
  1. Commenting on the person's latest post:

Workflow:


{
  "actionType": "st.openPersonPage",
  "companyUrl": "https://www.linkedin.com/in/person1",
  "then": {
    "actionType": "st.retrievePersonPosts",
    "limit": 1,
    "then": {
      "actionType": "st.doForPosts",
      "then": {
        "actionType": "st.commentOnPost",
        "text": "Great post! Thanks for sharing."
      }
    }
  }
}

Completion:


{
  "actionType": "st.openPersonPage",
  "success": true,
  "data": {
    ...
    "then": {
      "actionType": "st.retrievePersonPosts",
      "success": true,
      "data": [
        {
          ...
          "then": {
            "actionType": "st.commentOnPost",
            "success": true
          }
        }
      ]
    }
  }
}