AI健康卡片解析器 Power Automate
AI健康卡解析器 是一个 Power Automate 采取行动 PDF4me 它利用人工智能读取健康保险卡,并以结构化形式返回会员ID、团体编号、计划类型、承保日期和处方福利数据。 JSON. 使用它可自动完成患者登记、保险验证或药房福利检查,无需手动输入数据。
此操作的作用
PDF4me AI健康卡解析器 读取健康保险卡(PDF, PNG, JPG, 或者 JPEG)和返回 成员 ID, 组号, 计划类型, 保险公司, 成员姓名、承保日期和处方福利字段在 健康数据 对象,以及每个字段 信心 分数。(可选) 正文/自定义字段键 提取标准集之外的其他字段。
相关博客文章(1)
我如何验证我的身份 Power Automate 流动?
每一个 PDF4me 行动 Power Automate 需要有效的连接。创建或选择一个包含您数据的连接。 PDF4me API 关键在于确保流程能够安全地验证 AI 健康卡处理请求。
您不容错过的重要事实
始终需要填写两个字段。
健康卡文件内容(文档字节)和健康卡名称(带扩展名的文件名)。Body/customFieldKeys 位于“高级参数”下,是可选的。
输出嵌套在 healthData 下
成员、计划和处方字段都位于 processedData.healthData 下。在将字段映射到后续流程操作时,请引用此嵌套路径。
在信任输出结果之前,请检查置信度评分。
置信度对象对关键字段进行 0 到 1 的评分。将置信度低的提取结果路由到保险验证或计费流程中进行人工审核。

