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

# Put v1 import



## OpenAPI

````yaml openapi/audience-dataimport-v1.json PUT /v1/import
openapi: 3.0.4
info:
  title: Audience.DataImport
  version: v1
servers:
  - url: https://{host}/audience-dataimport
    description: Your Lobyco environment
    variables:
      host:
        default: your-environment.lobyco.net
        description: >-
          The API host for your Lobyco environment. Replace it with the host you
          were given — this placeholder does not resolve.
security:
  - Bearer: []
paths:
  /v1/import:
    put:
      tags:
        - Import
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ImportCustomersRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/ImportCustomersRequest'
          application/*+json:
            schema:
              $ref: '#/components/schemas/ImportCustomersRequest'
      responses:
        '202':
          description: Accepted
        '400':
          description: Bad Request
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/WebServiceError'
            application/json:
              schema:
                $ref: '#/components/schemas/WebServiceError'
            text/json:
              schema:
                $ref: '#/components/schemas/WebServiceError'
        '404':
          description: Not Found
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/WebServiceError'
            application/json:
              schema:
                $ref: '#/components/schemas/WebServiceError'
            text/json:
              schema:
                $ref: '#/components/schemas/WebServiceError'
components:
  schemas:
    ImportCustomersRequest:
      type: object
      properties:
        audienceId:
          type: string
          nullable: true
        executionId:
          type: string
          nullable: true
        dataURIs:
          type: array
          items:
            type: string
            format: uri
          nullable: true
        executedBy:
          type: string
          nullable: true
        source:
          type: string
          nullable: true
      additionalProperties: false
    WebServiceError:
      required:
        - message
        - name
      type: object
      properties:
        name:
          minLength: 1
          type: string
        message:
          minLength: 1
          type: string
        details:
          nullable: true
      additionalProperties: false
  securitySchemes:
    Bearer:
      type: apiKey
      description: >-
        JWT Authorization header using the Bearer scheme. Example:
        "Authorization: Bearer {token}"
      name: Authorization
      in: header

````