Lemon Markets Accounts: General API

The Accounts: General API from Lemon Markets — 6 operation(s) for accounts: general.

OpenAPI Specification

lemon-markets-accounts-general-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: "lemon.markets Brokerage API \uD83C\uDF4B Accounts: General API"
  version: 0.1.0
servers:
- url: https://sandbox.api.lemon.markets/v1
  description: Sandbox
security:
- bearerAuth: []
tags:
- name: 'Accounts: General'
paths:
  /accounts:
    post:
      tags:
      - 'Accounts: General'
      summary: Create Account
      operationId: create_account
      parameters:
      - required: true
        schema:
          title: Lmg-Data-Privacy-Access-Principal
          type: string
        name: LMG-Data-Privacy-Access-Principal
        in: header
      - required: true
        schema:
          title: Lmg-Data-Privacy-Access-Justification
          type: string
        name: LMG-Data-Privacy-Access-Justification
        in: header
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateAccountRequest'
            example:
              accepted_agreements:
              - accepted_at: '2023-06-29T14:39:29Z'
                agreement_id: agr_9902271f791d413aad781763c61b9bb0
              - accepted_at: '2023-06-29T14:39:29Z'
                agreement_id: agr_8ec894e1ec764a339e172292dff9aeff
              customer:
                date_of_birth: '1964-08-13'
                email: erika.mustermann@example.com
                employment:
                  annual_salary: gte_50k_lt_75k_eur
                  sector: public_sector
                  status: employed
                firstname: Erika
                gender: female
                lastname: Mustermann
                marital_status: married
                nationalities:
                - DE
                phone_number: '+49172997318'
                place_of_birth:
                  city: Berlin
                  country: DE
                registered_address:
                  city: Köln
                  country: DE
                  line_1: Heidestraße 17
                  postal_code: '51147'
                tax_residencies:
                - country: DE
                  tax_identification_number: 123/456/78901
              declaration_of_acting_on_own_account: true
              metadata:
                origin_id: origin_example
                reference_account: REF123
        required: true
      responses:
        '201':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CustomerAccountResponse'
              example:
                id: cusa_c2c3f89ec0524b6e818ce00c16e4897f
                cash_account: null
                customer:
                  id: pers_8e3c698265484edbaca82ae52c9fabd7
                  date_of_birth: '1964-08-13'
                  email: erika.mustermann@example.com
                  employment:
                    annual_salary: gte_50k_lt_75k_eur
                    sector: public_sector
                    status: employed
                  firstname: Erika
                  gender: female
                  lastname: Mustermann
                  marital_status: married
                  nationalities:
                  - DE
                  phone_number: '+49172997318'
                  place_of_birth:
                    city: Berlin
                    country: DE
                  registered_address:
                    city: Köln
                    country: DE
                    line_1: Heidestraße 17
                    line_2: null
                    postal_code: '51147'
                  tax_residencies:
                  - country: DE
                    tax_identification_number: 123/456/78901
                declaration_of_acting_on_own_account: true
                history:
                - status: created
                  timestamp: '2023-06-29T14:43:03.937676+00:00'
                securities_account: null
                status: created
                metadata:
                  origin_id: origin_example
                  reference_account: REF123
                agreements:
                - agreement: agr_9902271f791d413aad781763c61b9bb0
                  accepted_at: '2023-06-29T14:39:29Z'
                  person: pers_8e3c698265484edbaca82ae52c9fabd7
                - agreement: agr_8ec894e1ec764a339e172292dff9aeff
                  accepted_at: '2023-06-29T14:39:29Z'
                  person: pers_8e3c698265484edbaca82ae52c9fabd7
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Unprocessable Entity
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        5XX:
          description: Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
    get:
      summary: List Accounts
      operationId: list_accounts
      tags:
      - 'Accounts: General'
      parameters:
      - name: cursor
        required: false
        schema:
          title: Cursor
          type: string
        description: 'A pagination cursor.  When you receive a paginated response containing the property `pagination.next_cursor`, you can pass its value here to get the next page of results for your query.

          A cursor will include filter parameters, so there is not need to specify both the `cursor` and any other filter parameter.

          '
        in: query
      - name: limit
        required: false
        schema:
          title: Limit
          maximum: 100
          exclusiveMinimum: 0
          type: integer
          default: 100
        in: query
        description: 'In order to customize the number of elements returned, you can provide a limit here.  The service will not return more elements than specified.

          '
      - name: status
        required: false
        schema:
          $ref: '#/components/schemas/CustomerAccountStatus'
        in: query
        description: 'Provide an account status to filter results on a single account status.

          '
      - name: person_customer
        in: query
        required: false
        schema:
          type: boolean
          default: false
        description: 'If set to `true`, returns a simplified person customer object containing only the type and person ID, instead of the full customer details. The parameter will be **deprecated in a future version** of this API. Once deprecated, all responses will behave as if `person_customer=true`.

          '
      - name: LMG-Data-Privacy-Access-Principal
        required: true
        schema:
          title: Lmg-Data-Privacy-Access-Principal
          type: string
        in: header
      - name: LMG-Data-Privacy-Access-Justification
        required: true
        schema:
          title: Lmg-Data-Privacy-Access-Justification
          type: string
        in: header
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Page_CustomerAccountResponse_'
              examples:
                full_customer:
                  summary: Full customer details (default)
                  value:
                    data:
                    - cash_account:
                        bic: BYLADEM1001
                        iban: DE02120300000000202051
                      customer:
                        date_of_birth: '1950-01-01'
                        email: john.doe@example.com
                        employment:
                          annual_salary: lt_50k_eur
                          sector: agriculture
                          status: apprenticeship
                        firstname: John
                        gender: male
                        lastname: Doe
                        marital_status: single
                        nationalities:
                        - DE
                        phone_number: '+49123123123'
                        place_of_birth:
                          city: Berlin
                          country: DE
                        registered_address:
                          city: Berlin
                          country: DE
                          line_1: Kottbusser Damn 79
                          line_2: null
                          postal_code: '12345'
                        tax_residencies:
                        - country: DE
                          tax_identification_number: '123123123'
                      declaration_of_acting_on_own_account: true
                      history:
                      - status: created
                        timestamp: '2023-06-12T17:23:16.975969+00:00'
                      id: cusa_20323d55bb264d42b0b225d293591049
                      securities_account:
                        number: '000000044'
                      status: created
                      agreements:
                      - agreement: agr_9902271f791d413aad781763c61b9bb0
                        accepted_at: '2023-06-29T14:39:29Z'
                        person: pers_f1e3a7f504414b5e99041ebc1c0f55cd
                      - agreement: agr_8ec894e1ec764a339e172292dff9aeff
                        accepted_at: '2023-06-29T14:39:29Z'
                        person: pers_f1e3a7f504414b5e99041ebc1c0f55cd
                simplified_person:
                  summary: Simplified person customer (person_customer=true)
                  value:
                    data:
                    - cash_account:
                        bic: BYLADEM1001
                        iban: DE02120300000000202051
                      customer:
                        type: person
                        id: pers_f1e3a7f504414b5e99041ebc1c0f55cd
                        person: pers_f1e3a7f504414b5e99041ebc1c0f55cd
                      declaration_of_acting_on_own_account: true
                      history:
                      - status: created
                        timestamp: '2023-06-12T17:23:16.975969+00:00'
                      id: cusa_20323d55bb264d42b0b225d293591049
                      securities_account:
                        number: '000000044'
                      status: created
                      agreements:
                      - agreement: agr_9902271f791d413aad781763c61b9bb0
                        accepted_at: '2023-06-29T14:39:29Z'
                        person: pers_f1e3a7f504414b5e99041ebc1c0f55cd
                      - agreement: agr_8ec894e1ec764a339e172292dff9aeff
                        accepted_at: '2023-06-29T14:39:29Z'
                        person: pers_f1e3a7f504414b5e99041ebc1c0f55cd
                business_customer:
                  summary: Business customer account
                  value:
                    data:
                    - cash_account:
                        bic: BYLADEM1001
                        iban: DE02120300000000202051
                      customer:
                        type: business
                        id: le_3a0baf04657b4fb9bcaa03d8120b5e9e
                        business: le_3a0baf04657b4fb9bcaa03d8120b5e9e
                      declaration_of_acting_on_own_account: true
                      history:
                      - status: created
                        timestamp: '2023-06-12T17:23:16.975969+00:00'
                      id: cusa_20323d55bb264d42b0b225d293591049
                      securities_account:
                        number: '000000044'
                      status: created
                      agreements:
                      - agreement: agr_9902271f791d413aad781763c61b9bb0
                        accepted_at: '2023-06-29T14:39:29Z'
                        person: pers_f1e3a7f504414b5e99041ebc1c0f55cd
                      - agreement: agr_8ec894e1ec764a339e172292dff9aeff
                        accepted_at: '2023-06-29T14:39:29Z'
                        person: pers_f1e3a7f504414b5e99041ebc1c0f55cd
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Unprocessable Entity
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        5XX:
          description: Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
  /accounts/{account_id}:
    get:
      summary: Get Account
      operationId: get_account
      tags:
      - 'Accounts: General'
      parameters:
      - name: account_id
        required: true
        schema:
          title: Account Identifier
          type: string
        in: path
        example: cusa_c2c3f89ec0524b6e818ce00c16e4897f
        description: 'An account identifier.

          '
      - required: true
        schema:
          title: Lmg-Data-Privacy-Access-Principal
          type: string
        name: LMG-Data-Privacy-Access-Principal
        in: header
      - required: true
        schema:
          title: Lmg-Data-Privacy-Access-Justification
          type: string
        name: LMG-Data-Privacy-Access-Justification
        in: header
      - name: person_customer
        in: query
        required: false
        schema:
          type: boolean
          default: false
        description: 'If set to `true`, returns a simplified person customer object containing only the type and person ID, instead of the full customer details. The parameter will be **deprecated in a future version** of this API. Once deprecated, all responses will behave as if `person_customer=true`.

          '
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CustomerAccountResponse'
              examples:
                full_customer:
                  summary: Full customer details (default)
                  value:
                    cash_account:
                      bic: BYLADEM1001
                      iban: DE02120300000000202051
                    customer:
                      date_of_birth: '1950-01-01'
                      email: john.doe@example.com
                      employment:
                        annual_salary: lt_50k_eur
                        sector: agriculture
                        status: apprenticeship
                      firstname: John
                      gender: male
                      lastname: Doe
                      marital_status: single
                      nationalities:
                      - DE
                      phone_number: '+49123123123'
                      place_of_birth:
                        city: Berlin
                        country: DE
                      registered_address:
                        city: Berlin
                        country: DE
                        line_1: Kottbusser Damn 79
                        line_2: null
                        postal_code: '12345'
                      tax_residencies:
                      - country: DE
                        tax_identification_number: '123123123'
                    declaration_of_acting_on_own_account: true
                    history:
                    - status: created
                      timestamp: '2023-06-12T17:23:16.975969+00:00'
                    id: cusa_20323d55bb264d42b0b225d293591049
                    securities_account:
                      number: '000000044'
                    status: created
                    agreements:
                    - agreement: agr_9902271f791d413aad781763c61b9bb0
                      accepted_at: '2023-06-29T14:39:29Z'
                      person: pers_f1e3a7f504414b5e99041ebc1c0f55cd
                    - agreement: agr_8ec894e1ec764a339e172292dff9aeff
                      accepted_at: '2023-06-29T14:39:29Z'
                      person: pers_f1e3a7f504414b5e99041ebc1c0f55cd
                simplified_person:
                  summary: Simplified person customer (person_customer=true)
                  value:
                    cash_account:
                      bic: BYLADEM1001
                      iban: DE02120300000000202051
                    customer:
                      type: person
                      id: pers_f1e3a7f504414b5e99041ebc1c0f55cd
                      person: pers_f1e3a7f504414b5e99041ebc1c0f55cd
                    declaration_of_acting_on_own_account: true
                    history:
                    - status: created
                      timestamp: '2023-06-12T17:23:16.975969+00:00'
                    id: cusa_20323d55bb264d42b0b225d293591049
                    securities_account:
                      number: '000000044'
                    status: created
                    agreements:
                    - agreement: agr_9902271f791d413aad781763c61b9bb0
                      accepted_at: '2023-06-29T14:39:29Z'
                      person: pers_f1e3a7f504414b5e99041ebc1c0f55cd
                    - agreement: agr_8ec894e1ec764a339e172292dff9aeff
                      accepted_at: '2023-06-29T14:39:29Z'
                      person: pers_f1e3a7f504414b5e99041ebc1c0f55cd
                business_customer:
                  summary: Business customer account
                  value:
                    cash_account:
                      bic: BYLADEM1001
                      iban: DE02120300000000202051
                    customer:
                      type: business
                      id: le_3a0baf04657b4fb9bcaa03d8120b5e9e
                      business: le_3a0baf04657b4fb9bcaa03d8120b5e9e
                    declaration_of_acting_on_own_account: true
                    history:
                    - status: created
                      timestamp: '2023-06-12T17:23:16.975969+00:00'
                    id: cusa_20323d55bb264d42b0b225d293591049
                    securities_account:
                      number: '000000044'
                    status: created
                    agreements:
                    - agreement: agr_9902271f791d413aad781763c61b9bb0
                      accepted_at: '2023-06-29T14:39:29Z'
                      person: pers_f1e3a7f504414b5e99041ebc1c0f55cd
                    - agreement: agr_8ec894e1ec764a339e172292dff9aeff
                      accepted_at: '2023-06-29T14:39:29Z'
                      person: pers_f1e3a7f504414b5e99041ebc1c0f55cd
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Unprocessable Entity
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        5XX:
          description: Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
  /accounts/{account_id}/authenticators:
    post:
      summary: Create Authenticator
      operationId: create_authenticator
      tags:
      - 'Accounts: General'
      parameters:
      - name: account_id
        required: true
        schema:
          title: Account Identifier
          type: string
        in: path
        example: cusa_c2c3f89ec0524b6e818ce00c16e4897f
        description: 'An account identifier.

          '
      - required: true
        schema:
          type: string
          title: Lmg-Data-Privacy-Access-Principal
        name: LMG-Data-Privacy-Access-Principal
        in: header
      - required: true
        schema:
          type: string
          title: Lmg-Data-Privacy-Access-Justification
        name: LMG-Data-Privacy-Access-Justification
        in: header
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateAuthenticatorRequest'
        required: true
      responses:
        '201':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuthenticatorResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Unprocessable Entity
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        5XX:
          description: Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
    get:
      summary: List Authenticators
      operationId: list_authenticators
      tags:
      - 'Accounts: General'
      parameters:
      - name: account_id
        required: true
        schema:
          title: Account Identifier
          type: string
        in: path
        example: cusa_c2c3f89ec0524b6e818ce00c16e4897f
        description: 'An account identifier.

          '
      - name: cursor
        required: false
        schema:
          title: Cursor
          type: string
        description: 'A pagination cursor.  When you receive a paginated response containing the property `pagination.next_cursor`, you can pass its value here to get the next page of results for your query.

          A cursor will include filter parameters, so there is not need to specify both the `cursor` and any other filter parameter.

          '
        in: query
      - name: limit
        required: false
        schema:
          title: Limit
          maximum: 100
          exclusiveMinimum: 0
          type: integer
          default: 100
        in: query
        description: 'In order to customize the number of elements returned, you can provide a limit here.  The service will not return more elements than specified.

          '
      - name: LMG-Data-Privacy-Access-Principal
        required: true
        schema:
          type: string
          title: Lmg-Data-Privacy-Access-Principal
        in: header
      - name: LMG-Data-Privacy-Access-Justification
        required: true
        schema:
          type: string
          title: Lmg-Data-Privacy-Access-Justification
        in: header
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EncodedPaginatedCollectionResponse_AuthenticatorResponse_'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Unprocessable Entity
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        5XX:
          description: Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
  /accounts/{account_id}/checks:
    get:
      summary: Get Account Checks
      tags:
      - 'Accounts: General'
      operationId: get_account_checks
      parameters:
      - name: account_id
        required: true
        schema:
          title: Account Identifier
          type: string
        in: path
        example: cusa_c2c3f89ec0524b6e818ce00c16e4897f
        description: 'An account identifier.

          '
      - name: cursor
        required: false
        schema:
          title: Cursor
          type: string
        description: 'A pagination cursor.  When you receive a paginated response containing the property `pagination.next_cursor`, you can pass its value here to get the next page of results for your query.

          A cursor will include filter parameters, so there is not need to specify both the `cursor` and any other filter parameter.

          '
        in: query
      - name: limit
        required: false
        schema:
          title: Limit
          maximum: 100
          exclusiveMinimum: 0
          type: integer
          default: 100
        in: query
        description: 'In order to customize the number of elements returned, you can provide a limit here.  The service will not return more elements than specified.

          '
      - name: LMG-Data-Privacy-Access-Principal
        required: true
        schema:
          title: Lmg-Data-Privacy-Access-Principal
          type: string
        in: header
      - name: LMG-Data-Privacy-Access-Justification
        required: true
        schema:
          title: Lmg-Data-Privacy-Access-Justification
          type: string
        in: header
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Page_CustomerAccountCheckResponse_'
              example:
                data:
                - data: null
                  history:
                  - status: action_required
                    timestamp: '2023-08-11T16:00:50.837846+00:00'
                  status: action_required
                  type: authenticator_enrollment
                - data: null
                  history:
                  - status: action_required
                    timestamp: '2023-06-29T14:43:03.937676+00:00'
                  status: action_required
                  type: identity_verification
                - data: null
                  history:
                  - status: processing
                    timestamp: '2023-06-29T14:43:03.937676+00:00'
                  status: processing
                  type: risk_assessment
                pagination:
                  next_cursor: null
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Unprocessable Entity
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        5XX:
          description: Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
  /accounts/{account_id}/experience:
    post:
      summary: Set Experience Profile
      operationId: set_experience_profile
      tags:
      - 'Accounts: General'
      parameters:
      - name: account_id
        required: true
        schema:
          title: Account Identifier
          type: string
        in: path
        example: cusa_c2c3f89ec0524b6e818ce00c16e4897f
        description: 'An account identifier.

          '
      - required: true
        schema:
          title: Lmg-Data-Privacy-Access-Principal
          type: string
        name: LMG-Data-Privacy-Access-Principal
        in: header
      - required: true
        schema:
          title: Lmg-Data-Privacy-Access-Justification
          type: string
        name: LMG-Data-Privacy-Access-Justification
        in: header
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ExperienceTransition-Input'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExperienceTransition-Output'
              example:
                non_complex_products:
                  experience: none
                  knowledge: none
                structured_investment_products: null
                swap_based_ucits_and_alternative_investment_funds: null
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Unprocessable Entity
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        5XX:
          description: Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
    get:
      summary: Get Experience Profile
      tags:
      - 'Accounts: General'
      operationId: get_experience_profile
      parameters:
      - name: account_id
        in: path
        required: true
        schema:
          type: string
          title: Account Id
      - name: LMG-Data-Privacy-Access-Principal
        in: header
        required: true
        schema:
          type: string
          title: Lmg-Data-Privacy-Access-Principal
      - name: LMG-Data-Privacy-Access-Justification
        in: header
        required: true
        schema:
          type: string
          title: Lmg-Data-Privacy-Access-Justification
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExperienceTransition-Output'
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Bad Request
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Unauthorized
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Not Found
        '422':
          content:
            application/json

# --- truncated at 32 KB (86 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/lemon-markets/refs/heads/main/openapi/lemon-markets-accounts-general-api-openapi.yml