Skip to documentation
ClaimSoft integration

Check Order Duplicate

Perform Check Order Duplicate through ClaimSoft.

View as Markdown
claimsoft_check_order_duplicate
writeclaimsoft

Inputs

  • patient_data
    expressionrequired
    Patient Data

    Required literal value or workflow expression.

  • billing_location_ids
    jsonrequired
    Billing Location Ids

    Required JSON value.

  • order_params
    jsonrequired
    Order Params

    Required JSON value.

Outputs

  • successSuccess
  • patient_idPatient Id
  • duplicate_preventedDuplicate Prevented
  • order_idOrder Id
  • match_basisMatch Basis
  • error_kindError Kind
  • 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_data",
    "billing_location_ids",
    "order_params"
  ],
  "properties": {
    "order_params": {
      "description": "Required JSON value.",
      "x-workflow-field-type": "json"
    },
    "patient_data": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "billing_location_ids": {
      "description": "Required JSON value.",
      "x-workflow-field-type": "json"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "success": {},
    "order_id": {},
    "error_kind": {},
    "patient_id": {},
    "match_basis": {},
    "duplicate_prevented": {}
  },
  "additionalProperties": true
}
View all ClaimSoft actions