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

# Refresh now instead of waiting for the next cycle (debounced 15s per account)



## OpenAPI

````yaml /api-reference/openapi.json post /v1/analytics/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/analytics/sync:
    post:
      tags:
        - analytics
      summary: >-
        Refresh now instead of waiting for the next cycle (debounced 15s per
        account)
      operationId: AnalyticsController_sync
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SyncAnalyticsDto'
      responses:
        '200':
          description: ''
      security:
        - api-key: []
components:
  schemas:
    SyncAnalyticsDto:
      type: object
      properties:
        accountId:
          type: string
          description: >-
            Account to refresh now. Omitted, every account of the caller is
            queued for the next cycle.
  securitySchemes:
    api-key:
      scheme: bearer
      bearerFormat: sk_...
      type: http

````