# Build Consignment Sender Reply Plans

> Perform Build Consignment Sender Reply Plans through Consignment Intake.

Source: [https://genhealth.ai/docs/workflows/integrations/consignment-intake/build_consignment_sender_reply_plans](https://genhealth.ai/docs/workflows/integrations/consignment-intake/build_consignment_sender_reply_plans)

Integration: [Consignment Intake](https://genhealth.ai/docs/workflows/integrations/consignment-intake.md)

- Handler: `build_consignment_sender_reply_plans`

## Inputs

- `group_email` — Group Email (text, required)
  Required text value.
- `attachment_collection` — Attachment Collection (json, required)
  Required JSON value.
- `subject_metadata` — Subject Metadata (json, required)
  Required JSON value.
- `message_fetch_results` — Message Fetch Results (json, required)
  Required JSON value.
- `status_summary` — Status Summary (json, required)
  Required JSON value.
- `document_loop_results` — Document Loop Results (json, required)
  Required JSON value.
- `targeted_reprocess` — Targeted Reprocess (boolean, required)
  Required true-or-false value.

## Outputs

- `success` — Success
- `reply_plans` — Reply Plans
- `reply_count` — Reply Count
- `suppressed_count` — Suppressed Count
- `error` — Error

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": [
    "group_email",
    "attachment_collection",
    "subject_metadata",
    "message_fetch_results",
    "status_summary",
    "document_loop_results",
    "targeted_reprocess"
  ],
  "properties": {
    "group_email": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "status_summary": {
      "description": "Required JSON value.",
      "x-workflow-field-type": "json"
    },
    "subject_metadata": {
      "description": "Required JSON value.",
      "x-workflow-field-type": "json"
    },
    "targeted_reprocess": {
      "type": "boolean",
      "description": "Required true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "attachment_collection": {
      "description": "Required JSON value.",
      "x-workflow-field-type": "json"
    },
    "document_loop_results": {
      "description": "Required JSON value.",
      "x-workflow-field-type": "json"
    },
    "message_fetch_results": {
      "description": "Required JSON value.",
      "x-workflow-field-type": "json"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "success": {},
    "reply_count": {},
    "reply_plans": {},
    "suppressed_count": {}
  },
  "additionalProperties": true
}
```
