v1

latestOpenAPI 3.0.02026-08-04122577.8 KB
datafiles

Get quota information for the calling user.

get/api/v1/data-files/quotas

Response

The quota information was retrieved.

sizeinteger required

The current aggregate size of all files uploaded by a given user. If the current aggregate size is greater than the maximum aggregate size, this is a quota violation.

maxSizeinteger required

The maximum aggregate size of all files uploaded by a given user.

maxFileSizeinteger required

Maximum allowable size of an uploaded file.

maxLargeFileSizeinteger required

Maximum allowable size for a single uploaded large data file (in bytes). This is a file that was indirectly uploaded using the temp content service chunked upload capability.

allowedExtensionsstring[] required

The allowed file extensions on files that are uploaded.

allowedInternalExtensionsstring[] required

The allowed file extensions for files that are only used internally by the system (and thus not typically shown to end users).

Example response

{
  "size": 5000,
  "maxSize": 9223372036854776000,
  "maxFileSize": 524288000,
  "maxLargeFileSize": 6442450944,
  "allowedExtensions": [
    "csv, xlsx, txt, qvd"
  ],
  "allowedInternalExtensions": [
    "dxf, gml, qrep"
  ]
}