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

# List User Tenant Profiles

> Returns every tenant profile the user has, one entry per mapping. Each entry contains the merged effective profile evaluated for that tenant, with the per-tenant override under the `tenant` key.



## OpenAPI

````yaml GET /v1/user/{distinct_id}/tenant/
openapi: 3.1.1
info:
  title: SuprSend API
  description: APIs supported on suprsend platform
  version: 1.2.2
servers:
  - url: https://hub.suprsend.com
security:
  - sec0: []
  - BearerAuth: []
paths:
  /v1/user/{distinct_id}/tenant/:
    get:
      summary: List User Tenant Profiles
      description: >-
        Returns every tenant profile the user has, one entry per mapping. Each
        entry contains the merged effective profile evaluated for that tenant,
        with the per-tenant override under the `tenant` key.
      operationId: list-user-tenant-profiles
      parameters:
        - name: distinct_id
          in: path
          description: Unique identifier of the user in your system.
          schema:
            type: string
          required: true
        - name: limit
          in: query
          description: Number of results per page (1–100). Defaults to 10.
          required: false
          schema:
            type: integer
            format: int32
            default: 10
        - name: after
          in: query
          description: >-
            Pagination cursor returned by a previous call. Pass to fetch the
            next page.
          required: false
          schema:
            type: string
      responses:
        '200':
          description: 200 - OK
          content:
            application/json:
              examples:
                Result:
                  value:
                    meta:
                      count: 2
                      limit: 10
                      has_prev: false
                      before: null
                      has_next: false
                      after: null
                    results:
                      - distinct_id: user@example.com
                        properties:
                          role: admin
                        $email:
                          - value: user@acme-corp.com
                            status: active
                            perma_status: active
                        tenant:
                          tenant_id: acme-corp
                          properties:
                            role: admin
                          $email:
                            - value: user@acme-corp.com
                              status: active
                              perma_status: active
                      - distinct_id: user@example.com
                        properties:
                          role: viewer
                        $email:
                          - value: user@globex.io
                            status: active
                            perma_status: active
                        tenant:
                          tenant_id: globex
                          properties:
                            role: viewer
                          $email:
                            - value: user@globex.io
                              status: active
                              perma_status: active
              schema:
                type: object
                properties:
                  meta:
                    type: object
                    description: Pagination metadata.
                    properties:
                      count:
                        type: integer
                        description: Number of results in this response.
                      limit:
                        type: integer
                        description: Maximum number of results requested for this page.
                      has_prev:
                        type: boolean
                        description: Whether a previous page exists.
                      before:
                        type: string
                        nullable: true
                        description: >-
                          Cursor for the previous page. `null` on the first
                          page.
                      has_next:
                        type: boolean
                        description: Whether a next page exists.
                      after:
                        type: string
                        nullable: true
                        description: Cursor to pass to fetch the next page.
                  results:
                    type: array
                    description: >-
                      List of tenant profiles for the user. One entry per
                      associated tenant.
                    items:
                      type: object
                      properties:
                        distinct_id:
                          type: string
                          description: The user identifier this entry belongs to.
                        properties:
                          type: object
                          description: >-
                            Merged effective properties for this tenant (global
                            layered with per-tenant overrides).
                        tenant:
                          type: object
                          description: Per-tenant override block for this entry.
                          properties:
                            tenant_id:
                              type: string
                              description: Tenant the override belongs to.
                            properties:
                              type: object
                              description: >-
                                Properties explicitly set on the per-tenant
                                profile.
        '404':
          description: 404 - Not Found
          content:
            application/json:
              examples:
                Result:
                  value:
                    code: 404
                    message: 'User [distinct_id: ''user@example.com''] not found'
              schema:
                type: object
                properties:
                  code:
                    type: integer
                    description: HTTP status code.
                    example: 404
                  message:
                    type: string
                    description: Human-readable error description.
                    example: 'User [distinct_id: ''user@example.com''] not found'
      deprecated: false
      security:
        - BearerAuth: []
components:
  securitySchemes:
    sec0:
      type: apiKey
      in: header
      name: Authorization
      x-bearer-format: bearer
      description: >-
        Bearer authentication header of the form `Bearer <token>`, where <token>
        is your auth token.
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API_Key
      description: >-
        Pass as `Bearer <API_KEY>`. Get API Key from SuprSend dashboard
        Developers -> API Keys section.

````