# Apply Consignment Side Modifiers

> Perform Apply Consignment Side Modifiers through Consignment Intake.

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

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

- Handler: `apply_consignment_side_modifiers`

## Inputs

- `items` — Items (json, required)
  Required JSON value.
- `diagnosis_codes` — Diagnosis Codes (json)
  Optional JSON value.
- `packet_fields` — Packet Fields (json)
  Optional JSON value.

## Outputs

- `success` — Success
- `items` — Items
- `resolved_line_count` — Resolved Line Count
- `unresolved_line_count` — Unresolved Line Count
- `unresolved_line_keys` — Unresolved Line Keys
- `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": [
    "items"
  ],
  "properties": {
    "items": {
      "description": "Required JSON value.",
      "x-workflow-field-type": "json"
    },
    "packet_fields": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "diagnosis_codes": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "items": {},
    "success": {},
    "resolved_line_count": {},
    "unresolved_line_keys": {},
    "unresolved_line_count": {}
  },
  "additionalProperties": true
}
```
