Guard PCP Auth Re-bill
Perform Guard PCP Auth Re-bill through eClinicalWorks.
ecw_guard_pcp_auth_rebillwriteeclinicalworks
Inputs
- Patient Id
patient_idtextrequiredRequired text value.
- Encounter Id
encounter_idtextOptional text value.
- Encounter Ids
encounter_idsjsonOptional JSON value.
- Dos
dosdaterequiredRequired date in YYYY-MM-DD format.
- Auth Ukey
auth_ukeytextrequiredRequired text value.
Outputs
successSuccessguard_hitGuard Hitreferral_idReferral IderrorError
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_id",
"dos",
"auth_ukey"
],
"properties": {
"dos": {
"type": "string",
"format": "date",
"description": "Required date in YYYY-MM-DD format.",
"x-workflow-field-type": "date"
},
"auth_ukey": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"patient_id": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"encounter_id": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"encounter_ids": {
"description": "Optional JSON value.",
"x-workflow-field-type": "json"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"success": {},
"guard_hit": {},
"referral_id": {}
},
"additionalProperties": true
}