Zero Hash Customer Accounts (MTA) API

Create and Manage Customer Accounts (MTA)

Operations 14

POST /accounts Create customer account
PATCH /accounts/{zrn} Update customer account
GET /accounts/{zrn}/details Get account details
POST /accounts/{zrn}/lock Lock customer account
POST /accounts/{zrn}/unlock Unlock customer account
POST /accounts/{zrn}/withdraw_lock Withdraw lock customer account
POST /accounts/{zrn}/withdraw_unlock Withdraw unlock customer account
POST /accounts/{zrn}/divest Divest customer account
POST /accounts/{zrn}/advisors Add advisor to customer account
POST /accounts/{zrn}/tenants Add tenant to customer account
DELETE /accounts/{zrn}/advisors/{financial_advisor} Remove advisor from customer account
DELETE /accounts/{zrn}/tenants/{tenant} Remove tenant from customer account
POST /accounts/{zrn}/close Close customer account
GET /account/{zrn}/status_reason Get customer account status reason

Documentation

Specifications

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/zero-hash-customer-accounts-mta-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

zero-hash-customer-accounts-mta-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: zerohash Customer Accounts (MTA) Customer Accounts (MTA) Customer Accounts (MTA) API
  description: '

    ### Authentication


    zerohash Uses HMAC SHA-256 verification to ensure the authenticity of API requests, follow instructions by link [https://docs.zerohash.com/reference/api-authentication](https://docs.zerohash.com/reference/api-authentication)


    <a href="/zh-swagger.json">Download zerohash OpenAPI Schema as JSON</a>

    '
  version: 1.7.0
servers:
- url: https://api.cert.zerohash.com
  description: Certification API server
security:
- apiKey: []
  apiPassphrase: []
tags:
- name: Customer Accounts (MTA)
  description: Create and Manage Customer Accounts (MTA)
paths:
  /accounts:
    post:
      tags:
      - Customer Accounts (MTA)
      summary: Create customer account
      description: Creates a new customer account. The pair (`participant_code`, `account_label`) is unique per participant and is used as idempotency check rather than `X-Request-Id`; submitting the same pair a second time returns an error rather than creating a duplicate.
      parameters:
      - $ref: '#/components/parameters/Signature'
      - $ref: '#/components/parameters/Timestamp'
      requestBody:
        description: Request body containing the customer account details to create.
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PostCustomerAccountRequest'
      responses:
        '202':
          description: "Creating a customer account is an asynchronous process that does several operations in the background after the response is returned. \n Customers are advised to listen to the `customer_account_status_changed` webhook event to be notified when the account is active and ready to use."
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CustomerAccountResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code400'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code403'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code404'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code500'
        '503':
          description: Service Unavailable
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code503'
  /accounts/{zrn}:
    patch:
      tags:
      - Customer Accounts (MTA)
      summary: Update customer account
      description: 'Updates prefunded and tier values for an existing customer account. '
      parameters:
      - $ref: '#/components/parameters/Signature'
      - $ref: '#/components/parameters/Timestamp'
      - name: zrn
        in: path
        description: 'The ZRN of the customer account to add advisor to. The ZRN must be in the format: `zrn:zh:eu:account:customer:<uuid>`'
        required: true
        schema:
          type: string
      requestBody:
        description: New prefunded and tier values for the account
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateCustomerAccountBody'
      responses:
        '202':
          description: "Customer account updated successfully. Updating an existing customer account is an asynchronous process that does several operations in the background after the response is returned. \n Customers are advised to listen to the `customer_account_status_changed` webhook event to be notified when the account is active and ready to use."
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CustomerAccountResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code400'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code403'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code404'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code500'
        '503':
          description: Service Unavailable
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code503'
  /accounts/{zrn}/details:
    get:
      tags:
      - Customer Accounts (MTA)
      summary: Get account details
      description: Retrieves customer account details
      parameters:
      - $ref: '#/components/parameters/Signature'
      - $ref: '#/components/parameters/Timestamp'
      - name: zrn
        in: path
        description: "Get customer account by account zrn, assigned to the account at creation by zerohash. \nFormat: `zrn:zh:eu:account:customer:<uuid>`."
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successfully retrieved customer account details.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CustomerAccountResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code400'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code403'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code404'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code500'
        '503':
          description: Service Unavailable
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code503'
  /accounts/{zrn}/lock:
    post:
      tags:
      - Customer Accounts (MTA)
      summary: Lock customer account
      description: Locks an existing customer account
      parameters:
      - $ref: '#/components/parameters/Signature'
      - $ref: '#/components/parameters/Timestamp'
      - name: zrn
        in: path
        description: 'The ZRN of the customer account to lock. The ZRN must be in the format: `zrn:zh:eu:account:customer:<uuid>`'
        required: true
        schema:
          type: string
      requestBody:
        description: Request body containing the reason and metadata for locking the customer account.
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/LockCustomerAccountBody'
      responses:
        '202':
          description: Request to lock the customer account accepted. The lock is applied asynchronously; clients should listen for the `customer_account_status_changed` webhook event to observe the new state.
          content:
            application/json:
              schema:
                type: object
                description: Empty JSON object.
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code400'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code403'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code404'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code500'
        '503':
          description: Service Unavailable
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code503'
  /accounts/{zrn}/unlock:
    post:
      tags:
      - Customer Accounts (MTA)
      summary: Unlock customer account
      description: Unlocks an existing customer account
      parameters:
      - $ref: '#/components/parameters/Signature'
      - $ref: '#/components/parameters/Timestamp'
      - name: zrn
        in: path
        description: 'The ZRN of the customer account to unlock. The ZRN must be in the format: `zrn:zh:eu:account:customer:<uuid>`'
        required: true
        schema:
          type: string
      requestBody:
        description: Request body containing the reason and metadata for unlocking the customer account.
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UnlockCustomerAccountBody'
      responses:
        '202':
          description: Request to unlock the customer account accepted. The unlock is applied asynchronously; clients should listen for the `customer_account_status_changed` webhook event to observe the new state.
          content:
            application/json:
              schema:
                type: object
                description: Empty JSON object.
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code400'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code403'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code404'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code500'
        '503':
          description: Service Unavailable
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code503'
  /accounts/{zrn}/withdraw_lock:
    post:
      tags:
      - Customer Accounts (MTA)
      summary: Withdraw lock customer account
      description: Locks withdrawals for an existing customer account
      parameters:
      - $ref: '#/components/parameters/Signature'
      - $ref: '#/components/parameters/Timestamp'
      - name: zrn
        in: path
        description: 'The ZRN of the customer account to withdraw lock. The ZRN must be in the format: `zrn:zh:eu:account:customer:<uuid>`'
        required: true
        schema:
          type: string
      requestBody:
        description: Request body containing the reason and metadata for withdraw locking the customer account.
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/WithdrawLockCustomerAccountBody'
      responses:
        '202':
          description: Request to withdraw-lock the customer account accepted. The withdraw lock is applied asynchronously; clients should listen for the `customer_account_status_changed` webhook event to observe the new state.
          content:
            application/json:
              schema:
                type: object
                description: Empty JSON object.
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code400'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code403'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code404'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code500'
        '503':
          description: Service Unavailable
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code503'
  /accounts/{zrn}/withdraw_unlock:
    post:
      tags:
      - Customer Accounts (MTA)
      summary: Withdraw unlock customer account
      description: Unlocks withdrawals for an existing customer account
      parameters:
      - $ref: '#/components/parameters/Signature'
      - $ref: '#/components/parameters/Timestamp'
      - name: zrn
        in: path
        description: 'The ZRN of the customer account to withdraw unlock. The ZRN must be in the format: `zrn:zh:eu:account:customer:<uuid>`'
        required: true
        schema:
          type: string
      requestBody:
        description: Request body containing the reason and metadata for withdraw unlocking the customer account.
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/WithdrawUnlockCustomerAccountBody'
      responses:
        '202':
          description: Request to withdraw-unlock the customer account accepted. The withdraw unlock is applied asynchronously; clients should listen for the `customer_account_status_changed` webhook event to observe the new state.
          content:
            application/json:
              schema:
                type: object
                description: Empty JSON object.
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code400'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code403'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code404'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code500'
        '503':
          description: Service Unavailable
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code503'
  /accounts/{zrn}/divest:
    post:
      tags:
      - Customer Accounts (MTA)
      summary: Divest customer account
      description: Divests an existing customer account
      parameters:
      - $ref: '#/components/parameters/Signature'
      - $ref: '#/components/parameters/Timestamp'
      - name: zrn
        in: path
        description: 'The ZRN of the customer account to divest. The ZRN must be in the format: `zrn:zh:eu:account:customer:<uuid>`'
        required: true
        schema:
          type: string
      requestBody:
        description: Request body containing the reason and metadata for divesting the customer account.
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DivestCustomerAccountBody'
      responses:
        '202':
          description: Request to divest the customer account accepted. Divestment is applied asynchronously; clients should listen for the `customer_account_status_changed` webhook event to observe the new state.
          content:
            application/json:
              schema:
                type: object
                description: Empty JSON object.
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code400'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code403'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code404'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code500'
        '503':
          description: Service Unavailable
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code503'
  /accounts/{zrn}/advisors:
    post:
      tags:
      - Customer Accounts (MTA)
      summary: Add advisor to customer account
      description: Adds an advisor to an existing customer account
      parameters:
      - $ref: '#/components/parameters/Signature'
      - $ref: '#/components/parameters/Timestamp'
      - name: zrn
        in: path
        description: 'The ZRN of the customer account to add advisor to. The ZRN must be in the format: `zrn:zh:eu:account:customer:<uuid>`'
        required: true
        schema:
          type: string
      requestBody:
        description: Advisor information to add to the account
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AddAdvisorToCustomerAccountBody'
      responses:
        '202':
          description: Request to add the advisor to the customer account accepted. The change is applied asynchronously.
          content:
            application/json:
              schema:
                type: object
                description: Empty JSON object.
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code400'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code403'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code404'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code500'
        '503':
          description: Service Unavailable
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code503'
  /accounts/{zrn}/tenants:
    post:
      tags:
      - Customer Accounts (MTA)
      summary: Add tenant to customer account
      description: Adds a tenant to an existing customer account
      parameters:
      - $ref: '#/components/parameters/Signature'
      - $ref: '#/components/parameters/Timestamp'
      - name: zrn
        in: path
        description: 'The ZRN of the customer account to add tenant to. The ZRN must be in the format: `zrn:zh:eu:account:customer:<uuid>`'
        required: true
        schema:
          type: string
      requestBody:
        description: Tenant information to add to the account
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AddTenantToCustomerAccountBody'
      responses:
        '202':
          description: Request to add the tenant to the customer account accepted. The change is applied asynchronously.
          content:
            application/json:
              schema:
                type: object
                description: Empty JSON object.
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code400'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code403'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code404'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code500'
        '503':
          description: Service Unavailable
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code503'
  /accounts/{zrn}/advisors/{financial_advisor}:
    delete:
      tags:
      - Customer Accounts (MTA)
      summary: Remove advisor from customer account
      description: Removes an advisor from an existing customer account
      parameters:
      - $ref: '#/components/parameters/Signature'
      - $ref: '#/components/parameters/Timestamp'
      - name: zrn
        in: path
        description: 'The ZRN of the customer account to remove advisor from. The ZRN must be in the format: `zrn:zh:eu:account:customer:<uuid>`'
        required: true
        schema:
          type: string
      - name: financial_advisor
        in: path
        description: 'The financial advisor identifier to remove from the customer account. '
        required: true
        schema:
          type: string
          minLength: 6
          maxLength: 6
        example: ADV001
      responses:
        '202':
          description: Request to remove the advisor from the customer account accepted. The change is applied asynchronously.
          content:
            application/json:
              schema:
                type: object
                description: Empty JSON object.
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code400'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code403'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code404'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code500'
        '503':
          description: Service Unavailable
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code503'
  /accounts/{zrn}/tenants/{tenant}:
    delete:
      tags:
      - Customer Accounts (MTA)
      summary: Remove tenant from customer account
      description: Removes a tenant from an existing customer account
      parameters:
      - $ref: '#/components/parameters/Signature'
      - $ref: '#/components/parameters/Timestamp'
      - name: zrn
        in: path
        description: 'The ZRN of the customer account to remove tenant from. The ZRN must be in the format: `zrn:zh:eu:account:customer:<uuid>`'
        required: true
        schema:
          type: string
          pattern: ^zrn:zh:[a-z]{2}:account:customer:[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$
        example: zrn:zh:eu:account:customer:fcb1a806-0096-49c7-ac53-6e3daf2b58c5
      - name: tenant
        in: path
        description: The participant code of the tenant to remove from the customer account. The participant code must be 6 characters long.
        required: true
        schema:
          type: string
          minLength: 6
          maxLength: 6
        example: PLAT01
      responses:
        '202':
          description: Request to remove the tenant from the customer account accepted. The change is applied asynchronously.
          content:
            application/json:
              schema:
                type: object
                description: Empty JSON object.
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code400'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code403'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code404'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code500'
        '503':
          description: Service Unavailable
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code503'
  /accounts/{zrn}/close:
    post:
      tags:
      - Customer Accounts (MTA)
      summary: Close customer account
      description: Closes an existing customer account
      parameters:
      - $ref: '#/components/parameters/Signature'
      - $ref: '#/components/parameters/Timestamp'
      - name: zrn
        in: path
        description: 'The ZRN of the customer account to close. The ZRN must be in the format: `zrn:zh:eu:account:customer:<uuid>`'
        required: true
        schema:
          type: string
      requestBody:
        description: Request body containing the reason and metadata for closing the customer account.
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CloseCustomerAccountBody'
      responses:
        '202':
          description: Request to close the customer account accepted. Closure is applied asynchronously; clients should listen for the `customer_account_status_changed` webhook event to observe the new state.
          content:
            application/json:
              schema:
                type: object
                description: Empty JSON object.
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code400'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code403'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code404'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code500'
        '503':
          description: Service Unavailable
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code503'
  /account/{zrn}/status_reason:
    get:
      tags:
      - Customer Accounts (MTA)
      summary: Get customer account status reason
      description: This endpoint returns detailed information about customer account status, including lock reason codes. This endpoint is disabled by default and enabled per platform using feature flags.
      parameters:
      - $ref: '#/components/parameters/Signature'
      - $ref: '#/components/parameters/Timestamp'
      - name: zrn
        in: path
        description: The customer account identifier to get status reason details for
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Customer account status reason details retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetCustomerAccountStatusReasonBody'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code400'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code403'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code404'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code500'
        '503':
          description: Service Unavailable
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Code503'
components:
  schemas:
    Code400:
      type: object
      description: Request was rejected by validation or a downstream service. `errors` is an array of human-readable messages; each entry describes a single validation failure or business-rule violation.
      required:
      - errors
      properties:
        errors:
          type: array
          items:
            type: string
          example:
          - body/amount must be >= 0
          - body/asset is required
    CloseCustomerAccountBody:
      type: object
      properties: {}
    PostCustomerAccountRequest:
      oneOf:
      - type: object
        title: Individual Customer Account
        description: The `individual` account type is for accounts owned by an individual. This is the most common account type and is suitable for most use cases.
        properties:
          participant_code:
            type: string
            description: The `participant_code` is the primary account holder.
            example: PAR001
          account_label:
            type: string
            description: The platform-dictated account label for the participants account. Accounts labels created for the same participant must have a different `account_label` value, and all maintain an individual balance.
            example: custom-account-label
          prefunded:
            type: boolean
            description: "Indicates whether the participant is using a prefunded model, or using the plaform float funding model to fund buy trades. \n\n - If `true`, the participant is prefunding their account and will be responsible for ensuring they have sufficient balance in their account to cover trades. \n - If `false`, the platform will fund trades from their float balance at zerohash, on behalf of the participant and settle at the end of the day. "
            example: false
          tier:
            type: string
            enum:
            - lite
            - pro
            - bronze
            - silver
            - gold
            description: The account `tier` associated with the account with regards to the commission structure defined by the platform. The specific tier values available depend on the platform configuration.
            example: pro
          type:
            type: string
            enum:
            - individual
            description: The account type associated with the account
            example: individual
          tenants:
            type: array
            items:
              type: string
            description: Tenants are the second owners of the account and have the same permissions as the primary account holder. Each tenant must be an onboarded participant to zerohash and not the same as the primary account holder.
            example:
            - PAR002
          financial_advisors:
            type: array
            items:
              type: string
            description: The Financial Advisors of the participant which must be an onboarded participant to zerohash and not the same as the primary account holder.
            example:
            - PAR003
        required:
        - participant_code
        - account_label
        - type
        - tier
        - prefunded
      - type: object
        title: Business Customer Account
        description: The `business` account type is for accounts owned by a business entity. This type is suitable for organizations and companies.
        properties:
          participant_code:
            type: string
            description: The `participant_code` is the primary account holde

# --- truncated at 32 KB (61 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/zero-hash/refs/heads/main/openapi/zero-hash-customer-accounts-mta-api-openapi.yml