Skip to documentation
ProviderFlow integration

List Pending Documents

Perform List Pending Documents through ProviderFlow.

View as Markdown
providerflow_list_pending_documents
readproviderflow

Inputs

  • source
    selectdynamic options
    Source

    Optional selected identifier or value. Retrieve allowed values from the dynamic options endpoint.

  • status
    selectdynamic options
    Status

    Optional selected identifier or value. Retrieve allowed values from the dynamic options endpoint.

  • created_by
    selectdynamic options
    Created By

    Optional selected identifier or value. Retrieve allowed values from the dynamic options endpoint.

  • assigned_to
    selectdynamic options
    Assigned To

    Optional selected identifier or value. Retrieve allowed values from the dynamic options endpoint.

  • description_text
    expression
    Description Text

    Optional literal value or workflow expression.

  • selected_page
    number
    Selected Page

    Optional numeric value.

Outputs

  • successSuccess
  • documentsDocuments
  • countCount
  • current_pageCurrent Page
  • total_pagesTotal Pages
  • 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",
  "properties": {
    "source": {
      "type": "string",
      "description": "Optional selected identifier or value. Retrieve allowed values from the dynamic options endpoint.",
      "x-dynamic-options": true,
      "x-workflow-field-type": "select"
    },
    "status": {
      "type": "string",
      "description": "Optional selected identifier or value. Retrieve allowed values from the dynamic options endpoint.",
      "x-dynamic-options": true,
      "x-workflow-field-type": "select"
    },
    "created_by": {
      "type": "string",
      "description": "Optional selected identifier or value. Retrieve allowed values from the dynamic options endpoint.",
      "x-dynamic-options": true,
      "x-workflow-field-type": "select"
    },
    "assigned_to": {
      "type": "string",
      "description": "Optional selected identifier or value. Retrieve allowed values from the dynamic options endpoint.",
      "x-dynamic-options": true,
      "x-workflow-field-type": "select"
    },
    "selected_page": {
      "type": "number",
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "description_text": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "count": {},
    "error": {},
    "success": {},
    "documents": {},
    "total_pages": {},
    "current_page": {}
  },
  "additionalProperties": true
}
View all ProviderFlow actions