Prepare Authorization or Check Saved Draft
Perform Prepare Authorization or Check Saved Draft through Carelon Post Acute.
carelon_post_acute_prepare_authorizationwritecarelon_post_acute
Inputs
- Order Id
order_idtextrequiredRequired text value.
- Insurance Id
insurance_idtextrequiredRequired text value.
- Configuration
configurationjsonrequiredRequired JSON value.
- Mode
modeselectOptional selected identifier or value.
Default:
"draft_only"Options: Draft only ("draft_only"), Submit when ready ("submit_when_ready")
Outputs
successSuccessoutcomeOutcomeauthorization_idAuthorization Idobserved_statusObserved Statusmissing_document_reasonsMissing Document Reasonsauthorization_verifiedAuthorization Verifiedattachments_verifiedAttachments Verifiedattachments_retainedAttachments Retainedreason_codeReason CodeerrorErroroutcome_categoryOutcome Category
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": [
"order_id",
"insurance_id",
"configuration"
],
"properties": {
"mode": {
"enum": [
"draft_only",
"submit_when_ready"
],
"type": "string",
"default": "draft_only",
"description": "Optional selected identifier or value.",
"x-workflow-field-type": "select"
},
"order_id": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"insurance_id": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"configuration": {
"description": "Required JSON value.",
"x-workflow-field-type": "json"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"outcome": {},
"success": {},
"reason_code": {},
"observed_status": {},
"authorization_id": {},
"outcome_category": {},
"attachments_retained": {},
"attachments_verified": {},
"authorization_verified": {},
"missing_document_reasons": {}
},
"additionalProperties": true
}