Skip to documentation
ClaimSoft integration

Download & Merge Patient Documents

Perform Download & Merge Patient Documents through ClaimSoft.

View as Markdown
claimsoft_download_patient_documents
writeclaimsoft

Inputs

  • patient_id
    expressionrequired
    Patient Id

    Required literal value or workflow expression.

  • documents
    jsonrequired
    Documents

    Required JSON value.

  • merge
    boolean
    Merge

    Optional true-or-false value.

    Default: true

  • hidden
    boolean
    Hidden

    Optional true-or-false value.

    Default: false

  • title
    text
    Title

    Optional text value.

  • dedupe_key
    expression
    Dedupe Key

    Optional literal value or workflow expression.

  • date_of_service
    expression
    Date Of Service

    Optional literal value or workflow expression.

Outputs

  • successSuccess
  • patient_idPatient Id
  • document_idDocument Id
  • document_idsDocument Ids
  • totalTotal
  • hiddenHidden
  • errorError

Output schema completeness: best_effort_declared

Safety

External effect
write
Confirmation recommended
No
Retry safe
No
Dry run supported
No

Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

Input schema
{
  "type": "object",
  "required": [
    "patient_id",
    "documents"
  ],
  "properties": {
    "merge": {
      "type": "boolean",
      "default": true,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "title": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "hidden": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "documents": {
      "description": "Required JSON value.",
      "x-workflow-field-type": "json"
    },
    "dedupe_key": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "patient_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "date_of_service": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "total": {},
    "hidden": {},
    "success": {},
    "patient_id": {},
    "document_id": {},
    "document_ids": {}
  },
  "additionalProperties": true
}
View all ClaimSoft actions