Parameters
Hide parameters
Hide parameters
ID
This field maps to the destination API client_id, overrides profile ID if specified field.This field maps to the destination API
0..n policies array index (default 0) field.ID PII
This field maps to the destination API num field.This field maps to the destination API
insurance_plan_id field.PII
This field maps to the destination API holder_first field.PII
This field maps to the destination API holder_last field.PII
This field maps to the destination API holder_relationship field.PII
This field maps to the destination API holder_dob field.This field maps to the destination API
holder_gender field.This field maps to the destination API
group_id field.This field maps to the destination API
insurance_card_front_id field.This field maps to the destination API
insurance_card_back_id field.This field maps to the destination API
type_string field.This field maps to the destination API
priority_type field.Copy
Ask AI
{
"$result_object_key": {
"benefits": [
{
"coinsurance": "15",
"copay": "50",
"deductible_calendar_year": "2000",
"deductible_year_to_date": "1500"
}
],
"effective_end": "2024-07-04",
"group_num": "331256",
"id": "202402",
"insurance_card_back_id": "123452",
"insurance_card_front_id": "123451",
"insurance_plan": {
"id": "611231",
"name_and_id": "Blue Cross Blue Shield - 629913",
"payer_id": "629913",
"payer_name": "Blue Cross Blue Shield"
},
"insurance_type": "Medicaid",
"notes": "Policy is active",
"num": "1912310",
"patient_id": "100121",
"priority_type": "Primary",
"updated_at": "2024-07-01T11:29:19+00:00"
}
}
Copy
Ask AI
{
"$result_object_key": {
"benefits": {
"coinsurance": "Coinsurance percentage due",
"copay": "Copay amount due",
"deductible_calendar_year": "Deductible amount for the calendar year",
"deductible_year_to_date": "Deductible amount for the year to-date"
},
"effective_end": "Date the policy coverage expires",
"group_num": "Group number",
"id": "ID for the policy",
"insurance_card_back_id": "ID of the insurance card back image object",
"insurance_card_front_id": "ID of the insurance card front image object",
"insurance_plan": {
"id": "ID of the insurance plan",
"name_and_id": "Name of the payer and id of payer",
"payer_id": "ID of the insurance payer",
"payer_name": "Name of the insurance payer"
},
"insurance_type": "The type of insurance: `type_string`",
"notes": "Notes about the policy",
"num": "Policy number",
"patient_id": "ID of the patient associated with the policy",
"priority_type": "The priority type of insurance: `priority_type`",
"updated_at": "Last time the Policy was updated"
}
}
Result Object Field Details
You can use the result of the action’s data as inputs to downstream workflow actions. Each fetch action requires a result object key to be specified which will nest the action’s result data inside the downstream data context in the Workflow. Here we demonstrate how to refer to this data using the prefix$result_object_key.
Hide fields
Hide fields
Insurance plan details
CEL
Copy
Ask AI
$result_object_key.insurance_plan
Example
Copy
Ask AI
{
"id": "611231",
"name_and_id": "Blue Cross Blue Shield - 629913",
"payer_id": "629913",
"payer_name": "Blue Cross Blue Shield"
}
ID of the insurance payer
CEL
Copy
Ask AI
$result_object_key.insurance_plan.payer_id
Example
Copy
Ask AI
"629913"
Name of the insurance payer
CEL
Copy
Ask AI
$result_object_key.insurance_plan.payer_name
Example
Copy
Ask AI
"Blue Cross Blue Shield"
ID of the insurance plan
CEL
Copy
Ask AI
$result_object_key.insurance_plan.id
Example
Copy
Ask AI
"611231"
Name of the payer and id of payer
CEL
Copy
Ask AI
$result_object_key.insurance_plan.name_and_id
Example
Copy
Ask AI
"Blue Cross Blue Shield - 629913"
PII Policy numberCEL
Copy
Ask AI
$result_object_key.num
Example
Copy
Ask AI
"1912310"
Group number
CEL
Copy
Ask AI
$result_object_key.group_num
Example
Copy
Ask AI
"331256"
Notes about the policy
CEL
Copy
Ask AI
$result_object_key.notes
Example
Copy
Ask AI
"Policy is active"
Date the policy coverage expires
CEL
Copy
Ask AI
$result_object_key.effective_end
Example
Copy
Ask AI
"2024-07-04"
ID for the policy
CEL
Copy
Ask AI
$result_object_key.id
Example
Copy
Ask AI
"202402"
ID PII ID of the patient associated with the policyCEL
Copy
Ask AI
$result_object_key.patient_id
Example
Copy
Ask AI
"100121"
HI ID PII ID of the insurance card front image objectCEL
Copy
Ask AI
$result_object_key.insurance_card_front_id
Example
Copy
Ask AI
"123451"
HI ID PII ID of the insurance card back image objectCEL
Copy
Ask AI
$result_object_key.insurance_card_back_id
Example
Copy
Ask AI
"123452"
Last time the Policy was updated
CEL
Copy
Ask AI
$result_object_key.updated_at
Example
Copy
Ask AI
"2024-07-01T11:29:19+00:00"
The type of insurance:
type_stringCEL
Copy
Ask AI
$result_object_key.insurance_type
Example
Copy
Ask AI
"Medicaid"
The priority type of insurance:
priority_typeCEL
Copy
Ask AI
$result_object_key.priority_type
Example
Copy
Ask AI
"Primary"
Insurance plan details
CEL
Copy
Ask AI
$result_object_key.benefits
Example
Copy
Ask AI
[
{
"coinsurance": "15",
"copay": "50",
"deductible_calendar_year": "2000",
"deductible_year_to_date": "1500"
}
]
Mapped array of: Coinsurance percentage due
CEL
Copy
Ask AI
$result_object_key.benefits.map(x, x.coinsurance)
Example
Copy
Ask AI
[
"15"
]
Mapped array of: Copay amount due
CEL
Copy
Ask AI
$result_object_key.benefits.map(x, x.copay)
Example
Copy
Ask AI
[
"50"
]
Mapped array of: Deductible amount for the calendar year
CEL
Copy
Ask AI
$result_object_key.benefits.map(x, x.deductible_calendar_year)
Example
Copy
Ask AI
[
"2000"
]
Mapped array of: Deductible amount for the year to-date
CEL
Copy
Ask AI
$result_object_key.benefits.map(x, x.deductible_year_to_date)
Example
Copy
Ask AI
[
"1500"
]
