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

# Gets all inboxes for a team



## OpenAPI

````yaml /partner-swagger.yml get /reseller/teams/{teamId}/inboxes
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}/inboxes:
    get:
      tags:
        - reseller
      summary: Gets all inboxes for a team
      operationId: ResellerController_getInboxes
      parameters:
        - name: teamId
          required: true
          in: path
          schema:
            type: string
        - name: query
          required: true
          in: query
          schema:
            type: string
        - name: skip
          required: false
          in: query
          description: How many to skip
          schema:
            type: number
        - name: take
          required: false
          in: query
          description: How many to return
          schema:
            type: number
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResellerInboxResponseDTO'
components:
  schemas:
    ResellerInboxResponseDTO:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/ResellerInboxDTO'
        total:
          type: number
      required:
        - data
        - total
    ResellerInboxDTO:
      type: object
      properties:
        id:
          type: string
        phone:
          type: string
        externalId:
          type: string
        created:
          format: date-time
          type: string
        updated:
          format: date-time
          type: string
      required:
        - id
        - phone
        - externalId
        - created
        - updated

````