> ## 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 import team users job status



## OpenAPI

````yaml /partner-swagger.yml get /reseller/teams/{teamId}/users/import/{jobId}
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/{jobId}:
    get:
      tags:
        - reseller
      summary: Get import team users job status
      operationId: ResellerController_getImportTeamUsersJobStatus
      parameters:
        - name: teamId
          required: true
          in: path
          schema:
            type: string
        - name: jobId
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ImportTeamUsersJobStatusDTO'
components:
  schemas:
    ImportTeamUsersJobStatusDTO:
      type: object
      properties:
        status:
          type: string
          enum:
            - new
            - in_progress
            - success
            - error
        error:
          type: string
          nullable: true
      required:
        - status
        - error

````