nv.syncConversation
This action allows you to sync a conversation in Sales Navigator so you can start polling it.
Constraints
⏺️
Root Start: allowed, when
personUrl
parameter is provided.⬆️
Parent Actions: st.openPersonPage, nv.openPersonPage.
⬇️
Child Actions: N/A.
Paramenters
{
"actionType": "nv.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 sync.
Result options
- Successful syncing:
{
"actionType": "nv.syncConversation",
"label": "sync1",
"success": true
}
label
– included only if specified in the action parameters.
- Failed syncing:
{
"actionType": "nv.syncConversation",
"label": "sync1",
"success": false,
"error": {
"type": "noSalesNavigator",
"message": "Your account does not have Sales Navigator subscription."
}
}
label
– included only if specified in the action parameters.error.type
– enum with the following possible values:noSalesNavigator
– your account does not have Sales Navigator subscription.personNotFound
– provided URL is not an existing LinkedIn person.