APILinkedIn Messaging
Send Typing Indicator
Send a typing indicator to a LinkedIn conversation to show that you are typing
POST
/linkedin/messaging/typing-indicatorSend 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
| Field | Type | Required | Description |
|---|---|---|---|
accountId | string | No | LinkedIn account ID (uses default if not provided) |
conversationUrn | string | Yes | Conversation URN to send typing indicator to |
Example
{
"conversationUrn": "urn:li:msg_conversation:..."
}Responses
| Status | Description |
|---|---|
| 200 | Successful response |
200 Example
{
"success": true,
"accountId": "507f1f77bcf86cd799439011",
"conversationUrn": "urn:li:msg_conversation:...",
"message": "Typing indicator sent successfully"
}