---
title: "InitiateFileUploadResponse"
url: "https://docs.wayflyer.com/apis/embedded-finance-1-0-0/versions/7d0182a3-23d8-43cc-b636-dac7e1594f96/schemas/InitiateFileUploadResponse"
---

> Full API specification: https://docs.wayflyer.com/apis/embedded-finance-1-0-0/versions/7d0182a3-23d8-43cc-b636-dac7e1594f96.md

# InitiateFileUploadResponse

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Embedded Finance
  version: "1"
servers:
  - url: https://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
```
