---
title: "HostedApplicationRequest[Any]"
url: "https://docs.wayflyer.com/apis/embedded-finance-1-0-0/versions/7d0182a3-23d8-43cc-b636-dac7e1594f96/schemas/HostedApplicationRequest_Any_"
---

> Full API specification: https://docs.wayflyer.com/apis/embedded-finance-1-0-0/versions/7d0182a3-23d8-43cc-b636-dac7e1594f96.md

# HostedApplicationRequest[Any]

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Embedded Finance
  version: "1"
servers:
  - url: https://api.wayflyer.com/financing/
    description: Production
components:
  schemas:
    HostedApplicationCompanyData:
      properties:
        company_name:
          anyOf:
            - type: string
            - type: "null"
          description: The name of the company
          title: Company Name
        company_currency:
          anyOf:
            - $ref: "#/components/schemas/SupportedCurrencyCode"
            - type: "null"
          description: One of a supported subset of ISO 4217 codes for the currency the
            company uses primarily
        primary_store_url:
          anyOf:
            - type: string
            - type: "null"
          description: The URL of the primary store
          title: Primary Store Url
        company_annual_revenue:
          anyOf:
            - type: integer
            - type: "null"
          description: Company's annual revenue to the nearest whole number in
            `company_currency`
          title: Company Annual Revenue
        company_onboarding_date:
          anyOf:
            - format: date
              type: string
            - type: "null"
          description: The date the company onboarded to the partner
          title: Company Onboarding Date
        company_incorporation_date:
          anyOf:
            - format: date
              type: string
            - type: "null"
          description: The date the company was incorporated
          title: Company Incorporation Date
        country:
          anyOf:
            - $ref: "#/components/schemas/SupportedCountryCode"
            - type: "null"
          description: One of a supported subset of ISO-3166-1 alpha-2 codes for the
            country the company is located in
        state:
          anyOf:
            - $ref: "#/components/schemas/USStateCode"
            - $ref: "#/components/schemas/CanadianProvinceCode"
            - type: "null"
          description: The state the company is located in
          title: State
        company_type:
          anyOf:
            - $ref: "#/components/schemas/CompanyType"
            - type: "null"
          description: The type of company
      title: HostedApplicationCompanyData
      type: object
    HostedApplicationUserData:
      properties:
        first_name:
          anyOf:
            - type: string
            - type: "null"
          description: The first name of the user
          title: First Name
        last_name:
          anyOf:
            - type: string
            - type: "null"
          description: The last name of the user
          title: Last Name
        email_address:
          anyOf:
            - type: string
            - type: "null"
          description: The email of the user
          title: Email Address
        phone_number:
          anyOf:
            - type: string
            - type: "null"
          description: The phone number of the user
          title: Phone Number
      title: HostedApplicationUserData
      type: object
    SupportedCurrencyCode:
      enum:
        - USD
        - CAD
        - AUD
        - EUR
        - GBP
        - SEK
        - DKK
      title: SupportedCurrencyCode
      type: string
    SupportedCountryCode:
      enum:
        - US
        - CA
        - GB
        - IE
        - BE
        - NL
        - ES
        - DE
        - SE
        - DK
        - AU
      title: SupportedCountryCode
      type: string
    USStateCode:
      enum:
        - US-AL
        - US-AK
        - US-AZ
        - US-AR
        - US-CA
        - US-CO
        - US-CT
        - US-DE
        - US-FL
        - US-GA
        - US-HI
        - US-ID
        - US-IL
        - US-IN
        - US-IA
        - US-KS
        - US-KY
        - US-LA
        - US-ME
        - US-MD
        - US-MA
        - US-MI
        - US-MN
        - US-MS
        - US-MO
        - US-MT
        - US-NE
        - US-NV
        - US-NH
        - US-NJ
        - US-NM
        - US-NY
        - US-NC
        - US-ND
        - US-OH
        - US-OK
        - US-OR
        - US-PA
        - US-RI
        - US-SC
        - US-SD
        - US-TN
        - US-TX
        - US-UT
        - US-VT
        - US-VA
        - US-WA
        - US-WV
        - US-WI
        - US-WY
        - US-DC
        - US-AS
        - US-GU
        - US-MP
        - US-PR
        - US-VI
      title: USStateCode
      type: string
    CanadianProvinceCode:
      enum:
        - CA-AB
        - CA-BC
        - CA-MB
        - CA-NB
        - CA-NL
        - CA-NS
        - CA-ON
        - CA-PE
        - CA-QC
        - CA-SK
        - CA-NT
        - CA-NU
        - CA-YT
      title: CanadianProvinceCode
      type: string
    CompanyType:
      enum:
        - LP
        - LLP
        - LLC
        - INC
        - COOP
      title: CompanyType
      type: string
    HostedApplicationRequest_Any_:
      properties:
        company_data:
          anyOf:
            - $ref: "#/components/schemas/HostedApplicationCompanyData"
            - type: "null"
          description: Data used to pre-fill the company's funding application
        user_data:
          anyOf:
            - $ref: "#/components/schemas/HostedApplicationUserData"
            - type: "null"
          description: Data about the user starting the hosted application
        partner_data:
          description: During onboarding, Wayflyer may have agreed additional data unique
            to an individual partner that may be used to customise the funding
            application. This data is not required for the funding application
            to be processed, but may be used to provide a better experience.
            Consult with your Wayflyer representative for more information about
            what can be provided here.
          title: Partner Data
      title: HostedApplicationRequest[Any]
      type: object
```
