Skip to documentation
Parachute Health integration

Persist Inbox Document

Perform Persist Inbox Document through Parachute Health.

View as Markdown
parachute_persist_inbox_document
writeparachute

Inputs

  • inbox_document_id
    textrequired
    Inbox Document Id

    Required text value.

  • documents
    expressionrequired
    Documents

    Required literal value or workflow expression.

Outputs

  • document_idDocument Id
  • page_countPage Count
  • source_document_countSource Document Count
  • successSuccess
  • errorError
  • failure_categoryFailure 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": [
    "inbox_document_id",
    "documents"
  ],
  "properties": {
    "documents": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "inbox_document_id": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "success": {},
    "page_count": {},
    "document_id": {},
    "failure_category": {},
    "source_document_count": {}
  },
  "additionalProperties": true
}
View all Parachute Health actions