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

# Enqueue sync for all connections in the workspace

> Enqueues one background job per account connection in the workspace. Returns immediately with a batch id; workers process jobs asynchronously. Connections that already have a pending or active sync job are skipped.



## OpenAPI

````yaml /api-reference/data-api.json post /v2/account-connections/transactions/sync
openapi: 3.0.0
info:
  title: Range Data API
  description: >-
    The Range Data API for crypto addresses, networks, transactions, and
    entities.
  version: 1.7.11
  contact: {}
servers:
  - url: https://api.range.org
    description: Range API Server
security:
  - Authorization: []
tags:
  - name: Address Information
    description: Get information about a crypto address.
  - name: Entity Information
    description: Get information about entities.
  - name: Network Information
    description: Get information about networks.
  - name: Protocols
    description: Get information about cross-chain protocols.
  - name: Token transfers
    description: Get information about token transfers.
paths:
  /v2/account-connections/transactions/sync:
    post:
      tags:
        - Account Connections
      summary: Enqueue sync for all connections in the workspace
      description: >-
        Enqueues one background job per account connection in the workspace.
        Returns immediately with a batch id; workers process jobs
        asynchronously. Connections that already have a pending or active sync
        job are skipped.
      operationId: syncAllConnectionTransactions
      parameters: []
      responses:
        '202':
          description: Sync jobs enqueued
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SyncAllEnqueueResultDto'
components:
  schemas:
    SyncAllEnqueueResultDto:
      type: object
      properties:
        batch_id:
          type: string
          format: uuid
        enqueued:
          type: number
          example: 5
        skipped:
          type: number
          example: 1
      required:
        - batch_id
        - enqueued
        - skipped
  securitySchemes:
    Authorization:
      scheme: bearer
      bearerFormat: API Key
      description: 'Use Authorization: Bearer <api-key>'
      type: http

````