Build Prior Authorization Packet
Perform Build Prior Authorization Packet through Parachute Health.
parachute_build_prior_auth_packetwriteparachute
Inputs
- Order Id
order_idexpressionrequiredRequired literal value or workflow expression.
- Supplier Id
supplier_idexpressionOptional literal value or workflow expression.
- Order Documents
order_documentsexpressionOptional literal value or workflow expression.
- Include Named Documents
include_named_documentsbooleanOptional true-or-false value.
Default:
true - Document Names
document_namestextOptional text value.
Outputs
successSuccessstatusStatusdocument_idDocument Idsource_document_countSource Document Countpage_countPage Countsize_bytesSize Byteswas_existingWas ExistingerrorError
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
}