# Adjust Item Quantity

> Perform Adjust Item Quantity through Brightree.

Source: [https://genhealth.ai/docs/workflows/integrations/brightree/brightree_adjust_item_quantity](https://genhealth.ai/docs/workflows/integrations/brightree/brightree_adjust_item_quantity)

Integration: [Brightree](https://genhealth.ai/docs/workflows/integrations/brightree.md)

- Handler: `brightree_adjust_item_quantity`

- Connection type: `brightree`

## Inputs

- `sales_order_key` — Sales Order Key (expression)
  Optional literal value or workflow expression.
- `proc_code` — Proc Code (text)
  Optional text value.
- `quantity` — Quantity (expression)
  Optional literal value or workflow expression.
- `billing_quantity` — Billing Quantity (expression)
  Optional literal value or workflow expression.
- `dry_run` — Dry Run (boolean)
  Optional true-or-false value.
  Default: `false`

## 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: yes

## Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

### Input schema

```json
{
  "type": "object",
  "properties": {
    "dry_run": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "quantity": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "proc_code": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "sales_order_key": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "billing_quantity": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

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