> ## Documentation Index
> Fetch the complete documentation index at: https://docs.automate.ax/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# List Inventory Adjustment Reasons

> Returns the standard and custom inventory adjustment reasons available to the seller.

`square.listInventoryAdjustmentReasons` returns the standard and custom inventory adjustment reasons available to the seller.

## Example

```ts automations/square-list-inventory-adjustment-reasons.automation.ts theme={null}
import { automation, onDashboardRun } from "automate.ax"
import { square } from "automate.ax/square"

export default automation("List Square Inventory Adjustment Reasons", () => {
  onDashboardRun({ title: "List Square Inventory Adjustment Reasons" })

  square.listInventoryAdjustmentReasons({
    includeDeleted: true,
    includeSystemCodes: true,
  })
})
```

## Inputs

Every input accepts a compatible signal. It requires `INVENTORY_READ`.

| Field                | Type              | Required | Default | Description                                                                                                                                                                                                                                                                    |
| -------------------- | ----------------- | -------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `includeDeleted`     | `boolean \| null` | No       | `false` | Indicates whether the response should include deleted custom inventory adjustment reasons. The default value is `false`.                                                                                                                                                       |
| `includeSystemCodes` | `boolean \| null` | No       | `false` | Indicates whether the response should include Square-generated system inventory adjustment reason codes that cannot be used to write adjustments from the Connect API, such as `SALE`, `RECOUNT`, `TRANSFER`, `IN_TRANSIT`, and `CANCELED_SALE`. The default value is `false`. |

Use the official [ListInventoryAdjustmentReasons reference](https://developer.squareup.com/reference/square/inventory-api/list-inventory-adjustment-reasons) for provider field semantics and limits.

## Output

Returns the official `Square.ListInventoryAdjustmentReasonsResponse` response as a codec-safe object. Square integer money amounts remain `bigint` values.
