st.syncConversation

This action allows you to sync a conversation so you can start polling it.

Constraints

⏺️ Root Start: allowed, when personUrl parameter is provided.

⬆️ Parent Actions: st.openPersonPage.

⬇️ Child Actions: N/A.

Parameters

json
{
  "actionType": "st.syncConversation",
  "label": "sync1",
  "personUrl": "https://www.linkedin.com/in/person1"
}
  • label (optional) – custom label for tracking this action in workflow completion.
  • personUrl (required for root start, forbidden for parent start) – public or hashed LinkedIn URL of the person whose conversation you want to synchronize.

Result options

  1. Successful syncing:
json
{
  "actionType": "st.syncConversation",
  "label": "sync1",
  "success": true
}
  • label – included only if specified in the action parameters.
  1. Failed syncing:
json
{
  "actionType": "st.syncConversation",
  "label": "sync1",
  "success": false,
  "error": {
    "type": "personNotFound",
    "message": "The provided URL is not an existing LinkedIn person."
  }
}
  • label – included only if specified in the action parameters.
  • error.type – enum with the following possible values:
    • personNotFound – provided URL is not an existing LinkedIn person.
    • selfProfileNotAllowed – action cannot be performed on your own profile.