> ## Documentation Index
> Fetch the complete documentation index at: https://docs.plugkit.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Pull comments and mentions from the platforms

> Webhooks already deliver new comments in real time; this catches up after an outage and fills in what a webhook payload leaves out (like counts, hidden state, author).



## OpenAPI

````yaml /api-reference/openapi.json post /v1/engagement/sync
openapi: 3.0.0
info:
  title: PlugKit API
  description: >-
    One API to publish, schedule and message across Instagram, WhatsApp, TikTok,
    Telegram, YouTube and X.
  version: 1.0.0
  contact: {}
servers: []
security: []
tags: []
paths:
  /v1/engagement/sync:
    post:
      tags:
        - engagement
      summary: Pull comments and mentions from the platforms
      description: >-
        Webhooks already deliver new comments in real time; this catches up
        after an outage and fills in what a webhook payload leaves out (like
        counts, hidden state, author).
      operationId: EngagementController_sync
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SyncEngagementDto'
      responses:
        '200':
          description: ''
      security:
        - api-key: []
components:
  schemas:
    SyncEngagementDto:
      type: object
      properties:
        accountId:
          type: string
          description: Only this account. Omit to sync every eligible account.
        profileId:
          type: string
          description: Only the accounts of this profile.
        postId:
          type: string
          description: >-
            Only this post (platform post id). Without it, the most recent posts
            of each account are swept — pass it to reach an older post.
  securitySchemes:
    api-key:
      scheme: bearer
      bearerFormat: sk_...
      type: http

````