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

# Start manual synchronization

> Administrator-only and rate limited. Work continues asynchronously.



## OpenAPI

````yaml /reference/openapi.yaml post /dashboard/sync
openapi: 3.1.0
info:
  title: Oynk Activity API
  version: 1.1.0
  description: >-
    Read-only aggregate onchain and privacy-safe offchain settlement activity,
    plus restricted synchronization operations.
servers:
  - url: /api
security: []
paths:
  /dashboard/sync:
    post:
      summary: Start manual synchronization
      description: Administrator-only and rate limited. Work continues asynchronously.
      responses:
        '202':
          description: Synchronization accepted
          content:
            application/json:
              schema:
                type: object
                required:
                  - accepted
                  - runId
                  - status
                properties:
                  accepted:
                    type: boolean
                    const: true
                  runId:
                    type: string
                    format: uuid
                  status:
                    $ref: '#/components/schemas/SyncStatus'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '409':
          description: Synchronization already running
        '429':
          description: Rate limit exceeded
      security:
        - AdminApiKey: []
components:
  schemas:
    SyncStatus:
      type: object
      required:
        - state
        - startedAt
        - completedAt
        - successfulChains
        - failedChains
      properties:
        state:
          type: string
          enum:
            - IDLE
            - RUNNING
            - COMPLETED
            - PARTIAL
            - FAILED
        startedAt:
          type:
            - string
            - 'null'
          format: date-time
        completedAt:
          type:
            - string
            - 'null'
          format: date-time
        successfulChains:
          type: array
          items:
            type: string
            enum:
              - BSC
              - SOLANA
        failedChains:
          type: array
          items:
            type: string
            enum:
              - BSC
              - SOLANA
  responses:
    Unauthorized:
      description: Missing or invalid administrator credential
  securitySchemes:
    AdminApiKey:
      type: apiKey
      in: header
      name: x-admin-api-key

````