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

# List benefiting persons



## OpenAPI

````yaml /openapi/2026-07-02.yaml get /_api/accounts/{accountId}/benefiting-persons
openapi: 3.0.3
info:
  title: Simply Tokenized API
  description: >-
    Simply Tokenized API for integrators and partners.


    **Current version `2026-07-02` is in beta** and is only available on the
    **development** environment (`https://dev.go.simplytokenized.com/_api`).
    Request and response shapes may change before a stable release. Beta
    responses include `ST-Api-Version-Beta: true`.


    | Environment | Base URL |

    |-------------|----------|

    | Development | `https://dev.go.simplytokenized.com/_api` |

    | Staging | `https://stage.go.floris3.com/_api` |

    | Live | `https://go.floris3.com/_api` |


    Authenticate with client credentials at `POST /_api/auth`, then call
    resource endpoints with `Authorization: Bearer {access_token}`.


    All successful responses include the `ST-Api-Version` header. The access
    token is valid for 10 minutes.


    **Token amounts:** Fields named `units` and `balance` are integer strings in
    the smallest token unit. Read `decimals` from the offering and multiply the
    human amount by `10^decimals` (e.g. 10 tokens with 8 decimals →
    `"10000000000"`). See the Units and decimals guide in the docs.
  version: '2026-07-02'
servers:
  - url: https://dev.go.simplytokenized.com
    description: Development — beta API version `2026-07-02` available
  - url: https://stage.go.floris3.com
    description: Staging
  - url: https://go.floris3.com
    description: Live (production)
security:
  - bearerAuth: []
tags:
  - name: Auth
    description: Obtain a bearer access token.
  - name: Offerings
    description: List and retrieve offerings.
  - name: Orders
    description: >-
      Create, list, retrieve, and cancel orders. Send `units` in the smallest
      token unit — see Units and decimals in the Guides tab.
  - name: Accounts
    description: Create and manage investor accounts.
  - name: Wallets
    description: List wallets and wallet balances.
  - name: Transactions
    description: Account transaction history.
  - name: Benefiting Persons
    description: Beneficial ownership records.
paths:
  /_api/accounts/{accountId}/benefiting-persons:
    get:
      tags:
        - Benefiting Persons
      summary: List benefiting persons
      operationId: listBenefitingPersons
      parameters:
        - name: accountId
          in: path
          required: true
          schema:
            type: string
            format: uuid
          description: accountId identifier
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: string
                      format: uuid
                    firstname:
                      type: string
                    lastname:
                      type: string
                    street:
                      type: string
                    zip:
                      type: string
                    state:
                      type: string
                    city:
                      type: string
                    country:
                      type: string
                  required:
                    - id
                    - firstname
                    - lastname
                    - street
                    - zip
                    - state
                    - city
                    - country
                  additionalProperties: false
        '400':
          description: Bad Request – validation failed
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      type:
                        type: string
                      code:
                        type: string
                      message:
                        type: string
                      errors:
                        type: array
                        items: {}
                    required:
                      - type
                      - message
                    additionalProperties: false
                required:
                  - error
                additionalProperties: false
        '401':
          description: Unauthorized – invalid or missing access token
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      type:
                        type: string
                      code:
                        type: string
                      message:
                        type: string
                      errors:
                        type: array
                        items: {}
                    required:
                      - type
                      - message
                    additionalProperties: false
                required:
                  - error
                additionalProperties: false
        '403':
          description: Forbidden – insufficient scope
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      type:
                        type: string
                      code:
                        type: string
                      message:
                        type: string
                      errors:
                        type: array
                        items: {}
                    required:
                      - type
                      - message
                    additionalProperties: false
                required:
                  - error
                additionalProperties: false
        '429':
          description: Too Many Requests – rate limit exceeded
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      type:
                        type: string
                      code:
                        type: string
                      message:
                        type: string
                      errors:
                        type: array
                        items: {}
                    required:
                      - type
                      - message
                    additionalProperties: false
                required:
                  - error
                additionalProperties: false
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      type:
                        type: string
                      code:
                        type: string
                      message:
                        type: string
                      errors:
                        type: array
                        items: {}
                    required:
                      - type
                      - message
                    additionalProperties: false
                required:
                  - error
                additionalProperties: false
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Bearer access token from POST /_api/auth

````