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

# Fetch User Tenant Profile

> Returns the user profile evaluated for a specific tenant. The top-level fields are the **merged** effective profile (global layered with per-tenant overrides). The `tenant` block returns only the fields explicitly set on the per-tenant profile.



## OpenAPI

````yaml GET /v1/user/{distinct_id}/tenant/{tenant_id}/
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/{tenant_id}/:
    get:
      summary: Fetch User Tenant Profile
      description: >-
        Returns the user profile evaluated for a specific tenant. The top-level
        fields are the **merged** effective profile (global layered with
        per-tenant overrides). The `tenant` block returns only the fields
        explicitly set on the per-tenant profile.
      operationId: fetch-user-tenant-profile
      parameters:
        - name: distinct_id
          in: path
          description: Unique identifier of the user in your system.
          schema:
            type: string
          required: true
        - name: tenant_id
          in: path
          description: Tenant to evaluate the profile against.
          schema:
            type: string
          required: true
      responses:
        '200':
          description: 200 - OK
          content:
            application/json:
              examples:
                Result:
                  value:
                    distinct_id: user@example.com
                    properties:
                      $timezone: America/New_York
                      role: admin
                      plan: enterprise
                    created_at: '2022-02-13T12:47:00.388999+00:00'
                    updated_at: '2026-07-21T09:49:36.383794+00:00'
                    $email:
                      - value: user@acme-corp.com
                        status: active
                        perma_status: active
                    $slack:
                      - value_json:
                          email: user@acme-corp.com
                          access_token: xoxb-XXXXXXXX
                        status: active
                        perma_status: active
                    tenant:
                      tenant_id: acme-corp
                      properties:
                        role: admin
                      $email:
                        - value: user@acme-corp.com
                          status: active
                          perma_status: active
              schema:
                type: object
                properties:
                  distinct_id:
                    type: string
                    description: The user identifier.
                  properties:
                    type: object
                    description: >-
                      Merged (effective) properties — global properties layered
                      with per-tenant overrides.
                  created_at:
                    type: string
                    format: date-time
                    description: Timestamp when the user was originally created.
                  updated_at:
                    type: string
                    format: date-time
                    description: Timestamp when the user was last updated.
                  tenant:
                    type: object
                    description: >-
                      Per-tenant override block. Contains only the fields
                      explicitly set on the per-tenant profile.
                    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. Returned when the tenant does not exist for the
            workspace.
          content:
            application/json:
              examples:
                Result:
                  value:
                    code: 404
                    message: tenant 'acme-corp' not found
              schema:
                type: object
                properties:
                  code:
                    type: integer
                    description: HTTP status code.
                    example: 404
                  message:
                    type: string
                    description: Human-readable error description.
                    example: tenant 'acme-corp' 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.

````