Reply to Comment (Placeholder)
Reply to a comment on a LinkedIn post (not yet implemented)
POST
/linkedin/replyReply to Comment (Placeholder)
Reply to a comment on a LinkedIn post (not yet implemented)
Authentication requiredPlaceholder Endpoints
Code Examples
curl -X POST 'https://api.connectsafely.ai/linkedin/reply' \ -H 'Authorization: Bearer <your_api_key>' \ -H 'Content-Type: application/json' \ -d '{"commentId":"comment-456","reply":"Thanks for your comment!"}'Parameters
No parameters.
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
accountId | string | No | LinkedIn account ID (uses default if not provided) |
commentId | string | Yes | ID of the comment to reply to |
reply | string | Yes | Reply text |
Example
{
"commentId": "comment-456",
"reply": "Thanks for your comment!"
}Responses
| Status | Description |
|---|---|
| 200 | Successful response |
200 Example
{
"success": false,
"message": "Reply to comment functionality is not yet implemented",
"placeholder": true,
"data": {
"accountId": "507f1f77bcf86cd799439011",
"commentId": "comment-456",
"reply": "Thanks for your comment!",
"timestamp": "2024-01-15T10:30:00Z"
}
}