Skip to documentation
Parachute Health integration

Set Inbox Document Internal Status

Perform Set Inbox Document Internal Status through Parachute Health.

View as Markdown
parachute_set_inbox_document_internal_status
writeparachute

Inputs

  • inbox_document_id
    expressionrequired
    Inbox Document Id

    Required literal value or workflow expression.

  • internal_status_name
    selectrequired
    Internal Status Name

    Required selected identifier or value.

    Options: Processing ("genhealth-processing"), Processed ("genhealth-processed"), Failed ("genhealth-failed")

  • internal_statuses
    expressionrequired
    Internal Statuses

    Required literal value or workflow expression.

  • parachute_org_id
    expression
    Parachute Org Id

    Optional literal value or workflow expression.

Outputs

  • successSuccess
  • inbox_document_idInbox Document Id
  • org_idOrg Id
  • internal_status_idInternal Status Id
  • statusStatus
  • status_codeStatus Code
  • errorError
  • error_messageError Message

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",
    "internal_status_name",
    "internal_statuses"
  ],
  "properties": {
    "parachute_org_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "inbox_document_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "internal_statuses": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "internal_status_name": {
      "enum": [
        "genhealth-processing",
        "genhealth-processed",
        "genhealth-failed"
      ],
      "type": "string",
      "description": "Required selected identifier or value.",
      "x-workflow-field-type": "select"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "org_id": {},
    "status": {},
    "success": {},
    "status_code": {},
    "error_message": {},
    "inbox_document_id": {},
    "internal_status_id": {}
  },
  "additionalProperties": true
}
View all Parachute Health actions