APILinkedIn Messaging

Send Typing Indicator

Send a typing indicator to a LinkedIn conversation to show that you are typing

POST/linkedin/messaging/typing-indicator

Send Typing Indicator

Send a typing indicator to a LinkedIn conversation to show that you are typing

Authentication requiredLinkedIn Messaging

Code Examples

curl -X POST 'https://api.connectsafely.ai/linkedin/messaging/typing-indicator' \
-H 'Authorization: Bearer <your_api_key>' \
-H 'Content-Type: application/json' \
-d '{"conversationUrn":"urn:li:msg_conversation:..."}'

Parameters

No parameters.

Request Body

FieldTypeRequiredDescription
accountIdstringNoLinkedIn account ID (uses default if not provided)
conversationUrnstringYesConversation URN to send typing indicator to

Example

{
  "conversationUrn": "urn:li:msg_conversation:..."
}

Responses

StatusDescription
200Successful response

200 Example

{
  "success": true,
  "accountId": "507f1f77bcf86cd799439011",
  "conversationUrn": "urn:li:msg_conversation:...",
  "message": "Typing indicator sent successfully"
}