Facebook Pixel
APILinkedIn Messaging

Send Sales Navigator message

Send a message via Sales Navigator API. Can reply to existing thread or start new conversation with recipients. Optionally copy to CRM. Note: POST /conversations/send auto-detects Sales Nav accounts and routes accordingly.

POST/sales-nav/send
Authentication requiredSales Navigator

Code Examples

curl -X POST 'https://api.connectsafely.ai/linkedin/sales-nav/send' \
-H 'Authorization: Bearer <your_api_key>' \
-H 'Content-Type: application/json' \
-d '{"body":"example_value"}'

Parameters

No parameters.

Request Body

FieldTypeRequiredDescription
accountIdstringNoLinkedIn account ID
threadIdstringNoExisting thread ID to reply to
recipientsarrayNoProfile URNs for new conversation (required if no threadId)
bodystringYesMessage text
copyToCrmbooleanNoCopy message to CRM

Example

{
  "body": "example_value"
}

Responses

StatusDescription
200Message sent
400Send failed
401Unauthorized
404Account not found
500Server error

200 Response Parameters

NameTypeDescription
successboolean
messagestring
threadIdstring
messageIdstring
accountIdstring

200 Example

{
  "success": true,
  "message": "Hello! I would like to connect with you.",
  "threadId": "12345",
  "messageId": "Hello! I would like to connect with you.",
  "accountId": "acc_12345"
}

400 Response Parameters

NameTypeDescription
errorstring

400 Example

{
  "error": "example_value"
}

401 Response Parameters

NameTypeDescription
errorstring

401 Example

{
  "error": "example_value"
}

404 Response Parameters

NameTypeDescription
errorstring

404 Example

{
  "error": "example_value"
}

500 Response Parameters

NameTypeDescription
errorstring

500 Example

{
  "error": "example_value"
}