---
title: "UploadUrlRequest"
url: "https://stage-api-docs.centraldispatch.com/apis/stage-dispatch-document-api-1-0-0/versions/37a28be1-2b73-47a5-9171-d6fcf5977ad4/schemas/UploadUrlRequest"
---

> Full API specification: https://stage-api-docs.centraldispatch.com/apis/stage-dispatch-document-api-1-0-0/versions/37a28be1-2b73-47a5-9171-d6fcf5977ad4.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.
```
