Skip to documentation
DocuTrack integration

Read Document Information

Perform Read Document Information through DocuTrack.

View as Markdown
docutrack_read_document
readdocutrack

Inputs

  • docutrack_document_id
    expressionrequired
    Docutrack Document Id

    Required literal value or workflow expression.

  • folder_id
    number
    Folder Id

    Optional numeric value.

Outputs

  • successSuccess
  • documentDocument
  • errorError

Output schema completeness: best_effort_declared

Safety

External effect
read
Confirmation recommended
No
Retry safe
Yes
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": {
    "error": {},
    "success": {},
    "document": {}
  },
  "additionalProperties": true
}
View all DocuTrack actions