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

# List Tenants

> List all tenants



## OpenAPI

````yaml GET /partner/tenants
openapi: 3.0.0
info:
  title: Reach API
  version: 1.0.0
  description: API documentation for Reach platform
servers:
  - url: https://api.embedreach.com
    description: Production server
security: []
paths:
  /partner/tenants:
    get:
      tags:
        - Tenants
      summary: List Tenants
      description: List all tenants
      parameters:
        - schema:
            type: string
            description: The cursor to start from
          required: false
          description: The cursor to start from
          name: cursor
          in: query
        - schema:
            type: number
            nullable: true
            description: The limit of items to return, default is 100
          required: false
          description: The limit of items to return, default is 100
          name: limit
          in: query
        - schema:
            type: boolean
            nullable: true
            description: Whether to include deactivated tenants in the results.
          required: false
          description: Whether to include deactivated tenants in the results.
          name: includeDeleted
          in: query
        - schema:
            type: string
            description: Search term to filter tenants by name, external ID, or website.
          required: false
          description: Search term to filter tenants by name, external ID, or website.
          name: search
          in: query
        - schema:
            type: string
            enum:
              - name
              - created_at
              - updated_at
            description: Field to sort by.
          required: false
          description: Field to sort by.
          name: orderBy
          in: query
        - schema:
            type: string
            enum:
              - asc
              - desc
            description: Sort direction.
          required: false
          description: Sort direction.
          name: orderDirection
          in: query
        - schema:
            type: string
            description: >-
              Comma-separated list of fields to return. This reduces payload
              size and improves performance by only fetching requested data.
              Available fields: id, name, website, external_id, locations,
              branding, created_at, updated_at, deleted_at,
              data_integration_completed_at, website_tracking_completed_at,
              uiDefaults, userCount. Example: "id,name" to only return id and
              name. If not provided, all fields are returned.
          required: false
          description: >-
            Comma-separated list of fields to return. This reduces payload size
            and improves performance by only fetching requested data. Available
            fields: id, name, website, external_id, locations, branding,
            created_at, updated_at, deleted_at, data_integration_completed_at,
            website_tracking_completed_at, uiDefaults, userCount. Example:
            "id,name" to only return id and name. If not provided, all fields
            are returned.
          name: fields
          in: query
      responses:
        '200':
          description: Status 200 response
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  message:
                    type: string
                  data:
                    type: object
                    properties:
                      results:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                              description: The id of the business
                            name:
                              type: string
                              description: A friendly name for the business
                            website:
                              type: string
                              nullable: true
                              description: The website of the business
                            externalId:
                              type: string
                              nullable: true
                              description: The external id of the business
                            locations:
                              type: array
                              nullable: true
                              items:
                                type: object
                                properties:
                                  addressLine1:
                                    type: string
                                  addressLine2:
                                    type: string
                                  addressLine3:
                                    type: string
                                  locality:
                                    type: string
                                    description: >-
                                      The city or town of the business (e.g. New
                                      York)
                                  district:
                                    type: string
                                    description: >-
                                      The State (e.g. NY, CA, etc.) of the
                                      business
                                  postalCode:
                                    type: string
                                    description: The postal code of the business
                                  countryCode:
                                    type: string
                                    description: >-
                                      The country code of the business (e.g.
                                      USA)
                                required:
                                  - addressLine1
                                  - locality
                                  - district
                                  - postalCode
                                  - countryCode
                              description: The locations of the business
                            branding:
                              type: object
                              nullable: true
                              properties:
                                logoBase64:
                                  type: string
                                  nullable: true
                                  description: >-
                                    Base64 encoded logo image. We recommend
                                    128px x 128px for best results. (either this
                                    or logoURL)
                                logoURL:
                                  type: string
                                  nullable: true
                                  description: >-
                                    Absolute URL for the brand logo. We
                                    recommend 128px x 128px for best results.
                                    (either this or logoBase64)
                                primaryColor:
                                  type: string
                                  nullable: true
                                  description: The primary color of the business.
                                secondaryColors:
                                  type: array
                                  nullable: true
                                  items:
                                    type: string
                                  description: Secondary brand colors.
                                brandName:
                                  type: string
                                  nullable: true
                                  description: The name of the brand.
                                primaryPhone:
                                  type: string
                                  nullable: true
                                  description: The primary phone of the business.
                                primaryEmail:
                                  type: string
                                  nullable: true
                                  format: email
                                  description: The primary email of the business.
                                brandTagline:
                                  type: string
                                  nullable: true
                                  description: The brand tagline or slogan.
                                brandPersonality:
                                  type: object
                                  nullable: true
                                  properties:
                                    tone:
                                      type: string
                                      nullable: true
                                      description: Brand tone.
                                    voice:
                                      type: string
                                      nullable: true
                                      description: Brand voice.
                                    values:
                                      type: array
                                      nullable: true
                                      items:
                                        type: string
                                      description: Brand values.
                                  description: Brand personality details.
                                colorPalette:
                                  type: object
                                  nullable: true
                                  properties:
                                    primary:
                                      type: string
                                      nullable: true
                                      description: Primary color.
                                    secondary:
                                      type: array
                                      nullable: true
                                      items:
                                        type: string
                                      description: Secondary colors.
                                    accent:
                                      type: array
                                      nullable: true
                                      items:
                                        type: string
                                      description: Accent colors.
                                    background:
                                      type: array
                                      nullable: true
                                      items:
                                        type: string
                                      description: Background colors.
                                    text:
                                      type: array
                                      nullable: true
                                      items:
                                        type: string
                                      description: Text colors.
                                  description: Brand color palette.
                              description: The branding of the business
                            createdAt:
                              type: string
                              nullable: true
                              description: The date and time the business was created
                            updatedAt:
                              type: string
                              nullable: true
                              description: The date and time the business was last updated
                            deletedAt:
                              type: string
                              nullable: true
                              description: The date and time the business was deactivated
                            dataIntegrationCompletedAt:
                              type: string
                              nullable: true
                              description: >-
                                The date and time the business completed data
                                integration
                            websiteTrackingCompletedAt:
                              type: string
                              nullable: true
                              description: >-
                                The date and time the business completed website
                                tracking configuration
                            userCount:
                              type: number
                              description: The number of users for this business
                            uiDefaults:
                              type: object
                              nullable: true
                              properties:
                                emailHelpDialogShow:
                                  type: boolean
                                  default: false
                                  description: >-
                                    Whether the email help dialog should be
                                    shown for this business
                                engageOnboardingShow:
                                  type: boolean
                                  default: true
                                  description: >-
                                    Whether the onboarding engagement wizard
                                    should be shown for this business
                                acquireLearningPhaseDisabled:
                                  type: boolean
                              description: >-
                                Business-specific UI defaults for dialogs and
                                feature toggles
                            smsOptInImageUrls:
                              type: array
                              nullable: true
                              items:
                                type: string
                                format: uri
                              description: >-
                                Array of URLs that demonstrate how SMS consent
                                is obtained. Can be image URLs (screenshots) or
                                URLs to ordering/checkout pages where consent is
                                captured.
                          required:
                            - id
                            - name
                            - website
                            - externalId
                            - createdAt
                            - updatedAt
                            - userCount
                      pagination:
                        type: object
                        properties:
                          hasNextPage:
                            type: boolean
                          cursor:
                            type: string
                            nullable: true
                          total:
                            type: number
                        required:
                          - hasNextPage
                    required:
                      - results
                      - pagination
                required:
                  - success
        '400':
          description: Bad Request - Validation or request error
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - false
                    default: false
                  message:
                    type: string
                    description: Error message describing what went wrong
                  errors:
                    type: array
                    items:
                      type: string
                    description: Optional array of specific validation errors
                required:
                  - message

````