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

# Import snapshots/movements CSV into a custom connection

> multipart/form-data with `snapshots` and/or `movements` (CSV), `camt` (CAMT.053 XML), or a `zip` containing those CSV filenames. Accepted and processed asynchronously; poll GET :id/imports/:import_id for the result (counts + row errors).



## OpenAPI

````yaml /api-reference/platform-api.json post /v2/account-connections/{id}/imports
openapi: 3.0.0
info:
  title: Range Platform API
  description: >-
    The Range Platform API for workspace management, counterparties, and
    operational tooling.
  version: 1.7.27
  contact: {}
servers:
  - url: https://api.range.org
    description: Range API Server
security:
  - Authorization: []
  - Authorization: []
tags:
  - name: Address Information
    description: Get information about a crypto address.
  - name: Transfer Enrichments
    description: Attach workspace-scoped notes and categories to transfers.
  - name: Counterparties
    description: Manage external entities, their addresses, bank accounts, and documents.
paths:
  /v2/account-connections/{id}/imports:
    post:
      tags:
        - Account Connections
      summary: Import snapshots/movements CSV into a custom connection
      description: >-
        multipart/form-data with `snapshots` and/or `movements` (CSV), `camt`
        (CAMT.053 XML), or a `zip` containing those CSV filenames. Accepted and
        processed asynchronously; poll GET :id/imports/:import_id for the result
        (counts + row errors).
      operationId: createImport
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
      responses:
        '202':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateImportResponseDto'
components:
  schemas:
    CreateImportResponseDto:
      type: object
      properties:
        import_id:
          type: string
          example: a1b2c3d4-e5f6-7890-abcd-ef1234567890
        status:
          type: string
          enum:
            - processing
      required:
        - import_id
        - status
  securitySchemes:
    Authorization:
      type: apiKey
      in: header
      name: X-API-KEY
      description: Authorization method required to allow user to access the api endpoints.

````