---
title: "EmbeddedApplicationStatusResponse"
url: "https://docs.wayflyer.com/apis/embedded-finance-sandbox-api-1/versions/89e9f620-626b-413f-b4ac-7605711a516f/schemas/EmbeddedApplicationStatusResponse"
---

> Full API specification: https://docs.wayflyer.com/apis/embedded-finance-sandbox-api-1/versions/89e9f620-626b-413f-b4ac-7605711a516f.md

# EmbeddedApplicationStatusResponse

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Embedded Finance Sandbox
  version: "1"
servers:
  - url: https://sandbox-api.wayflyer.com/financing/
    description: Production
components:
  schemas:
    EmbeddedApplicationDetailStatus:
      properties:
        name:
          description: The name of the detail
          enum:
            - user_details
            - company_details
          title: Name
          type: string
        status:
          description: The status of the detail, either complete or incomplete
          enum:
            - complete
            - incomplete
          title: Status
          type: string
      required:
        - name
        - status
      title: EmbeddedApplicationDetailStatus
      type: object
    EmbeddedApplicationStatusResponse:
      example:
        application_id: 550e8400-e29b-41d4-a716-446655440000
        required_details:
          - name: user_details
            status: incomplete
          - name: company_details
            status: complete
      properties:
        application_id:
          anyOf:
            - format: uuid
              type: string
            - type: "null"
          description: The ID of the embedded application
          title: Application Id
        required_details:
          description: A list of required details to submit the embedded application.
          items:
            $ref: "#/components/schemas/EmbeddedApplicationDetailStatus"
          title: Required Details
          type: array
      required:
        - application_id
        - required_details
      title: EmbeddedApplicationStatusResponse
      type: object
```
