Read Document Information
Perform Read Document Information through DocuTrack.
docutrack_read_documentreaddocutrack
Inputs
- Docutrack Document Id
docutrack_document_idexpressionrequiredRequired literal value or workflow expression.
- Folder Id
folder_idnumberOptional numeric value.
Outputs
successSuccessdocumentDocumenterrorError
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
}