Skip to documentation
ClaimSoft integration

Read Patient

Perform Read Patient through ClaimSoft.

View as Markdown
claimsoft_read_patient
readclaimsoft

Inputs

  • patient_id
    expressionrequired
    Patient Id

    Required literal value or workflow expression.

Outputs

  • patient_idPatient Id
  • nameName
  • date_of_birthDate Of Birth
  • ageAge
  • account_numberAccount Number
  • addressAddress
  • phonePhone
  • primary_languagePrimary Language
  • primary_payerPrimary Payer
  • primary_policy_numberPrimary Policy Number
  • is_primary_medicareIs Primary Medicare
  • secondary_payerSecondary Payer
  • secondary_policy_numberSecondary Policy Number
  • ar_balanceAr Balance
  • alertsAlerts
  • urlUrl
  • 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",
  "required": [
    "patient_id"
  ],
  "properties": {
    "patient_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "age": {},
    "url": {},
    "name": {},
    "error": {},
    "phone": {},
    "alerts": {},
    "address": {},
    "ar_balance": {},
    "patient_id": {},
    "date_of_birth": {},
    "primary_payer": {},
    "account_number": {},
    "secondary_payer": {},
    "primary_language": {},
    "is_primary_medicare": {},
    "primary_policy_number": {},
    "secondary_policy_number": {}
  },
  "additionalProperties": true
}
View all ClaimSoft actions