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

# Get Resellers under a Platform



## OpenAPI

````yaml /partner-swagger.yml get /reseller
openapi: 3.0.0
info:
  title: Clerk Reseller / Partner API
  description: API For usage by Clerk Resellers and Partners
  version: '1.0'
  contact: {}
servers:
  - url: https://partners.clerk.chat
    description: Production server
security: []
tags: []
paths:
  /reseller:
    get:
      tags:
        - reseller
      summary: Get Resellers under a Platform
      operationId: ResellerController_getResellersForPartner
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResellerResponseDTO'
components:
  schemas:
    ResellerResponseDTO:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/ResellerDTO'
        total:
          type: number
      required:
        - data
        - total
    ResellerDTO:
      type: object
      properties:
        id:
          type: string
        externalId:
          type: string
        username:
          type: string
        created:
          format: date-time
          type: string
        updated:
          format: date-time
          type: string
      required:
        - id
        - externalId
        - username
        - created
        - updated

````