Skip to documentation
Consignment Intake integration

Evaluate Consignment Prior Authorization

Perform Evaluate Consignment Prior Authorization through Consignment Intake.

View as Markdown
evaluate_consignment_prior_authorization
write

Inputs

  • payer_id
    expressionrequired
    Payer Id

    Required literal value or workflow expression.

  • item_identities
    jsonrequired
    Item Identities

    Required JSON value.

  • eligibility_verified
    boolean
    Eligibility Verified

    Optional true-or-false value.

Outputs

  • successSuccess
  • prior_authorization_requiredPrior Authorization Required
  • review_requiredReview Required
  • review_reasonReview Reason
  • review_reasonsReview Reasons
  • alert_type_idAlert Type Id
  • alert_commentAlert Comment
  • stateState

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": [
    "payer_id",
    "item_identities"
  ],
  "properties": {
    "payer_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "item_identities": {
      "description": "Required JSON value.",
      "x-workflow-field-type": "json"
    },
    "eligibility_verified": {
      "type": "boolean",
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "state": {},
    "success": {},
    "alert_comment": {},
    "alert_type_id": {},
    "review_reason": {},
    "review_reasons": {},
    "review_required": {},
    "prior_authorization_required": {}
  },
  "additionalProperties": true
}
View all Consignment Intake actions