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

# Remove users from an inbox



## OpenAPI

````yaml /partner-swagger.yml delete /reseller/teams/{teamId}/inboxes/{inboxId}/users
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/{inboxId}/users:
    delete:
      tags:
        - reseller
      summary: Remove users from an inbox
      operationId: ResellerController_removeUsersFromInbox
      parameters:
        - name: teamId
          required: true
          in: path
          schema:
            type: string
        - name: inboxId
          required: true
          in: path
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RemoveUsersFromInboxDto'
      responses:
        '202':
          description: ''
components:
  schemas:
    RemoveUsersFromInboxDto:
      type: object
      properties:
        userIds:
          type: array
          items:
            type: string
      required:
        - userIds

````