1. Social publishing
Highperformr API
  • Introduction
  • Contacts
    • Bulk fetch contacts by IDs
      POST
    • Get contacts by segment
      POST
    • Get contact by ID
      GET
    • Update contact
      PATCH
    • Delete contact
      DELETE
    • Upsert contact into a source
      POST
    • Bulk upsert contacts for source
      POST
    • Unique values of one field for a filtered contact set
      POST
    • Unified Data API - async contact enrichment
      POST
  • Schema
    • Get contact schema
      GET
    • Get discovery search contact schema
      GET
    • Get discovery search company schema
      GET
    • Get options for field
      GET
    • Get discovery search options for field
      GET
  • Discovery search
    • Find contacts v2
      POST
    • Find companies v2
      POST
  • Jobs
    • Get job status by id
      GET
  • Social publishing
    • Create draft post
      POST
    • List posts (drafts, scheduled, published)
      POST
    • Schedule or publish posts (bulk)
      POST
    • Schedule a LinkedIn comment on an external post
      POST
    • Configure cross-account auto-repost
      POST
    • Upload media file (multipart)
      POST
    • Assemble chunked uploads into one file
      POST
    • Import media from a public URL
      POST
  • Integrations (social)
    • List social integrations (filter)
Login
  1. Social publishing

Schedule a LinkedIn comment on an external post

POST
/v1/posts/external-linkedin-reply
Creates a draft scoped as an external reply (externalPost: true) and schedules it via the same pipeline as normal posts.
Required: externalPostUrl, content, scheduledTime, providerId (LinkedIn or LinkedIn Page). Pick providerId from POST /api/integrations/filter-integrations (integration id for a linkedin or linkedinPage connection).
The product resolves the LinkedIn activity/thread from the URL and publishes the comment at scheduledTime.

Request

Authorization
API Key
Add parameter in header
x-api-key
Example:
x-api-key: ********************
or
Body Params application/jsonRequired

Examples

Responses

🟢200
application/json
Created and scheduled post
Bodyapplication/json

🟠400
🟠401
🔴500
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://app.highperformr.ai/api/v1/posts/external-linkedin-reply' \
--header 'x-api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
    "externalPostUrl": "https://www.linkedin.com/feed/update/urn:li:activity:7444599297079345152/",
    "content": "Good insights",
    "scheduledTime": "2026-04-01T09:36:28.000Z",
    "providerId": "CI4a2sLJJpFwXjNgNzpY"
}'
Response Response Example
200 - Example 1
{
    "property1": "string",
    "property2": "string"
}
Modified at 2026-04-22 07:54:17
Previous
Schedule or publish posts (bulk)
Next
Configure cross-account auto-repost
Built with