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

> Get the resellers customers

Allows you to get a list of customers associated with your reseller account. If you an API
key that has an active reseller account with us to use this endpoint.


## OpenAPI

````yaml get /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:
    get:
      tags:
        - Reseller
      summary: Get customers
      description: Get the resellers customers
      operationId: ResellerCustomers
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: >-
                    #/components/schemas/Ormeo_WebAPI_Models_Reseller_ResellerCustomer_Dto
components:
  schemas:
    Ormeo_WebAPI_Models_Reseller_ResellerCustomer_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
      additionalProperties: false
  securitySchemes:
    ApiKey:
      type: apiKey
      name: x-api-key
      in: header

````