Skip to documentation
Carelon Post Acute integration

Prepare Authorization or Check Saved Draft

Perform Prepare Authorization or Check Saved Draft through Carelon Post Acute.

View as Markdown
carelon_post_acute_prepare_authorization
writecarelon_post_acute

Inputs

  • order_id
    textrequired
    Order Id

    Required text value.

  • insurance_id
    textrequired
    Insurance Id

    Required text value.

  • configuration
    jsonrequired
    Configuration

    Required JSON value.

  • mode
    select
    Mode

    Optional selected identifier or value.

    Default: "draft_only"

    Options: Draft only ("draft_only"), Submit when ready ("submit_when_ready")

Outputs

  • successSuccess
  • outcomeOutcome
  • authorization_idAuthorization Id
  • observed_statusObserved Status
  • missing_document_reasonsMissing Document Reasons
  • authorization_verifiedAuthorization Verified
  • attachments_verifiedAttachments Verified
  • attachments_retainedAttachments Retained
  • reason_codeReason Code
  • errorError
  • outcome_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
}
View all Carelon Post Acute actions