Skip to documentation
DocuTrack integration

Download Document

Perform Download Document through DocuTrack.

View as Markdown
docutrack_download_document
writedocutrack

Inputs

  • docutrack_document_id
    expressionrequired
    Docutrack Document Id

    Required literal value or workflow expression.

  • folder_id
    number
    Folder Id

    Optional numeric value.

Outputs

  • successSuccess
  • document_idDocument Id
  • docutrack_document_idDocutrack Document Id
  • was_existingWas Existing
  • sizeSize
  • sha256Sha256
  • errorError

Output schema completeness: best_effort_declared

Safety

External effect
write
Confirmation recommended
No
Retry safe
No
Dry run supported
No

Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

Input schema
{
  "type": "object",
  "required": [
    "docutrack_document_id"
  ],
  "properties": {
    "folder_id": {
      "type": "number",
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "docutrack_document_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "size": {},
    "error": {},
    "sha256": {},
    "success": {},
    "document_id": {},
    "was_existing": {},
    "docutrack_document_id": {}
  },
  "additionalProperties": true
}
View all DocuTrack actions