Process F/U Authorization
Perform Process F/U Authorization through Regal/Lakeside.
regal_process_fu_authwriteregal_lakeside
Inputs
- Mbrno
mbrnotextrequiredRequired text value.
- Visit Type
visit_typetextrequiredRequired text value.
- Visit Types
visit_typesjsonOptional JSON value.
- Diagnosis Codes
diagnosis_codesjsonrequiredRequired JSON value.
- Assessment Plan
assessment_planjsonOptional JSON value.
- Date Of Service
date_of_servicedaterequiredRequired date in YYYY-MM-DD format.
- Supervising Provider Name
supervising_provider_nametextOptional text value.
- Appointment Provider Name
appointment_provider_nametextOptional text value.
- Comments
commentstextOptional text value.
- Reason
reasontextOptional text value.
- Show Auth Pdf In Inbox
show_auth_pdf_in_inboxbooleanOptional true-or-false value.
Default:
false - Ecw Patient Id
ecw_patient_idtextOptional text value.
- Fallback Provider Name
fallback_provider_nametextOptional text value.
- From Zipcode
from_zipcodetextOptional text value.
Default:
"91406" - Grpid
grpidtextOptional text value.
Default:
"RHNC" - Ipacd
ipacdtextOptional text value.
Default:
"RMG" - Patient Site
patient_sitetextOptional text value.
Default:
"RMG401" - Plntp
plntptextOptional text value.
Default:
"1"
Outputs
successSuccessauth_numberAuth Numberauth_statusAuth Statusauth_ukeyAuth Ukeyvalidity_end_dateValidity End Dateauth_start_dateAuth Start Dateprocedure_codesProcedure Codesauth_pdf_pathAuth Pdf Pathauth_pdf_document_idAuth Pdf Document Idreused_existingReused Existingresolved_provider_last_nameResolved Provider Last Namesupplemental_auth_pdf_document_idSupplemental Auth Pdf Document Idsupplemental_procedure_codesSupplemental Procedure Codessupplemental_submission_errorSupplemental Submission Errorfailure_reasonFailure Reasonfailure_categoryFailure Categoryhuman_review_reasonHuman Review ReasonerrorError
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": [
"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
{
"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
}