> ## Documentation Index
> Fetch the complete documentation index at: https://docs.voxo.co/llms.txt
> Use this file to discover all available pages before exploring further.

# List Disabled Tenants

> List disabled tenants with optional search filter and pagination



## OpenAPI

````yaml https://api.voxo.co/v2/docs/openapi.json get /v2/admin/tenants/disabled
openapi: 3.1.0
info:
  title: VOXO API
  description: VOXO Communication Platform API
  version: 2.0.0
servers:
  - url: https://api.voxo.co
security:
  - bearerAuth: []
paths:
  /v2/admin/tenants/disabled:
    get:
      tags:
        - Tenants
      summary: List Disabled Tenants
      description: List disabled tenants with optional search filter and pagination
      parameters:
        - schema:
            type: string
            maxLength: 255
          in: query
          name: query
          required: false
          description: Search filter for tenant name or code
        - schema:
            type: string
            maxLength: 50
          in: query
          name: sortBy
          required: false
          description: Sort column
        - schema:
            type: string
            enum:
              - asc
              - desc
          in: query
          name: sortDirection
          required: false
          description: Sort direction
        - schema:
            default: 1
            type: integer
            minimum: 0
            maximum: 1
          in: query
          name: paginated
          required: false
          description: 1 = paginated response, 0 = full list
        - schema:
            type: number
          in: query
          name: page
          required: false
          description: Page number
        - schema:
            type: number
          in: query
          name: recordsPerPage
          required: false
          description: Records per page
        - schema:
            default: 0
            type: integer
            minimum: 0
            maximum: 1
          in: query
          name: export
          required: false
          description: 1 = email a CSV of the full result set to the requester
      responses:
        '200':
          description: Paginated disabled tenant list
          content:
            application/json:
              schema:
                type: object
                properties:
                  records:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: number
                          description: Tenant ID
                        name:
                          type: string
                          description: Tenant name
                        timezoneId:
                          anyOf:
                            - type: number
                            - type: 'null'
                          description: Timezone ID
                        tenantCode:
                          type: string
                          description: Tenant code
                        externalBillingId:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: External billing ID
                        partnerId:
                          anyOf:
                            - type: number
                            - type: 'null'
                          description: Partner ID
                        conduitPrefix:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Conduit prefix
                        disabled:
                          type: number
                          description: Whether tenant is disabled (1 = yes, 0 = no)
                        brandId:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Brand ID
                        brandVertical:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Brand vertical
                        salesforceDomain:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Salesforce domain URL
                        salesforceCTITasks:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Salesforce CTI tasks setting
                        globalQueueActions:
                          anyOf:
                            - type: number
                            - type: 'null'
                          description: Global queue actions flag
                        resellerType:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Reseller type (RESELLER or WHITELABEL)
                        dateCreation:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Tenant creation date
                        billingV2:
                          anyOf:
                            - type: number
                            - type: 'null'
                          description: Whether billing V2 is enabled
                        isResellerAccount:
                          type: number
                          description: Whether this is a reseller account (1 = yes, 0 = no)
                      required:
                        - id
                        - name
                        - timezoneId
                        - tenantCode
                        - externalBillingId
                        - partnerId
                        - conduitPrefix
                        - disabled
                        - brandId
                        - brandVertical
                        - salesforceDomain
                        - salesforceCTITasks
                        - globalQueueActions
                        - resellerType
                        - dateCreation
                        - billingV2
                        - isResellerAccount
                      additionalProperties: false
                  page:
                    type: number
                  maxPage:
                    type: number
                  totalRecords:
                    type: number
                required:
                  - records
                  - page
                  - maxPage
                  - totalRecords
                additionalProperties: false
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````