API Reference

Files

Endpoints to manage files and folders.

File

Properties

NameTypeDescriptionRestrictions
containerstringThe unique identifier of the container that houses the file, such as a folder. If empty, the root folder is the container.
createdActionWhen the action was performed, and details about the user who did itread-only
idstringThe unique identifier of the fileread-only
kindstringKind of the file
modifiedActionWhen the action was performed, and details about the user who did itread-only
namestringName of the file
templatebooleanread-only
typestringType of the fileread-only

Example

{
  "container": "V0ZEYXRhRW50aXR5HkZvbGRlcjpyMTY0NEU1ZkY2OTA1QkM5QTSCMyZCRkRzQzNDO1FGNC",
  "created": {
    "dateTime": "2019-10-30T15:03:27Z",
    "user": {
      "displayName": "string",
      "email": "string",
      "id": "V1ZVd2VyFzU3NiQ1NDA4NjIzNzk2MjD"
    }
  },
  "id": "124efa2a142f472ba1ceab34ed18915f",
  "kind": "Document",
  "modified": {
    "dateTime": "2019-10-30T15:03:27Z",
    "user": {
      "displayName": "string",
      "email": "string",
      "id": "V1ZVd2VyFzU3NiQ1NDA4NjIzNzk2MjD"
    }
  },
  "name": "Year-end review",
  "template": false,
  "type": "10-K"
}

FileImport

Properties

NameTypeDescriptionRestrictions
fileNamestringThe name of the file to upload. Supported extensions include .XLSX, .CSV, .DOCX, .PPTX, .VSDX.
kindstringThe Workiva file type to upload to. (Document, Spreadsheet, Presentation)

Enumerated Values

PropertyValue
kindDocument
kindSpreadsheet
kindPresentation

Example

{
  "fileName": "quarterly_report.docx",
  "kind": "Document"
}

FileImportResponse

Properties

NameTypeDescriptionRestrictions
uploadUrlstringThe signed URL used to upload the file. Make a PUT request to this URL whose body is the contents of the file to upload.

Example

{
  "uploadUrl": "{opaqueUrl}"
}