Document Detail

GET /api/documents/document

Return a documentt

Query parameters

  • id string Required

    Category ID

Responses

  • default application/json

    Category Response

    Hide response attributes Show response attributes object
    • filetype string
    • shortDescription string
    • validTo integer(date-time)
    • pathTree string
    • created string(date-time)
    • validFrom integer(date-time)
    • relatedID integer
    • timeSensitive boolean
    • categoryID integer
    • createdBy integer
    • showThumbnail boolean
    • modifiedBy integer
    • idTree string
    • processed boolean
    • preventDownload boolean
    • status string
    • webDavAccess boolean
    • size integer
    • modified integer(date-time)
    • id integer
    • name string
    • copied boolean
    • description string
    • relatedType string
GET /api/documents/document
curl \
 --request GET 'http://api.example.com/api/documents/document?id=string' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (default)
{
  "filetype": "xlsx",
  "shortDescription": "string",
  "validTo": 42,
  "pathTree": "string",
  "created": "2025-05-04T09:42:00Z",
  "validFrom": 42,
  "relatedID": 42,
  "timeSensitive": true,
  "categoryID": 42,
  "createdBy": 42,
  "showThumbnail": true,
  "modifiedBy": 42,
  "idTree": "string",
  "processed": true,
  "preventDownload": true,
  "status": "active",
  "webDavAccess": true,
  "size": 42,
  "modified": 42,
  "id": 42,
  "name": "string",
  "copied": true,
  "description": "file description",
  "relatedType": "string"
}