Skip to documentation
eClinicalWorks integration

Guard PCP Auth Re-bill

Perform Guard PCP Auth Re-bill through eClinicalWorks.

View as Markdown
ecw_guard_pcp_auth_rebill
writeeclinicalworks

Inputs

  • patient_id
    textrequired
    Patient Id

    Required text value.

  • encounter_id
    text
    Encounter Id

    Optional text value.

  • encounter_ids
    json
    Encounter Ids

    Optional JSON value.

  • dos
    daterequired
    Dos

    Required date in YYYY-MM-DD format.

  • auth_ukey
    textrequired
    Auth Ukey

    Required text value.

Outputs

  • successSuccess
  • guard_hitGuard Hit
  • referral_idReferral Id
  • errorError

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
}
View all eClinicalWorks actions