Skip to documentation
ClaimSoft integration

Save Patient

Perform Save Patient through ClaimSoft.

View as Markdown
claimsoft_save_patient
writeclaimsoft

Inputs

  • patient_data
    expressionrequired
    Patient Data

    Required literal value or workflow expression.

  • billing_location_ids
    jsonrequired
    Billing Location Ids

    Required JSON value.

  • patient_id
    expression
    Patient Id

    Optional literal value or workflow expression.

  • patient_defaults
    json
    Patient Defaults

    Optional JSON value.

  • demographics_override
    json
    Demographics Override

    Optional JSON value.

Outputs

  • successSuccess
  • patient_idPatient Id
  • claimsoft_patient_idClaimsoft Patient Id
  • createdCreated
  • is_duplicateIs Duplicate
  • patient_urlPatient Url
  • messageMessage
  • errorError
  • error_kindError Kind

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"
  ],
  "properties": {
    "patient_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "patient_data": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "patient_defaults": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "billing_location_ids": {
      "description": "Required JSON value.",
      "x-workflow-field-type": "json"
    },
    "demographics_override": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "created": {},
    "message": {},
    "success": {},
    "error_kind": {},
    "patient_id": {},
    "patient_url": {},
    "is_duplicate": {},
    "claimsoft_patient_id": {}
  },
  "additionalProperties": true
}
View all ClaimSoft actions