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

# Create new inboxes and users for a team

> Create a new inboxes and users for a team



## OpenAPI

````yaml /partner-swagger.yml post /reseller/teams/{teamId}/inboxes/bulk
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/bulk:
    post:
      tags:
        - reseller
      summary: Create new inboxes and users for a team
      description: Create a new inboxes and users for a team
      operationId: ResellerController_createInboxBulk
      parameters:
        - name: teamId
          required: true
          in: path
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateResellerInboxesBulkDto'
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResellerInboxBulkDTO'
components:
  schemas:
    CreateResellerInboxesBulkDto:
      type: object
      properties:
        inboxes:
          description: Array of reseller inbox data
          type: array
          items:
            $ref: '#/components/schemas/CreateResellerInboxDto'
      required:
        - inboxes
    ResellerInboxBulkDTO:
      type: object
      properties:
        inboxes:
          type: array
          items:
            $ref: '#/components/schemas/ResellerInboxDTO'
      required:
        - inboxes
    CreateResellerInboxDto:
      type: object
      properties:
        name:
          type: string
        phone:
          type: string
          format: phone
        email:
          type: string
          format: email
        externalId:
          type: string
      required:
        - phone
        - email
    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

````