Retrieving SSI, performance
This page describes how to create workflows for retrieving your current SSI and performance analytics from your LinkedIn dashboard.
Retrieving current SSI
To retrieve your current SSI, you need to include st.retrieveSSI
action in your workflow. Here's an example:
Workflow:
{
"actionType": "st.retrieveSSI"
}
Completion:
{
"actionType": "st.retrieveSSI",
"success": true,
"data": {
"ssi": 78,
"industryTop": 15,
"networkTop": 10
}
}
Retrieving performance
To retrieve performance analytics from your LinkedIn dashboard, you need to include st.retrievePerformance
action in your workflow. Here's an example:
Workflow:
{
"actionType": "st.retrievePerformance"
}
Completion:
{
"actionType": "st.retrievePerformance",
"success": true,
"data": {
"followersCount": 1250,
"postViewsLast7Days": 523,
"profileViewsLast90Days": 342,
"searchAppearancesPreviousWeek": 89
}
}
This page provides examples of workflows and their completions. For detailed documentation on constraints, parameters, and possible results of specific actions, always refer to the corresponding action documentation pages.