> ## 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 information about a team



## OpenAPI

````yaml /partner-swagger.yml get /reseller/teams/{teamId}
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}:
    get:
      tags:
        - reseller
      summary: Get information about a team
      operationId: ResellerController_getTeam
      parameters:
        - name: teamId
          required: true
          in: path
          schema:
            type: string
        - name: skip
          required: false
          in: query
          description: How many to return
          schema:
            type: number
        - name: take
          required: false
          in: query
          description: How many to skip
          schema:
            type: number
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResellerTeamDTO'
components:
  schemas:
    ResellerTeamDTO:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        tier:
          enum:
            - fraud
            - free
            - starter
            - unlimited
            - mfa_nonvoip
          type: string
        externalId:
          type: string
        created:
          format: date-time
          type: string
        updated:
          format: date-time
          type: string
        inboxCount:
          type: number
        userCount:
          type: number
        planTier:
          type: object
          required:
            - name
            - externalId
          properties:
            name:
              type: string
            externalId:
              type: string
      required:
        - id
        - name
        - tier
        - externalId
        - created
        - updated
        - inboxCount
        - userCount
        - planTier

````