映射文件内容和正文/文档/名称,然后展开正文/自定义字段键的高级参数。
参数
必需的: 必须提供健康卡文件内容和健康卡名称。Body/customFieldKeys 是一个可选的高级参数。
| 范围 | 必需的 | 它的作用 | 例子 |
|---|---|---|---|
| Health Card File Content | Required | Binary content of the health card, mapped from a previous action (Get file content, SharePoint, OneDrive, email attachment). Supports .pdf, .png, .jpg, .jpeg. | body('Get_file_content') |
| Health Card Name | Required | Filename of the health card including its extension. Used for format detection and processing. | health_card_2024.jpeg |
| Body/customFieldKeys | Optional | Advanced parameter. Array of additional field names to extract beyond the standard health card data set. | ["customField1", "customField2"] |
输出字段
| 场地 | 类型 | 它包含什么 |
|---|---|---|
success | Boolean | true if the health card was processed successfully, false if extraction failed. |
message | String | Descriptive message describing the result of the processing run. |
processedData.healthData.memberId | String | The unique member identification number extracted from the health card. |
processedData.healthData.groupNumber | String | The group or policy number associated with the health insurance plan. |
processedData.healthData.planType | String | The type of health insurance plan, for example PPO, HMO, or EPO. |
processedData.healthData.insuranceProvider | String | The name of the insurance company or provider on the card. |
processedData.healthData.memberName | String | The full name of the insured member. |
processedData.healthData.dateOfBirthStr | String | The member date of birth, formatted as YYYY-MM-DD. |
processedData.healthData.effectiveDateStr | String | The date the health insurance coverage becomes effective, formatted as YYYY-MM-DD. |
processedData.healthData.rxBin | String | The Bank Identification Number for prescription drug coverage. |
processedData.healthData.rxPcn | String | The Processor Control Number for prescription drug coverage. |
processedData.healthData.rxGroup | String | The group identifier for prescription drug coverage. |
processedData.healthData.copayInfo | Array | List of copay details by service, for example Primary Care or Specialist. |
processedData.healthData.confidence | Object | Per-field confidence scores on a 0-1 scale for key extracted values. |
processedData.status | String | Overall status of the health card processing operation. |
processedData.errors | Array | Any errors encountered while processing the health card. Empty when none. |
processedData.jobId | String | Unique identifier for the AI processing job, used for tracking and debugging. |
processingTimestamp | String | ISO 8601 timestamp indicating when processing completed. |
- Sample JSON Response
- Flow Integration
{
"success": true,
"message": "Health card processed successfully using AI",
"processedData": {
"healthData": {
"memberId": "M123456789",
"groupNumber": "GRP001234",
"planType": "PPO",
"insuranceProvider": "Blue Cross Blue Shield",
"memberName": "John Michael Smith",
"dateOfBirthStr": "1985-03-15",
"effectiveDateStr": "2024-01-01",
"rxBin": "123456",
"rxPcn": "ABC123",
"rxGroup": "RXGRP001",
"copayInfo": [
{ "service": "Primary Care", "copay": "$25" },
{ "service": "Specialist", "copay": "$50" },
{ "service": "Emergency Room", "copay": "$200" }
],
"confidence": {
"memberId": 0.95,
"memberName": 0.98,
"insuranceProvider": 0.92
}
},
"status": "Success",
"errors": [],
"jobId": "11111111-2222-3333-4444-555555555555"
},
"processingTimestamp": "2024-01-15T10:30:45.123Z"
}
将提取的路径 healthData 物体进入 Microsoft 365 以及医疗保健系统:
- 患者记录将 memberId、memberName 和 planType 写入 a SharePoint 患者管理系统或患者名单。
- 保险核实:将 memberId 和 groupNumber 与保险提供商主列表进行匹配。
- 药房处理将 rxBin、rxPcn 和 rxGroup 输入到药房福利检查中。
- 账单将保险提供商和共同支付信息附加到医疗账单记录中。
如何在设置AI健康卡解析器中 Power Automate?
- 添加 PDF4me → AI健康卡解析器 致你 Power Automate 流动。
- 地图 健康卡档案内容 来自之前的操作(SharePoint, OneDrive(例如 Dropbox 或电子邮件附件)。
- 放 健康卡名称 文件扩展名(.pdf、.png、.jpg 或 .jpeg)。
- (可选)扩展 高级参数 并设置 正文/自定义字段键 对于标准集之外的任何字段。
- 运行流程。解析后的结果将以如下形式返回: 健康数据 嵌套在对象内部 处理数据包含成员、计划、承保范围和处方字段 信心 得分。
典型配置
工作流程示例Common Power Automate flow patterns using AI-Health Card Parser.
患者登记入院
- 当患者通过门户网站或电子邮件上传健康卡图像时,流程就会触发。
- AI健康卡解析器提取成员ID、成员姓名、出生日期字符串和保险提供商。
- 提取的字段被写入一个 SharePoint 患者管理系统或患者名单。
- 条件检查置信度对象,并将置信度低的行路由到人工审核。
保险核实
- 当通过电子邮件收到健康卡时,流程就会触发。 SharePoint 上传。
- AI-Health Card Parser 提取 groupNumber、planType 和 effectiveDateStr。
- 系统会生成一份核实记录,并将其链接到患者的保险档案中。
药房福利查询
- 患者将健康卡上传至药房收款流程。
- AI-Health Card Parser 提取 rxBin、rxPcn 和 rxGroup。
- 处方标识符用于药房福利验证步骤,而 copayInfo 用于计算患者自付费用估算。
实用技巧
Reference the nested healthData path
Extracted fields live under processedData.healthData, not at the top level of the response. Map the full path in downstream actions.
Always branch on success and confidence
Check success before writing extracted data downstream, and inspect the confidence object for any fields scored below your review threshold.
Custom fields extend, they do not replace
Body/customFieldKeys adds extra entries alongside the standard healthData fields, it does not narrow or filter the standard set.
copayInfo is an array, not a flat field
Loop over copayInfo with Apply to each when writing copay amounts to a table, since a card can list several services.
Match the file extension to the real format
Health Card Name must carry the true extension (.pdf, .png, .jpg, .jpeg) of the mapped File Content, a mismatched extension can affect processing.
速查表
| 场地 | 价值 |
|---|---|
| Action | AI-Health Card Parser |
| Required fields | Health Card File Content, Health Card Name |
| Optional advanced field | Body/customFieldKeys |
| Supported file types | .pdf, .png, .jpg, .jpeg |
| Output root | processedData.healthData |
| Key output fields | memberId, groupNumber, planType, insuranceProvider, memberName, dateOfBirthStr, effectiveDateStr, rxBin, rxPcn, rxGroup, copayInfo, confidence |
常见问题
行业应用案例及应用
- Healthcare Providers
- Medical Billing & Revenue Cycle
- Pharmacy & Prescription Services
- Telemedicine & Virtual Care
- 患者登记利用健康卡数据提取实现患者登记自动化
- 保险核实自动验证患者的保险覆盖范围
- 福利核实检查患者福利和承保资格
- 预约安排将保险信息与预约记录关联起来
- 理赔处理提取医疗索赔的保险信息
- 事先授权:使用提取的保险数据进行事先授权请求
- 资格验证使用提取的成员 ID 验证患者资格
- 计费集成将保险数据导入计费和收入周期系统
- 处方处理提取处方福利以用于药房运营
- 自付额计算:利用提取的自付额信息确定处方自付额
- 保险申报使用提取的保险数据提交处方索赔
- 患者档案利用提取的健康卡数据构建患者药房档案
- 虚拟注册启用远程患者登记功能,可上传健康卡
- 远程保险验证:核实远程医疗预约的保险信息
- 电子健康记录将提取的健康卡数据整合到电子健康记录中
- 移动健康应用处理通过移动应用程序上传的健康卡
相关操作
AI税务文档解析器
从税务表格中提取结构化数据,包括与保险验证相匹配的 1095A/1095C 健康保险文件。
AI工资单解析器
提取与雇主提供的医疗保险计划扣款相符的工资数据。
AI结婚证解析器
从结婚证(受抚养人保险登记的常用证明文件)中提取结构化数据。
在其他平台上执行相同任务
Make人工智能处理健康卡
与人工智能健康卡提取相同的 Make 模块(在本平台上名为 AI-Process Health Card)。
n8n人工智能处理健康卡
用于同一AI健康卡提取节点 n8n 工作流程,自托管或云端。
ZapierAI健康卡片解析器
相同的AI健康卡提取步骤 Zapier您可以从任何已连接的应用程序触发它。