Skip to main content

Actions

st.doForCompanies

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

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

Constraints

⏺️
Root Start: not allowed.
⬆️
Parent Actions: st.searchCompanies.
⬇️
Child Actions: st.openCompanyPage.

Paramenters


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

Result options

This action doesn't produce its own distinct result. The effects are visible in the companies 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. Retrieving basic information about searched companies:

Workflow:


{
  "actionType": "st.searchCompanies",
  "term": "Tech Inc",
  "filter": {
    "sizes": ["51-200", "2001-500"],
    "locations": ["San Francisco", "New York"],
    "industries": ["Software Development", "Robotics Engineering"]
  },
  "then": {
    "actionType": "st.doForCompanies",
    "then": {
      "actionType": "st.openCompanyPage",
      "basicInfo": true
    }
  }
}

Completion:


{
  "actionType": "st.searchCompanies",
  "success": true,
  "data": [
    {
      "name": "TechCorp",
      "publicUrl": "https://www.linkedin.com/company/techcorp",
      "industry": "Information Technology",
      "location": "California",
      "then": {
        "actionType": "st.openCompanyPage",
        "success": true,
        "data": {
          "name": "TechCorp",
          "publicUrl": "https://www.linkedin.com/company/techcorp",
          "description": "TechCorp is a leading provider of innovative technology solutions for businesses worldwide.",
          "location": "California",
          "headquarters": "US",
          "industry": "Information Technology",
          "specialties": "Cloud Computing, AI, Software Development",
          "website": "https://techcorp.com",
          "employeeCount": 500,
          "yearFounded": 2019,
          "ventureFinancing": true,
          "jobsCount": 12
        }
      }
    },
    {
      "name": "Techical Life",
      "publicUrl": "https://www.linkedin.com/company/techlife",
      "industry": "Software Development",
      "location": "Mountain View",
      "then": {
        "actionType": "st.openCompanyPage",
        "success": true,
        "data": {
          "name": "Techical Life",
          "publicUrl": "https://www.linkedin.com/company/techlife",
          "description": "TechLife is a worldwide leader in software development for sustainability.",
          "location": "Mountain View",
          "headquarters": "US",
          "industry": "Software Development",
          "specialties": "Software Development, AI",
          "website": "https://techlife.com",
          "employeeCount": 163,
          "yearFounded": 2016,
          "ventureFinancing": false,
          "jobsCount": 4
        }
      }
    }
  ]
}    
  1. Retrieving decision makers of searched companies:

Workflow:


{
  "actionType": "st.searchCompanies",
  "term": "Tech Inc",
  "filter": {
    "sizes": ["51-200", "2001-500"],
    "locations": ["San Francisco", "New York", "London"],
    "industries": ["Software Development", "Robotics Engineering"]
  },
  "then": {
    "actionType": "st.doForCompanies",
    "then": {
      "actionType": "st.openCompanyPage",
      "then": {
        "actionType": "st.retrieveCompanyDMs"
      }
    }
  }
}

Completion:


{
  "actionType": "st.searchCompanies",
  "success": true,
  "data": [
    {
      "name": "TechCorp",
      "publicUrl": "https://www.linkedin.com/company/techcorp",
      "industry": "Information Technology",
      "location": "California",
      "then": {
        "actionType": "st.openCompanyPage",
        "success": true,
        "data": {
          "then": {
            "actionType": "st.retrieveCompanyDMs"
            "success": true,
            "data": [
              {
                "name": "John Doe",
                "publicUrl": "https://www.linkedin.com/in/johndoe",
                "headline": "Founder of TechCorp",
                "location": "New York, USA",
                "countryCode": "US"
              },
              {
                "name": "Jane Smith",
                "publicUrl": "https://www.linkedin.com/in/janesmith",
                "headline": "CEO at TechCorp",
                "location": "San Francisco, USA",
                "countryCode": "US"
              }
            ]
          }
        }
      }
    },
    {
      "name": "Techical Life",
      "publicUrl": "https://www.linkedin.com/company/techlife",
      "industry": "Software Development",
      "location": "Mountain View",
      "then": {
        "actionType": "st.openCompanyPage",
        "success": true,
        "data": {
          "then": {
            "actionType": "st.retrieveCompanyDMs"
            "success": true,
            "data": [
              {
                "name": "Row Pitterson",
                "publicUrl": "https://www.linkedin.com/in/robby",
                "headline": "Founder of AweSome",
                "location": "London, UK",
                "countryCode": "UK"
              },
              {
                "name": "Angela White",
                "publicUrl": "https://www.linkedin.com/in/anglwiteh",
                "headline": "CEO at FunnyFace Inc.",
                "location": "San Francisco, USA",
                "countryCode": "US"
              }
            ]
          }
        }
      }
    }
  ]
}