# Write Delivery Note

> Perform Write Delivery Note through WhiteAid.

Source: [https://genhealth.ai/docs/workflows/integrations/white-aid/white_aid_dvs_write_delivery_note](https://genhealth.ai/docs/workflows/integrations/white-aid/white_aid_dvs_write_delivery_note)

Integration: [WhiteAid](https://genhealth.ai/docs/workflows/integrations/white-aid.md)

- Handler: `white_aid_dvs_write_delivery_note`

## Inputs

- `phase_3_input` — Phase 3 Input (json)
  Optional JSON value.
- `delivery_note_lines` — Delivery Note Lines (expression)
  Optional literal value or workflow expression.
- `order_lease` — Order Lease (json)
  Optional JSON value.
- `delivery_note_writeback_enabled` — Delivery Note Writeback Enabled (boolean)
  Optional true-or-false value.
  Default: `true`

## Outputs

No named outputs are declared for this action.

Output schema completeness: `unknown`

## 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",
  "properties": {
    "order_lease": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "phase_3_input": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "delivery_note_lines": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "delivery_note_writeback_enabled": {
      "type": "boolean",
      "default": true,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {},
  "additionalProperties": true
}
```
