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

# Submit a due diligence form

> Submit an enhanced due diligence form for a business entity. Some industries require additional due diligence before the application can be submitted (check `next_step.missing` on the onboarding status). Only forms that collect plain data are accepted here; forms that require document uploads must be completed in the web app. Returns the updated onboarding status.



## OpenAPI

````yaml POST /entities/{entity_id}/due-diligence
openapi: 3.1.0
info:
  title: Meow API
  description: >
    ## Overview


    The Meow API provides financial services and billing capabilities for your
    business.


    ### Core Features


    - **Financial data access**: access account information, transactions,
    balances, and payment networks.

    - **Crypto operations**: create and manage crypto contacts, and initiate
    USDC transfers across blockchain networks.


    ### Billing API


    The Billing API lets you create and manage invoices and collect payments:


    - **Product management**: create and manage products with custom pricing.

    - **Customer management**: maintain invoicing customers with their
    addresses.

    - **Invoice creation**: generate invoices with line items, discounts, and
    custom notes.

    - **Payment options**: accept payments via ACH, wire, international wire,
    card, and USDC.

    - **Collection accounts**: configure accounts for payment collection.


    ### Getting Started


    Authenticate by sending your API key in the `x-api-key` request header.


    To scope requests to a specific entity, include the `x-entity-id` header.
    Use the `/api-keys/accessible-entities` endpoint to list all entities
    accessible by your API key.


    ### Error Responses


    Errors return JSON with `code`, `message`, and `debug_message`. The `code`
    aligns with FDX where possible; use `debug_message` for troubleshooting
    only.


    Common error codes:


    - `500`: Internal server error

    - `501`: Subsystem unavailable

    - `503`: Scheduled maintenance

    - `601`: Data not found

    - `602`: Customer not authorized

    - `701`: Account not found

    - `703`: Invalid input (including invalid date ranges)

    - `704`: Account type not supported

    - `705`: Account is closed

    - `801`: Transaction not found
  contact:
    name: Meow
    url: https://meow.com/
    email: support@meow.com
  version: 1.0.0
  license:
    name: Proprietary
    url: https://www.meow.com/terms-of-service
servers:
  - url: https://api.meow.com/v1
    description: Meow API Production
  - url: https://api.sandbox.meow.com/v1
    description: Meow API Sandbox
security:
  - apiKeyAuth: []
tags:
  - name: API Keys
    description: Retrieve metadata about API keys and their accessible entities.
  - name: Accounts
    description: Access and manage accounts.
  - name: Approvals
  - name: Balances
    description: Retrieve account balances and available funds.
  - name: Bills
    description: View and manage bills for vendor payments.
  - name: Cards
    description: Manage virtual and physical cards, and view transactions and insights.
  - name: Collection Accounts
    description: Manage accounts for payment collection.
  - name: Contacts
    description: Manage contacts for crypto and USDC transfers.
  - name: Customers
    description: Manage invoicing customers and their details.
  - name: Entities
  - name: Invoices
    description: Create and manage invoices.
  - name: Limits
  - name: Line Items
    description: Manage invoice line items.
  - name: Partner Onboarding
    description: Onboard entities using your partner API key.
  - name: Partner Webhooks
  - name: Payment Methods
    description: View available payment method types.
  - name: Payment Networks
    description: Manage payment networks and routing information.
  - name: Products
    description: Manage products and pricing for invoicing.
  - name: Routing Numbers
    description: Validate routing numbers and retrieve bank information.
  - name: Security Policies
  - name: Simulations
    description: >-
      Trigger simulated events — inbound transfers, card authorizations,
      application approval — to test integrations end-to-end without real money
      movement. **Not available in production**: these endpoints exist only in
      sandbox and development environments and return `404 Not Found` in
      production.
  - name: Tax Forms
    description: Retrieve IRS tax forms (1099 family) issued for accounts.
  - name: Transactions
    description: Retrieve account transaction history and details.
  - name: Transfers
    description: >-
      Initiate ACH, wire, book, and crypto transfers, and retrieve transfer
      details.
  - name: Webhooks
    description: Manage webhook subscriptions and inspect delivery history.
