---
title: "UploadUrlRequest"
url: "https://api-docs.centraldispatch.com/apis/dispatch-document-api-1-0-0/versions/9bbd32af-78ba-4621-9fb5-754957db7dfd/schemas/UploadUrlRequest"
---

> Full API specification: https://api-docs.centraldispatch.com/apis/dispatch-document-api-1-0-0/versions/9bbd32af-78ba-4621-9fb5-754957db7dfd.md

# UploadUrlRequest

Details of the upload URL request.

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Dispatch Document API
  version: 1.0.0
servers:
  - url: https://document-api.centraldispatch.com
    description: Production server
components:
  schemas:
    UploadUrlRequest:
      type: object
      properties:
        fileName:
          type: string
          description: The actual file name of the document including the file extension.
          example: example.txt
        parentId:
          type: string
          description: The parent resource of the document if not only the dispatch ID or
            listing ID. If the document pertains to a vehicle (bill, inspection
            document, etc.) it will be the vehicle ID.
          format: uuid
          nullable: true
          example: dad00000-e89b-12d3-a456-426614174000
        displayName:
          type: string
          description: The display name of the document. If not provided, `fileName` will
            be used.
          nullable: true
          example: Example document
      description: Details of the upload URL request.
```
