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

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

# SubmitEmbeddedApplicationErrorResponse

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Embedded Finance
  version: "1"
servers:
  - url: https://api.wayflyer.com/financing/
    description: Production
components:
  schemas:
    SubmitEmbeddedApplicationErrorCode:
      enum:
        - details_incomplete
        - no_open_application
        - open_hosted_application_exists
        - duplicate_company
        - ineligible_application
        - registration_or_documents_required
      title: SubmitEmbeddedApplicationErrorCode
      type: string
    SubmitEmbeddedApplicationErrorResponse:
      properties:
        error_code:
          $ref: "#/components/schemas/SubmitEmbeddedApplicationErrorCode"
          description: Machine-readable error code
        detail:
          description: Human-readable error message
          title: Detail
          type: string
        ineligible_reasons:
          description: List of ineligibility reasons
          items:
            type: string
          title: Ineligible Reasons
          type: array
      required:
        - error_code
        - detail
      title: SubmitEmbeddedApplicationErrorResponse
      type: object
```
