Search Provider
Perform Search Provider through ClearPathMD.
clearpath_search_providerreadclearpathmd
Inputs
- Npi
npitextOptional text value.
- First Name
first_nametextOptional text value.
- Last Name
last_nametextOptional text value.
- Postal Code
postal_codetextOptional text value.
Outputs
successSuccesserrorError
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",
"properties": {
"npi": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"last_name": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"first_name": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"postal_code": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"success": {}
},
"additionalProperties": true
}