# st.retrievePersonEducation

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

## Constraints

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

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

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

## Parameters

```json
{
  "actionType": "st.retrievePersonEducation",
  "label": "person1Education"
}
```

- `label` (optional) – custom label for tracking this action in workflow completion.

## Result options

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

```json
{
  "actionType": "st.retrievePersonEducation",
  "label": "person1Education",
  "success": true,
  "data": [
    {
      "schoolName": "Harvard University",
      "schoolHashedUrl": "https://www.linkedin.com/company/12345678",
      "details": "Master of Science in Computer Science, Artificial Intelligence"
    },
    {
      "schoolName": "MIT",
      "schoolHashedUrl": "https://www.linkedin.com/company/87654321",
      "details": "Bachelor of Science in Electrical Engineering and Computer Science"
    }
  ]
}
```

- `label` – included only if specified in the action parameters.
- `data` – array of person education records.
  - `schoolName` – name of the institution.
  - `schoolHashedUrl` – [hashed](/faq/what-are-hashed-url-and-public-url) LinkedIn URL of the institution.
  - `details` – information about the person's education, such as the degree, major, field of study, and other related details.
