List Folder Documents
Perform List Folder Documents through DocuTrack.
docutrack_list_folder_documentsreaddocutrack
Inputs
- Folder Id
folder_idnumberrequiredRequired numeric value.
- Include Associations
include_associationsbooleanOptional true-or-false value.
Default:
false - After Document Id
after_document_idnumberOptional numeric value.
Default:
0 - Limit
limitnumberOptional numeric value.
Default:
100
Outputs
successSuccessdocumentsDocumentscountCounttotal_countTotal CounttruncatedTruncatednext_after_idNext After IderrorError
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": [
"folder_id"
],
"properties": {
"limit": {
"type": "number",
"default": 100,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"folder_id": {
"type": "number",
"description": "Required numeric value.",
"x-workflow-field-type": "number"
},
"after_document_id": {
"type": "number",
"default": 0,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"include_associations": {
"type": "boolean",
"default": false,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"count": {},
"error": {},
"success": {},
"documents": {},
"truncated": {},
"total_count": {},
"next_after_id": {}
},
"additionalProperties": true
}