> ## 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.

# Sync conversations from the platform (live API)

> Runs a bounded pass immediately (most recent threads and messages) and, the first time, starts a background backfill of the full history. `backfilling: true` means more conversations will keep landing in the inbox for the next few minutes — poll this list to see them arrive.



## OpenAPI

````yaml /api-reference/openapi.json post /v1/inbox/conversations/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/inbox/conversations/sync:
    post:
      tags:
        - inbox
      summary: Sync conversations from the platform (live API)
      description: >-
        Runs a bounded pass immediately (most recent threads and messages) and,
        the first time, starts a background backfill of the full history.
        `backfilling: true` means more conversations will keep landing in the
        inbox for the next few minutes — poll this list to see them arrive.
      operationId: MessagesController_sync[0]
      parameters:
        - name: accountId
          required: true
          in: query
          schema:
            type: string
      responses:
        '201':
          description: ''
      security:
        - api-key: []
components:
  securitySchemes:
    api-key:
      scheme: bearer
      bearerFormat: sk_...
      type: http

````