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

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

# HandoverErrorResponse

## 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:
    HandoverErrorCode:
      enum:
        - company_not_bootstrapped
        - no_open_hosted_application
        - company_not_active
      title: HandoverErrorCode
      type: string
    HandoverErrorResponse:
      properties:
        error_code:
          $ref: "#/components/schemas/HandoverErrorCode"
          description: Machine-readable error code
        detail:
          description: Human-readable error message
          title: Detail
          type: string
      required:
        - error_code
        - detail
      title: HandoverErrorResponse
      type: object
```
