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

# Create customer

> Creates a new customer for reseller

Allows you to create a customer if you represent a reseller. Use isTest=true to avoid creating
actual accounts during testing.


## OpenAPI

````yaml post /reseller/customers
openapi: 3.0.4
info:
  title: TIC API
  description: ''
  version: v1
servers:
  - url: https://api.tic.io/
security:
  - ApiKey: []
tags:
  - name: BolagsverketStatistics
  - name: Companies
  - name: Companies_SE_
  - name: DocumentDelivery
  - name: EuropeanCommission
  - name: FinancialDocuments
  - name: Finansinspektionen
  - name: Free
  - name: ICA
  - name: ICAStatistics
  - name: Lists
  - name: Media
  - name: Persons
  - name: Persons_SE_
  - name: Properties_SE_
  - name: PTSPortings
  - name: Reseller
  - name: SearchBankruptciesReports
  - name: SearchCompanies
  - name: SearchCompaniesReports
  - name: SearchCompanyWorkplaces
  - name: SearchPerson
  - name: SearchProperties_SE_
  - name: SearchVehicles
  - name: TeamDocumentOrders
  - name: Teams
  - name: User
  - name: Vehicles_SE_
  - name: WatchLists
paths:
  /reseller/customers:
    post:
      tags:
        - Reseller
      summary: Create customer
      description: Creates a new customer for reseller
      operationId: ResellerCreateCustomer
      parameters:
        - name: isTest
          in: query
          description: Set flag to true if you don't want to create the actual customer
          schema:
            type: boolean
            default: false
      requestBody:
        content:
          application/json-patch+json:
            schema:
              $ref: >-
                #/components/schemas/Ormeo_WebAPI_Models_Resellers_CreateCustomerRequest_Dto
          application/json:
            schema:
              $ref: >-
                #/components/schemas/Ormeo_WebAPI_Models_Resellers_CreateCustomerRequest_Dto
          text/json:
            schema:
              $ref: >-
                #/components/schemas/Ormeo_WebAPI_Models_Resellers_CreateCustomerRequest_Dto
          application/*+json:
            schema:
              $ref: >-
                #/components/schemas/Ormeo_WebAPI_Models_Resellers_CreateCustomerRequest_Dto
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/Ormeo_WebAPI_Models_Resellers_CreateCustomerResponse_Dto
components:
  schemas:
    Ormeo_WebAPI_Models_Resellers_CreateCustomerRequest_Dto:
      type: object
      properties:
        domainOrCompanyName:
          type: string
          nullable: true
        emailAddress:
          type: string
          nullable: true
        externalReference:
          type: string
          nullable: true
      additionalProperties: false
    Ormeo_WebAPI_Models_Resellers_CreateCustomerResponse_Dto:
      type: object
      properties:
        teamId:
          type: integer
          format: int32
        teamGuid:
          type: string
          format: uuid
        teamName:
          type: string
          nullable: true
        teamDescription:
          type: string
          nullable: true
        teamEmail:
          type: string
          nullable: true
        apiKey:
          type: string
          nullable: true
      additionalProperties: false
  securitySchemes:
    ApiKey:
      type: apiKey
      name: x-api-key
      in: header

````