paths:
  /entities/{entity_id}/due-diligence:
    post:
      tags:
        - Entities
      summary: Submit Due Diligence Form
      description: >-
        Submit an enhanced due diligence form for a business entity. Some
        industries require additional due diligence before the application can
        be submitted (check `next_step.missing` on the onboarding status). Only
        forms that collect plain data are accepted here; forms that require
        document uploads must be completed in the web app. Returns the updated
        onboarding status.
      operationId: submit_entity_due_diligence_entities__entity_id__due_diligence_post
      parameters:
        - name: entity_id
          in: path
          required: true
          schema:
            type: string
            title: Entity Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              oneOf:
                - $ref: '#/components/schemas/InvestmentsEddFormRequest'
                - $ref: '#/components/schemas/HoldingsEddFormRequest'
                - $ref: '#/components/schemas/MpmEddFormRequest'
                - $ref: '#/components/schemas/RealEstateEddFormRequest'
                - $ref: '#/components/schemas/NoWebsiteEddFormRequest'
              discriminator:
                propertyName: form_type
                mapping:
                  investments:
                    $ref: '#/components/schemas/InvestmentsEddFormRequest'
                  holdings:
                    $ref: '#/components/schemas/HoldingsEddFormRequest'
                  mpm:
                    $ref: '#/components/schemas/MpmEddFormRequest'
                  real_estate:
                    $ref: '#/components/schemas/RealEstateEddFormRequest'
                  no_website:
                    $ref: '#/components/schemas/NoWebsiteEddFormRequest'
              title: Request
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EntityOnboardingStatusResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - apiKeyAuth:
            - entity:create
