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

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

# UserDetailsResponse

## 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:
    UserDetailsResponse:
      properties:
        email:
          anyOf:
            - format: email
              type: string
            - type: "null"
          description: The email of the user
          title: Email
        first_name:
          anyOf:
            - type: string
            - type: "null"
          description: The first name of the user
          title: First Name
        last_name:
          anyOf:
            - type: string
            - type: "null"
          description: The last name of the user
          title: Last Name
        phone_number:
          anyOf:
            - type: string
            - type: "null"
          description: The phone number of the user in E.164 format
          title: Phone Number
      title: UserDetailsResponse
      type: object
```
