Skip to documentation
NikoHealth integration

List Document Management Uploads

Perform List Document Management Uploads through NikoHealth.

View as Markdown
nikohealth_list_document_management_docs
readnikohealth

Inputs

  • page_size
    number
    Page Size

    Optional numeric value.

    Default: 100

  • page_index
    number
    Page Index

    Optional numeric value.

    Default: 0

  • sort
    text
    Sort

    Optional text value.

    Default: "CreatedOn DESC"

  • processed_tag_id
    text
    Processed Tag Id

    Optional text value.

Outputs

  • successSuccess
  • itemsItems
  • countCount
  • page_indexPage Index
  • has_moreHas More
  • 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": {
    "sort": {
      "type": "string",
      "default": "CreatedOn DESC",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "page_size": {
      "type": "number",
      "default": 100,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "page_index": {
      "type": "number",
      "default": 0,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "processed_tag_id": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "count": {},
    "error": {},
    "items": {},
    "success": {},
    "has_more": {},
    "page_index": {}
  },
  "additionalProperties": true
}
View all NikoHealth actions