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

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

# PassUWRequest

Schema for the `pass-uw` action, requires offer details.

## 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:
    PassUWRequest:
      additionalProperties: false
      description: Schema for the `pass-uw` action, requires offer details.
      properties:
        action:
          const: pass-uw
          title: Action
          type: string
        approved_amount:
          anyOf:
            - type: integer
            - type: "null"
          title: Approved Amount
        currency:
          anyOf:
            - type: string
            - type: "null"
          title: Currency
      required:
        - action
      title: PassUWRequest
      type: object
```
