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

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

# InitiateFileUploadResponse

## 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:
    InitiateFileUploadResponse:
      properties:
        upload_id:
          description: A UUID for the upload. This can be used to identify this file in
            other endpoints to e.g., track the status of the upload or complete
            the upload.
          format: uuid
          title: Upload Id
          type: string
        upload_urls:
          additionalProperties:
            type: string
          description: URLs to upload each part of the file to. There will be exactly one
            URL for each part of the file.
          title: Upload Urls
          type: object
        num_parts:
          description: The number of parts the file should be split into.
          title: Num Parts
          type: integer
      required:
        - upload_id
        - upload_urls
        - num_parts
      title: InitiateFileUploadResponse
      type: object
```
