Skip to main content
POST
/
conversations
/
send-message
curl -X POST https://api.linkedcamp.com/conversations/send-message \
  -H "token: YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "conversationId": "60f7a1b2c3d4e5f6a7b8c9d1",
    "content": "Hi John, thanks for connecting! I wanted to reach out about..."
  }'
{
  "success": true,
  "message": "Message sent successfully!"
}

Documentation Index

Fetch the complete documentation index at: https://docs.linkedcamp.com/llms.txt

Use this file to discover all available pages before exploring further.

Headers

token
string
required
Your LinkedCamp API token.

Body Parameters

conversationId
string
required
The conversation ID. You can obtain this from the lead data via the List Leads or Get Lead endpoints.
content
string
required
The message content to send. Control characters are automatically sanitized.

Response

success
boolean
Whether the request was successful.
message
string
A human-readable result message.
curl -X POST https://api.linkedcamp.com/conversations/send-message \
  -H "token: YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "conversationId": "60f7a1b2c3d4e5f6a7b8c9d1",
    "content": "Hi John, thanks for connecting! I wanted to reach out about..."
  }'
{
  "success": true,
  "message": "Message sent successfully!"
}