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

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

# InitiateFileUploadRequest

## 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:
    SchemaCode:
      enum:
        - JSON01
      title: SchemaCode
      type: string
    InitiateFileUploadRequest:
      properties:
        file_size_bytes:
          description: The size of the file in bytes
          title: File Size Bytes
          type: integer
        schema_code:
          $ref: "#/components/schemas/SchemaCode"
          description: One of a predefined set of schemas that the file must conform to so
            that it can be processed by Wayflyer
      required:
        - file_size_bytes
        - schema_code
      title: InitiateFileUploadRequest
      type: object
```
