# Set Inbox Document Internal Status

> Perform Set Inbox Document Internal Status through Parachute Health.

Source: [https://genhealth.ai/docs/workflows/integrations/parachute-health/parachute_set_inbox_document_internal_status](https://genhealth.ai/docs/workflows/integrations/parachute-health/parachute_set_inbox_document_internal_status)

Integration: [Parachute Health](https://genhealth.ai/docs/workflows/integrations/parachute-health.md)

- Handler: `parachute_set_inbox_document_internal_status`

- Connection type: `parachute`

## Inputs

- `inbox_document_id` — Inbox Document Id (expression, required)
  Required literal value or workflow expression.
- `internal_status_name` — Internal Status Name (select, required)
  Required selected identifier or value.
  Options: Processing ("genhealth-processing"), Processed ("genhealth-processed"), Failed ("genhealth-failed")
- `internal_statuses` — Internal Statuses (expression, required)
  Required literal value or workflow expression.
- `parachute_org_id` — Parachute Org Id (expression)
  Optional literal value or workflow expression.

## Outputs

- `success` — Success
- `inbox_document_id` — Inbox Document Id
- `org_id` — Org Id
- `internal_status_id` — Internal Status Id
- `status` — Status
- `status_code` — Status Code
- `error` — Error
- `error_message` — Error 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

```json
{
  "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

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "org_id": {},
    "status": {},
    "success": {},
    "status_code": {},
    "error_message": {},
    "inbox_document_id": {},
    "internal_status_id": {}
  },
  "additionalProperties": true
}
```