components:
  schemas:
    InvestmentsEddFormRequest:
      properties:
        form_type:
          type: string
          const: investments
          title: Form Type
        form_data:
          $ref: '#/components/schemas/InvestmentsDueDiligence'
      type: object
      required:
        - form_type
        - form_data
      title: InvestmentsEddFormRequest
    HoldingsEddFormRequest:
      properties:
        form_type:
          type: string
          const: holdings
          title: Form Type
        form_data:
          $ref: '#/components/schemas/HoldingsDueDiligence'
      type: object
      required:
        - form_type
        - form_data
      title: HoldingsEddFormRequest
    MpmEddFormRequest:
      properties:
        form_type:
          type: string
          const: mpm
          title: Form Type
        form_data:
          $ref: '#/components/schemas/MpmDueDiligence'
      type: object
      required:
        - form_type
        - form_data
      title: MpmEddFormRequest
    RealEstateEddFormRequest:
      properties:
        form_type:
          type: string
          const: real_estate
          title: Form Type
        form_data:
          $ref: '#/components/schemas/RealEstateDueDiligence'
      type: object
      required:
        - form_type
        - form_data
      title: RealEstateEddFormRequest
    NoWebsiteEddFormRequest:
      properties:
        form_type:
          type: string
          const: no_website
          title: Form Type
        form_data:
          $ref: '#/components/schemas/NoWebsiteDueDiligence'
      type: object
      required:
        - form_type
        - form_data
      title: NoWebsiteEddFormRequest
    EntityOnboardingStatusResponse:
      properties:
        entity_id:
          type: string
          format: uuid
          title: Entity Id
          description: >-
            Public ID of the onboarded business entity, stable across the
            onboarding lifecycle and matching the `entity_id` used in the
            Customer API, MCP, and webhook payloads.
        status:
          $ref: '#/components/schemas/OnboardingApplicationStatus'
          description: Current onboarding status.
        business_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Business Name
          description: Legal business name.
        created_at:
          $ref: '#/components/schemas/Timestamp'
          description: ISO 8601 timestamp of when the entity was created.
        updated_at:
          $ref: '#/components/schemas/Timestamp'
          description: ISO 8601 timestamp of when onboarding was last updated.
        documents:
          items:
            $ref: '#/components/schemas/OnboardingDocumentStatus'
          type: array
          title: Documents
          description: Documents uploaded during onboarding.
        kyc_status:
          $ref: '#/components/schemas/OnboardingKycStatus'
          description: >-
            Identity verification status of the primary representative. After
            you submit KYC data or they complete verification, this moves to
            `pending` and resolves on its own; poll it to track progress.
            `action_required` means their verification needs another step from
            them (for example, a document): create a link with `POST
            /entities/{entity_id}/representatives/{representative_id}/verification-link`
            and share it so they can finish. See `representatives` for every
            representative's status.
        onboarding_type:
          $ref: '#/components/schemas/PublicOnboardingType'
          description: How this entity was onboarded (e.g. `api`, `smb`, `partner`).
        next_step:
          $ref: '#/components/schemas/OnboardingNextStep'
          description: >-
            What you must do next: the current onboarding step, the items still
            missing for it, and whether the application is ready to be submitted
            for review.
        representatives:
          items:
            $ref: '#/components/schemas/OnboardingRepresentativeKyc'
          type: array
          title: Representatives
          description: >-
            Every representative on the application with their identity
            verification (KYC) status. The top-level `kyc_status` reflects the
            primary representative; the application can only be approved once
            every representative is approved.
        consent_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Consent Url
          description: >-
            Link where the primary representative reviews and accepts the
            required agreements and disclosures in their browser. Populated once
            the application has been submitted; share it with the primary
            representative. The link needs no login and anyone holding it can
            accept on the business's behalf, so treat it as a secret.
      type: object
      required:
        - entity_id
        - status
        - business_name
        - created_at
        - updated_at
        - documents
        - kyc_status
        - onboarding_type
        - next_step
        - representatives
        - consent_url
      title: EntityOnboardingStatusResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    InvestmentsDueDiligence:
      properties:
        overview:
          type: string
          title: Overview
        international_investments:
          type: boolean
          title: International Investments
        countries_invested:
          anyOf:
            - items:
                $ref: '#/components/schemas/CountryCodeAlpha2'
              type: array
            - type: 'null'
          title: Countries Invested
        registered_sec:
          type: boolean
          title: Registered Sec
        current_portfolio_value:
          anyOf:
            - type: number
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
          title: Current Portfolio Value
        works_with_investors:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Works With Investors
        investors:
          anyOf:
            - $ref: '#/components/schemas/InvestorsDueDiligence'
            - type: 'null'
      type: object
      required:
        - overview
        - international_investments
        - registered_sec
        - current_portfolio_value
      title: InvestmentsDueDiligence
    HoldingsDueDiligence:
      properties:
        holding_type:
          $ref: '#/components/schemas/HoldingType-Input'
        holding_entity_type:
          items:
            $ref: '#/components/schemas/HoldingEntityType'
          type: array
          title: Holding Entity Type
        real_estate:
          anyOf:
            - $ref: '#/components/schemas/RealEstateHoldingDueDiligence'
            - type: 'null'
        investors:
          anyOf:
            - $ref: '#/components/schemas/InvestorsDueDiligence'
            - type: 'null'
      type: object
      required:
        - holding_type
        - holding_entity_type
      title: HoldingsDueDiligence
    MpmDueDiligence:
      properties:
        overview:
          type: string
          title: Overview
        services_offered:
          items:
            $ref: '#/components/schemas/MpmServicesOffered'
          type: array
          title: Services Offered
        international_businesses:
          anyOf:
            - type: boolean
            - type: 'null'
          title: International Businesses
        other_countries_operations:
          anyOf:
            - items:
                $ref: '#/components/schemas/CountryCodeAlpha2'
              type: array
            - type: 'null'
          title: Other Countries Operations
        works_with_investors:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Works With Investors
        investors:
          anyOf:
            - $ref: '#/components/schemas/InvestorsDueDiligence'
            - type: 'null'
      type: object
      required:
        - overview
        - services_offered
      title: MpmDueDiligence
    RealEstateDueDiligence:
      properties:
        overview:
          type: string
          title: Overview
        collects_rent_payments:
          type: boolean
          title: Collects Rent Payments
        property_types:
          items:
            $ref: '#/components/schemas/PropertyType'
          type: array
          title: Property Types
        restricted_purpose:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Restricted Purpose
        other_countries_invested:
          anyOf:
            - items:
                $ref: '#/components/schemas/CountryCodeAlpha2'
              type: array
            - type: 'null'
          title: Other Countries Invested
        works_with_investors:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Works With Investors
        investors:
          anyOf:
            - $ref: '#/components/schemas/InvestorsDueDiligence'
            - type: 'null'
        loan_types:
          anyOf:
            - items:
                $ref: '#/components/schemas/LoanType'
              type: array
            - type: 'null'
          title: Loan Types
        other_loan_types:
          anyOf:
            - type: string
            - type: 'null'
          title: Other Loan Types
      type: object
      required:
        - overview
        - collects_rent_payments
        - property_types
      title: RealEstateDueDiligence
    NoWebsiteDueDiligence:
      properties:
        previous_experience:
          type: string
          title: Previous Experience
        industry_certs_licenses:
          type: boolean
          title: Industry Certs Licenses
        product_service_revenue:
          type: string
          title: Product Service Revenue
        accepted_payment_methods:
          items:
            $ref: '#/components/schemas/AcceptedPaymentMethods'
          type: array
          title: Accepted Payment Methods
        customer_base:
          type: string
          title: Customer Base
      type: object
      required:
        - previous_experience
        - industry_certs_licenses
        - product_service_revenue
        - accepted_payment_methods
        - customer_base
      title: NoWebsiteDueDiligence
    OnboardingApplicationStatus:
      type: string
      enum:
        - pending_document_upload
        - pending_user_action
        - submitted
        - under_review
        - approved
        - rejected
      title: OnboardingApplicationStatus
    Timestamp:
      type: string
      format: date-time
      title: Timestamp
      description: >-
        ISO 8601 date-time in the format `YYYY-MM-DDThh:mm:ss.nnn[Z|[+|-]hh:mm]`
        (per [IETF RFC
        3339](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14)).
    OnboardingDocumentStatus:
      properties:
        proof_type:
          $ref: '#/components/schemas/PublicKybProofType'
          description: Type of KYB document on file.
        file_name:
          anyOf:
            - type: string
            - type: 'null'
          title: File Name
          description: Uploaded file name, or null if not yet uploaded.
        representative_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Representative Id
          description: >-
            The representative this document belongs to, or null for
            business-level documents.
      type: object
      required:
        - proof_type
        - file_name
      title: OnboardingDocumentStatus
    OnboardingKycStatus:
      type: string
      enum:
        - not_started
        - pending
        - action_required
        - approved
        - rejected
      title: OnboardingKycStatus
      x-enum-varnames:
        - not_started
        - pending
        - action_required
        - approved
        - rejected
    PublicOnboardingType:
      type: string
      enum:
        - api
        - smb
        - mcp
        - partner
      title: PublicOnboardingType
      x-enum-varnames:
        - api
        - smb
        - mcp
        - partner
    OnboardingNextStep:
      properties:
        step:
          $ref: '#/components/schemas/OnboardingStep'
          description: The onboarding step the application is currently on.
        phase:
          $ref: '#/components/schemas/OnboardingPhase'
          description: >-
            Coarse onboarding phase (collecting info, ready to submit, or
            submitted).
        missing:
          items:
            type: string
          type: array
          title: Missing
          description: >-
            Items you still need to provide to advance past the current step.
            Empty once the step is satisfied.
        required_proof_types:
          items:
            $ref: '#/components/schemas/PublicKybProofType'
          type: array
          title: Required Proof Types
          description: >-
            KYB documents you still owe, as `proof_type` values to pass to the
            document upload endpoint. For a non-US business this usually
            includes `incorporation`, `shareholder_registry` (your shareholder
            registry or register of members), and `officer_registry` (your
            register of directors). Empty once every required document is on
            file.
        can_submit:
          type: boolean
          title: Can Submit
          description: >-
            Whether all requirements are met and the application is ready to be
            submitted for review.
      type: object
      required:
        - step
        - phase
        - missing
        - can_submit
      title: OnboardingNextStep
    OnboardingRepresentativeKyc:
      properties:
        representative_id:
          type: string
          format: uuid
          title: Representative Id
          description: ID of the representative.
        first_name:
          anyOf:
            - type: string
            - type: 'null'
          title: First Name
          description: Legal first name.
        last_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Last Name
          description: Legal last name.
        email:
          type: string
          title: Email
          description: Representative's email address.
        is_primary:
          type: boolean
          title: Is Primary
          description: Whether they are the primary representative (signer).
        is_beneficial_owner:
          type: boolean
          title: Is Beneficial Owner
          description: Whether they are a beneficial owner.
        percent_ownership:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Percent Ownership
          description: Ownership percentage, if any.
        kyc_status:
          $ref: '#/components/schemas/OnboardingKycStatus'
          description: >-
            This representative's identity verification status, kept consistent
            with the `identity_verification.*` webhook events. `action_required`
            means their verification needs another step from them (for example,
            a document or selfie): create a link with `POST
            /entities/{entity_id}/representatives/{representative_id}/verification-link`
            and share it so they can finish.
      type: object
      required:
        - representative_id
        - first_name
        - last_name
        - email
        - is_primary
        - is_beneficial_owner
        - percent_ownership
        - kyc_status
      title: OnboardingRepresentativeKyc
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    CountryCodeAlpha2:
      type: string
      enum:
        - AW
        - AF
        - AO
        - AI
        - AX
        - AL
        - AD
        - AE
        - AR
        - AM
        - AS
        - AQ
        - TF
        - AG
        - AU
        - AT
        - AZ
        - BI
        - BE
        - BJ
        - BQ
        - BF
        - BD
        - BG
        - BH
        - BS
        - BA
        - BL
        - BY
        - BZ
        - BM
        - BO
        - BR
        - BB
        - BN
        - BT
        - BV
        - BW
        - CF
        - CA
        - CC
        - CH
        - CL
        - CN
        - CI
        - CM
        - CD
        - CG
        - CK
        - CO
        - KM
        - CV
        - CR
        - CU
        - CW
        - CX
        - KY
        - CY
        - CZ
        - DE
        - DJ
        - DM
        - DK
        - DO
        - DZ
        - EC
        - EG
        - ER
        - EH
        - ES
        - EE
        - ET
        - FI
        - FJ
        - FK
        - FR
        - FO
        - FM
        - GA
        - GB
        - GE
        - GG
        - GH
        - GI
        - GN
        - GP
        - GM
        - GW
        - GQ
        - GR
        - GD
        - GL
        - GT
        - GF
        - GU
        - GY
        - HK
        - HM
        - HN
        - HR
        - HT
        - HU
        - ID
        - IM
        - IN
        - IO
        - IE
        - IR
        - IQ
        - IS
        - IL
        - IT
        - JM
        - JE
        - JO
        - JP
        - KZ
        - KE
        - KG
        - KH
        - KI
        - KN
        - KR
        - KW
        - LA
        - LB
        - LR
        - LY
        - LC
        - LI
        - LK
        - LS
        - LT
        - LU
        - LV
        - MO
        - MF
        - MA
        - MC
        - MD
        - MG
        - MV
        - MX
        - MH
        - MK
        - ML
        - MT
        - MM
        - ME
        - MN
        - MP
        - MZ
        - MR
        - MS
        - MQ
        - MU
        - MW
        - MY
        - YT
        - NA
        - NC
        - NE
        - NF
        - NG
        - NI
        - NU
        - NL
        - 'NO'
        - NP
        - NR
        - NZ
        - OM
        - PK
        - PA
        - PN
        - PE
        - PH
        - PW
        - PG
        - PL
        - PR
        - KP
        - PT
        - PY
        - PS
        - PF
        - QA
        - RE
        - RO
        - RU
        - RW
        - SA
        - SD
        - SN
        - SG
        - GS
        - SH
        - SJ
        - SB
        - SL
        - SV
        - SM
        - SO
        - PM
        - RS
        - SS
        - ST
        - SR
        - SK
        - SI
        - SE
        - SZ
        - SX
        - SC
        - SY
        - TC
        - TD
        - TG
        - TH
        - TJ
        - TK
        - TM
        - TL
        - TO
        - TT
        - TN
        - TR
        - TV
        - TW
        - TZ
        - UG
        - UA
        - UM
        - UY
        - US
        - UZ
        - VA
        - VC
        - VE
        - VG
        - VI
        - VN
        - VU
        - WF
        - WS
        - XK
        - YE
        - ZA
        - ZM
        - ZW
      title: CountryCodeAlpha2
      x-enum-varnames:
        - AW
        - AF
        - AO
        - AI
        - AX
        - AL
        - AD
        - AE
        - AR
        - AM
        - AS
        - AQ
        - TF
        - AG
        - AU
        - AT
        - AZ
        - BI
        - BE
        - BJ
        - BQ
        - BF
        - BD
        - BG
        - BH
        - BS
        - BA
        - BL
        - BY
        - BZ
        - BM
        - BO
        - BR
        - BB
        - BN
        - BT
        - BV
        - BW
        - CF
        - CA
        - CC
        - CH
        - CL
        - CN
        - CI
        - CM
        - CD
        - CG
        - CK
        - CO
        - KM
        - CV
        - CR
        - CU
        - CW
        - CX
        - KY
        - CY
        - CZ
        - DE
        - DJ
        - DM
        - DK
        - DO
        - DZ
        - EC
        - EG
        - ER
        - EH
        - ES
        - EE
        - ET
        - FI
        - FJ
        - FK
        - FR
        - FO
        - FM
        - GA
        - GB
        - GE
        - GG
        - GH
        - GI
        - GN
        - GP
        - GM
        - GW
        - GQ
        - GR
        - GD
        - GL
        - GT
        - GF
        - GU
        - GY
        - HK
        - HM
        - HN
        - HR
        - HT
        - HU
        - ID
        - IM
        - IN
        - IO
        - IE
        - IR
        - IQ
        - IS
        - IL
        - IT
        - JM
        - JE
        - JO
        - JP
        - KZ
        - KE
        - KG
        - KH
        - KI
        - KN
        - KR
        - KW
        - LA
        - LB
        - LR
        - LY
        - LC
        - LI
        - LK
        - LS
        - LT
        - LU
        - LV
        - MO
        - MF
        - MA
        - MC
        - MD
        - MG
        - MV
        - MX
        - MH
        - MK
        - ML
        - MT
        - MM
        - ME
        - MN
        - MP
        - MZ
        - MR
        - MS
        - MQ
        - MU
        - MW
        - MY
        - YT
        - NA
        - NC
        - NE
        - NF
        - NG
        - NI
        - NU
        - NL
        - 'NO'
        - NP
        - NR
        - NZ
        - OM
        - PK
        - PA
        - PN
        - PE
        - PH
        - PW
        - PG
        - PL
        - PR
        - KP
        - PT
        - PY
        - PS
        - PF
        - QA
        - RE
        - RO
        - RU
        - RW
        - SA
        - SD
        - SN
        - SG
        - GS
        - SH
        - SJ
        - SB
        - SL
        - SV
        - SM
        - SO
        - PM
        - RS
        - SS
        - ST
        - SR
        - SK
        - SI
        - SE
        - SZ
        - SX
        - SC
        - SY
        - TC
        - TD
        - TG
        - TH
        - TJ
        - TK
        - TM
        - TL
        - TO
        - TT
        - TN
        - TR
        - TV
        - TW
        - TZ
        - UG
        - UA
        - UM
        - UY
        - US
        - UZ
        - VA
        - VC
        - VE
        - VG
        - VI
        - VN
        - VU
        - WF
        - WS
        - XK
        - YE
        - ZA
        - ZM
        - ZW
    InvestorsDueDiligence:
      properties:
        type_of_investors:
          items:
            $ref: '#/components/schemas/InvestorType'
          type: array
          title: Type Of Investors
        international_investors:
          type: boolean
          title: International Investors
        investor_countries:
          anyOf:
            - items:
                $ref: '#/components/schemas/CountryCodeAlpha2'
              type: array
            - type: 'null'
          title: Investor Countries
        investor_verification_process:
          type: string
          title: Investor Verification Process
        additional_investors_due_diligence:
          anyOf:
            - type: string
            - type: 'null'
          title: Additional Investors Due Diligence
      type: object
      required:
        - type_of_investors
        - international_investors
        - investor_verification_process
      title: InvestorsDueDiligence
    HoldingType-Input:
      type: string
      enum:
        - investor
        - real_estate
      title: HoldingType
    HoldingEntityType:
      type: string
      enum:
        - businesses
        - individuals
        - investors
      title: HoldingEntityType
    RealEstateHoldingDueDiligence:
      properties:
        property_types:
          items:
            $ref: '#/components/schemas/PropertyType'
          type: array
          title: Property Types
        restricted_purpose:
          type: boolean
          title: Restricted Purpose
          default: false
      type: object
      required:
        - property_types
      title: RealEstateHoldingDueDiligence
    MpmServicesOffered:
      type: string
      enum:
        - fundraising
        - portfolio_management
        - fractional_executive_services
        - financing
        - loan_syndication
        - underwriting
        - advisory_services
      title: MpmServicesOffered
    PropertyType:
      type: string
      enum:
        - residential
        - single_family
        - commercial_use
      title: PropertyType
    LoanType:
      type: string
      enum:
        - bridge_short_term_financing
        - construction_loans
        - property_rehab_loans
        - other
      title: LoanType
    AcceptedPaymentMethods:
      type: string
      enum:
        - cash
        - check
        - credit_card
        - electronic_transfer
      title: AcceptedPaymentMethods
    PublicKybProofType:
      type: string
      enum:
        - accredited
        - address
        - articles_of_organization
        - bank_statement
        - client_contract
        - client_invoice
        - beneficial_owner_address
        - beneficial_owner_id
        - beneficial_owner_id_back
        - beneficial_ownership_register
        - bylaws
        - certificate_of_good_standing
        - corporate_resolution
        - drivers_license
        - due_diligence
        - ein
        - final_edd_report
        - government_issued_business_license
        - hemp_cultivator_state_license
        - incorporation
        - industry_related_license
        - lease_agreement
        - llc_resolution
        - money_service_business_license
        - money_transmitter_registration
        - mortgage_statement
        - national_id
        - org_chart
        - partnership_agreement
        - partnership_agreement_due_diligence
        - partnership_resolution
        - personal_address
        - remote_employees_due_diligence
        - signed_ss4
        - tax_exemption_certificate
        - uk_officer_passport
        - officer_registry
        - uk_registry
        - shareholder_registry
        - uk_w8_en
        - utility_bill
        - us_based_office_proof_of_address_due_diligence
        - pitch_deck
        - active_business_registration
        - proof_of_ownership_or_banking_authorization
        - non_profit_bylaws
        - operating_agreement
        - flow_of_funds
        - aml_sanction
        - registration_or_license
        - sec_filing
        - legal_opinion
        - certificate_of_formation_master_llc
        - series_operating_agreement
        - share_subscription_agreement
        - fund_subscription_agreement
        - safe_agreement
        - convertible_note_agreement
        - loan_promissory_note
        - token_purchase_agreement
        - saft_agreement
        - deal_memo_hybrid_agreement
        - issuer_due_diligence_report
        - protocol_ecosystem_questionnaire
        - investment_company_due_diligence_form
        - us_based_operations_due_diligence_form
        - register_of_directors
        - articles_of_association
        - memorandum_of_association
        - non_profit_status
        - ofac_sanctions_screening_policy
        - aml_kyc_policy
        - w8_bene
        - corporate_structure_chart
        - sanctions_vendor_service_agreement
        - contractual_fund_flow_agreements
      title: PublicKybProofType
      x-enum-varnames:
        - accredited
        - address
        - articles_of_organization
        - bank_statement
        - client_contract
        - client_invoice
        - beneficial_owner_address
        - beneficial_owner_id
        - beneficial_owner_id_back
        - beneficial_ownership_register
        - bylaws
        - certificate_of_good_standing
        - corporate_resolution
        - drivers_license
        - due_diligence
        - ein
        - final_edd_report
        - government_issued_business_license
        - hemp_cultivator_state_license
        - incorporation
        - industry_related_license
        - lease_agreement
        - llc_resolution
        - money_service_business_license
        - money_transmitter_registration
        - mortgage_statement
        - national_id
        - org_chart
        - partnership_agreement
        - partnership_agreement_due_diligence
        - partnership_resolution
        - personal_address
        - remote_employees_due_diligence
        - signed_ss4
        - tax_exemption_certificate
        - uk_officer_passport
        - officer_registry
        - uk_registry
        - shareholder_registry
        - uk_w8_en
        - utility_bill
        - us_based_office_proof_of_address_due_diligence
        - pitch_deck
        - active_business_registration
        - proof_of_ownership_or_banking_authorization
        - non_profit_bylaws
        - operating_agreement
        - flow_of_funds
        - aml_sanction
        - registration_or_license
        - sec_filing
        - legal_opinion
        - certificate_of_formation_master_llc
        - series_operating_agreement
        - share_subscription_agreement
        - fund_subscription_agreement
        - safe_agreement
        - convertible_note_agreement
        - loan_promissory_note
        - token_purchase_agreement
        - saft_agreement
        - deal_memo_hybrid_agreement
        - issuer_due_diligence_report
        - protocol_ecosystem_questionnaire
        - investment_company_due_diligence_form
        - us_based_operations_due_diligence_form
        - register_of_directors
        - articles_of_association
        - memorandum_of_association
        - non_profit_status
        - ofac_sanctions_screening_policy
        - aml_kyc_policy
        - w8_bene
        - corporate_structure_chart
        - sanctions_vendor_service_agreement
        - contractual_fund_flow_agreements
    OnboardingStep:
      type: string
      enum:
        - gather_business_context
        - collect_user_info
        - collect_business_addresses
        - collect_business_details
        - collect_additional_details
        - complete_due_diligence
        - upload_documents
        - manage_representatives
        - complete_identity_verification
        - accept_terms
        - submit_application
        - monitor_review
        - resolve_info_requests
      title: OnboardingStep
    OnboardingPhase:
      type: string
      enum:
        - business_info
        - ready_to_submit
        - submitted
      title: OnboardingPhase
    InvestorType:
      type: string
      enum:
        - accredited_investors
        - qualified_purchasers
        - institutional_firms
      title: InvestorType
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: Your Meow API key, sent in the `x-api-key` header for authentication.
      x-scopes:
        - accounts:read
        - accounts:write
        - accounts:payment-networks
        - accounts:transactions
        - accounts:balances
        - accounts:statements
        - accounts:tax-documents
        - entity:create
        - transfers:crypto:write
        - transfers:usdc:write
        - transfers:ach:write
        - transfers:wire:write
        - transfers:book:write
        - contacts:read
        - contacts:write
        - billing:products:read
        - billing:products:write
        - billing:customers:read
        - billing:customers:write
        - billing:invoices:read
        - billing:invoices:write
        - billing:accounts:read
        - billpay:read
        - billpay:write
        - onboarding:read
        - onboarding:write
        - cards:read
        - cards:write
        - webhooks:read
        - webhooks:write
        - partner:onboarding:read
        - partner:onboarding:write
        - partner:webhooks:read
        - partner:webhooks:write
        - simulations:write
        - banking:limits:read
        - banking:limits:write

````