Skip to documentation
DocuTrack integration

List Folder Documents

Perform List Folder Documents through DocuTrack.

View as Markdown
docutrack_list_folder_documents
readdocutrack

Inputs

  • folder_id
    numberrequired
    Folder Id

    Required numeric value.

  • include_associations
    boolean
    Include Associations

    Optional true-or-false value.

    Default: false

  • after_document_id
    number
    After Document Id

    Optional numeric value.

    Default: 0

  • limit
    number
    Limit

    Optional numeric value.

    Default: 100

Outputs

  • successSuccess
  • documentsDocuments
  • countCount
  • total_countTotal Count
  • truncatedTruncated
  • next_after_idNext After Id
  • 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": [
    "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
}
View all DocuTrack actions