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

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

# UserDetailsRequest

## 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:
    UserDetailsRequest:
      properties:
        email:
          description: The email of the user
          format: email
          title: Email
          type: string
        first_name:
          anyOf:
            - maxLength: 255
              type: string
            - type: "null"
          description: The first name of the user
          title: First Name
        last_name:
          anyOf:
            - maxLength: 255
              type: string
            - type: "null"
          description: The last name of the user
          title: Last Name
        phone_number:
          anyOf:
            - maxLength: 16
              type: string
            - type: "null"
          description: The user's phone number in E.164 format (e.g., +353861234567)
          title: Phone Number
      required:
        - email
      title: UserDetailsRequest
      type: object
```
