# st.retrievePersonSkills

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

## Constraints

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

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

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

## Parameters

```json
{
  "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.

```json
{
  "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.
