List Pending Documents
Perform List Pending Documents through ProviderFlow.
providerflow_list_pending_documentsreadproviderflow
Inputs
- Source
sourceselectdynamic optionsOptional selected identifier or value. Retrieve allowed values from the dynamic options endpoint.
- Status
statusselectdynamic optionsOptional selected identifier or value. Retrieve allowed values from the dynamic options endpoint.
- Created By
created_byselectdynamic optionsOptional selected identifier or value. Retrieve allowed values from the dynamic options endpoint.
- Assigned To
assigned_toselectdynamic optionsOptional selected identifier or value. Retrieve allowed values from the dynamic options endpoint.
- Description Text
description_textexpressionOptional literal value or workflow expression.
- Selected Page
selected_pagenumberOptional numeric value.
Outputs
successSuccessdocumentsDocumentscountCountcurrent_pageCurrent Pagetotal_pagesTotal PageserrorError
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
}