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

# Import team users



## OpenAPI

````yaml /partner-swagger.yml post /reseller/teams/{teamId}/users/import
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/teams/{teamId}/users/import:
    post:
      tags:
        - reseller
      summary: Import team users
      operationId: ResellerController_importTeamUsers
      parameters:
        - name: teamId
          required: true
          in: path
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ImportUsersToTeamDto'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UploadUsersToTeamDTO'
        '201':
          description: ''
components:
  schemas:
    ImportUsersToTeamDto:
      type: object
      properties:
        userId:
          type: string
    UploadUsersToTeamDTO:
      type: object
      properties:
        id:
          type: string
      required:
        - id

````