# Build Manual Handoff Status

> Perform Build Manual Handoff Status through GenHealth - Intake.

Source: [https://genhealth.ai/docs/workflows/integrations/gen-health-intake/intake_build_manual_handoff_status](https://genhealth.ai/docs/workflows/integrations/gen-health-intake/intake_build_manual_handoff_status)

Integration: [GenHealth - Intake](https://genhealth.ai/docs/workflows/integrations/gen-health-intake.md)

- Handler: `intake_build_manual_handoff_status`

## Inputs

- `order_id` — Order Id (expression)
  Optional literal value or workflow expression.
- `workflow_number` — Workflow Number (expression)
  Optional literal value or workflow expression.
- `patient_id` — Patient Id (expression)
  Optional literal value or workflow expression.
- `patient_key` — Patient Key (expression)
  Optional literal value or workflow expression.
- `local_patient_id` — Local Patient Id (expression)
  Optional literal value or workflow expression.
- `status` — Status (text)
  Optional text value.
  Default: `"manual_handoff_required"`
- `reason` — Reason (expression, required)
  Required literal value or workflow expression.
- `task_name` — Task Name (text)
  Optional text value.
- `target_channel` — Target Channel (text)
  Optional text value.
- `details` — Details (json)
  Optional JSON value.

## Outputs

- `success` — Success
- `status` — Status
- `failure_category` — Failure Category
- `manual_handoff_required` — Manual Handoff Required
- `order_id` — Order Id
- `workflow_number` — Workflow Number
- `patient_id` — Patient Id
- `patient_key` — Patient Key
- `local_patient_id` — Local Patient Id
- `reason` — Reason
- `task_name` — Task Name
- `target_channel` — Target Channel
- `details` — Details
- `message` — Message
- `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": [
    "reason"
  ],
  "properties": {
    "reason": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "status": {
      "type": "string",
      "default": "manual_handoff_required",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "details": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "order_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "task_name": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "patient_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "patient_key": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "target_channel": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "workflow_number": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "local_patient_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "reason": {},
    "status": {},
    "details": {},
    "message": {},
    "success": {},
    "order_id": {},
    "task_name": {},
    "patient_id": {},
    "patient_key": {},
    "error_message": {},
    "target_channel": {},
    "workflow_number": {},
    "failure_category": {},
    "local_patient_id": {},
    "manual_handoff_required": {}
  },
  "additionalProperties": true
}
```
