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

# Get a single payment-control import

> Returns the details for one upload, including any per-row warnings produced during parsing.

<Badge color="yellow" size="sm">Enterprise+ tier</Badge>


## OpenAPI

````yaml get /payment-controls/imports/{id}
openapi: 3.1.1
info:
  title: TIC Lens API
  description: "The TIC Lens API provides programmatic access to company, person, property, vehicle, and order data.\r\n\r\n## Authentication\r\n\r\nAll requests require an API key passed via the `x-api-key` header:\r\n\r\n```bash\r\ncurl -H \"x-api-key: YOUR_API_KEY\" https://lens-api.tic.io/companies/123\r\n```\r\n\r\nAPI keys are managed through the TIC Lens web application under **Settings → API Keys**.\r\n\r\n## Base URL\r\n\r\n| Environment | URL |\r\n|-------------|-----|\r\n| Production  | `https://lens-api.tic.io` |\r\n\r\n## Feature Access\r\n\r\nEndpoints are gated by your subscription plan. If your plan does not include a feature, the endpoint will return `403 Forbidden`.\r\n\r\n## Rate Limits\r\n\r\nRate limits are applied per API key. If you exceed the limit, requests will return `429 Too Many Requests`.\r\n\r\n## Response Format\r\n\r\nAll responses are JSON. Null values are omitted from responses.\r\n"
  version: v1
servers:
  - url: https://lens-api.tic.io
security:
  - ApiKey: []
tags:
  - name: Addresses
  - name: Bolagsverket
  - name: Brf
  - name: Companies
  - name: Documents
  - name: FlightImages
  - name: Free
  - name: Orders
  - name: OrdersExports
  - name: PaymentControl
  - name: PaymentControlImport
  - name: Persons
  - name: Properties
  - name: PublicSearch
  - name: SearchAutocomplete
  - name: Sentinel
  - name: ServingPermits
  - name: Team
  - name: Teams
  - name: Transportstyrelsen
  - name: Vehicles
  - name: WatchList
paths:
  /payment-controls/imports/{id}:
    get:
      tags:
        - PaymentControlImport
      summary: Get a single payment-control import
      description: >-
        Returns the details for one upload, including any per-row warnings
        produced during parsing.
      operationId: GetPaymentControlImport
      parameters:
        - name: id
          in: path
          description: Import GUID returned by the upload endpoint
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Import details with warnings
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/Ormeo_Web_Lens_Models_PaymentControlImport_PaymentControlImportDetails_Dto
        '404':
          description: Import not found in this team
components:
  schemas:
    Ormeo_Web_Lens_Models_PaymentControlImport_PaymentControlImportDetails_Dto:
      type: object
      properties:
        warnings:
          type:
            - 'null'
            - array
          items:
            $ref: >-
              #/components/schemas/Ormeo_Web_Lens_Models_PaymentControlImport_PaymentControlImportWarning_Dto
        i_TeamFileImportGuid:
          type: string
          format: uuid
        i_FileName:
          type:
            - 'null'
            - string
        i_FileContentType:
          type:
            - 'null'
            - string
        i_TeamFileImportStatus:
          $ref: '#/components/schemas/Ormeo_Library_Entities_TeamFileImportStatusType'
        statusDescription:
          type:
            - 'null'
            - string
        i_ErrorMessage:
          type:
            - 'null'
            - string
        i_LastUpdatedAtUtc:
          type: string
          format: date-time
        i_ImportedCount:
          type:
            - 'null'
            - integer
          format: int32
        i_WarningCount:
          type:
            - 'null'
            - integer
          format: int32
        i_TotalRows:
          type:
            - 'null'
            - integer
          format: int32
        p_TeamPaymentControlId:
          type:
            - 'null'
            - integer
          format: int32
      additionalProperties: false
    Ormeo_Web_Lens_Models_PaymentControlImport_PaymentControlImportWarning_Dto:
      type: object
      properties:
        rowNumber:
          type: integer
          format: int32
        warningMessage:
          type:
            - 'null'
            - string
      additionalProperties: false
    Ormeo_Library_Entities_TeamFileImportStatusType:
      enum:
        - submitted
        - warning
        - failed
        - success
        - processing
      type: string
  securitySchemes:
    ApiKey:
      type: apiKey
      name: x-api-key
      in: header

````