# Process F/U Authorization

> Perform Process F/U Authorization through Regal/Lakeside.

Source: [https://genhealth.ai/docs/workflows/integrations/regal-lakeside/regal_process_fu_auth](https://genhealth.ai/docs/workflows/integrations/regal-lakeside/regal_process_fu_auth)

Integration: [Regal/Lakeside](https://genhealth.ai/docs/workflows/integrations/regal-lakeside.md)

- Handler: `regal_process_fu_auth`

- Connection type: `regal_lakeside`

## Inputs

- `mbrno` — Mbrno (text, required)
  Required text value.
- `visit_type` — Visit Type (text, required)
  Required text value.
- `visit_types` — Visit Types (json)
  Optional JSON value.
- `diagnosis_codes` — Diagnosis Codes (json, required)
  Required JSON value.
- `assessment_plan` — Assessment Plan (json)
  Optional JSON value.
- `date_of_service` — Date Of Service (date, required)
  Required date in YYYY-MM-DD format.
- `supervising_provider_name` — Supervising Provider Name (text)
  Optional text value.
- `appointment_provider_name` — Appointment Provider Name (text)
  Optional text value.
- `comments` — Comments (text)
  Optional text value.
- `reason` — Reason (text)
  Optional text value.
- `show_auth_pdf_in_inbox` — Show Auth Pdf In Inbox (boolean)
  Optional true-or-false value.
  Default: `false`
- `ecw_patient_id` — Ecw Patient Id (text)
  Optional text value.
- `fallback_provider_name` — Fallback Provider Name (text)
  Optional text value.
- `from_zipcode` — From Zipcode (text)
  Optional text value.
  Default: `"91406"`
- `grpid` — Grpid (text)
  Optional text value.
  Default: `"RHNC"`
- `ipacd` — Ipacd (text)
  Optional text value.
  Default: `"RMG"`
- `patient_site` — Patient Site (text)
  Optional text value.
  Default: `"RMG401"`
- `plntp` — Plntp (text)
  Optional text value.
  Default: `"1"`

## Outputs

- `success` — Success
- `auth_number` — Auth Number
- `auth_status` — Auth Status
- `auth_ukey` — Auth Ukey
- `validity_end_date` — Validity End Date
- `auth_start_date` — Auth Start Date
- `procedure_codes` — Procedure Codes
- `auth_pdf_path` — Auth Pdf Path
- `auth_pdf_document_id` — Auth Pdf Document Id
- `reused_existing` — Reused Existing
- `resolved_provider_last_name` — Resolved Provider Last Name
- `supplemental_auth_pdf_document_id` — Supplemental Auth Pdf Document Id
- `supplemental_procedure_codes` — Supplemental Procedure Codes
- `supplemental_submission_error` — Supplemental Submission Error
- `failure_reason` — Failure Reason
- `failure_category` — Failure Category
- `human_review_reason` — Human Review Reason
- `error` — Error

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

```json
{
  "type": "object",
  "required": [
    "mbrno",
    "visit_type",
    "diagnosis_codes",
    "date_of_service"
  ],
  "properties": {
    "grpid": {
      "type": "string",
      "default": "RHNC",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "ipacd": {
      "type": "string",
      "default": "RMG",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "mbrno": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "plntp": {
      "type": "string",
      "default": "1",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "reason": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "comments": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "visit_type": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "visit_types": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "from_zipcode": {
      "type": "string",
      "default": "91406",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "patient_site": {
      "type": "string",
      "default": "RMG401",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "ecw_patient_id": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "assessment_plan": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "date_of_service": {
      "type": "string",
      "format": "date",
      "description": "Required date in YYYY-MM-DD format.",
      "x-workflow-field-type": "date"
    },
    "diagnosis_codes": {
      "description": "Required JSON value.",
      "x-workflow-field-type": "json"
    },
    "fallback_provider_name": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "show_auth_pdf_in_inbox": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "appointment_provider_name": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "supervising_provider_name": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "success": {},
    "auth_ukey": {},
    "auth_number": {},
    "auth_status": {},
    "auth_pdf_path": {},
    "failure_reason": {},
    "auth_start_date": {},
    "procedure_codes": {},
    "reused_existing": {},
    "failure_category": {},
    "validity_end_date": {},
    "human_review_reason": {},
    "auth_pdf_document_id": {},
    "resolved_provider_last_name": {},
    "supplemental_procedure_codes": {},
    "supplemental_submission_error": {},
    "supplemental_auth_pdf_document_id": {}
  },
  "additionalProperties": true
}
```
