Skip to main content

Actions

st.retrievePersonSkills

This action allows you to retrieve information about a person's skills.

Constraints

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

Paramenters


{
  "actionType": "st.retrievePersonSkills",
  "label": "person1Skills"
}
  • label (optional) – custom label for tracking this action in workflow completion.

Result options

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


{
  "actionType": "st.retrievePersonSkills",
  "label": "person1Skills",
  "success": true,
  "data": [
    { "name": "Computer Science" },
    { "name": "Java" },
    { "name": "Project Management" },
    { "name": "Marketing" }
  ]
}
  • label – included only if specified in the action parameters.
  • data – array of person skills.
    • name – name of the skill.