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

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

# DetermineBusinessModelsResponse

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Embedded Finance
  version: "1"
servers:
  - url: https://api.wayflyer.com/financing/
    description: Production
components:
  schemas:
    BusinessModel:
      enum:
        - ecommerce_dtc
        - wholesale
        - retail
        - saas_or_software
        - service_provider
        - other_rss
        - other
        - unknown
      title: BusinessModel
      type: string
    DetermineBusinessModelsResponse:
      properties:
        eligible:
          description: Business models the company is eligible for
          items:
            $ref: "#/components/schemas/BusinessModel"
          title: Eligible
          type: array
        ineligible:
          description: Business models the company is ineligible for
          items:
            $ref: "#/components/schemas/BusinessModel"
          title: Ineligible
          type: array
      required:
        - eligible
        - ineligible
      title: DetermineBusinessModelsResponse
      type: object
```
