Reply to Comment (Placeholder)

Reply to a comment on a LinkedIn post (not yet implemented)

POST/linkedin/reply

Reply 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

FieldTypeRequiredDescription
accountIdstringNoLinkedIn account ID (uses default if not provided)
commentIdstringYesID of the comment to reply to
replystringYesReply text

Example

{
  "commentId": "comment-456",
  "reply": "Thanks for your comment!"
}

Responses

StatusDescription
200Successful 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"
  }
}