Skip to documentation
Parachute Health integration

Build Prior Authorization Packet

Perform Build Prior Authorization Packet through Parachute Health.

View as Markdown
parachute_build_prior_auth_packet
writeparachute

Inputs

  • order_id
    expressionrequired
    Order Id

    Required literal value or workflow expression.

  • supplier_id
    expression
    Supplier Id

    Optional literal value or workflow expression.

  • order_documents
    expression
    Order Documents

    Optional literal value or workflow expression.

  • include_named_documents
    boolean
    Include Named Documents

    Optional true-or-false value.

    Default: true

  • document_names
    text
    Document Names

    Optional text value.

Outputs

  • successSuccess
  • statusStatus
  • document_idDocument Id
  • source_document_countSource Document Count
  • page_countPage Count
  • size_bytesSize Bytes
  • was_existingWas Existing
  • errorError

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"
  ],
  "properties": {
    "order_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "supplier_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "document_names": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "order_documents": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "include_named_documents": {
      "type": "boolean",
      "default": true,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "status": {},
    "success": {},
    "page_count": {},
    "size_bytes": {},
    "document_id": {},
    "was_existing": {},
    "source_document_count": {}
  },
  "additionalProperties": true
}
View all Parachute Health actions