> ## 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.

# Upload conversion adjustments

> Retract, restate, or enhance uploaded Google Ads conversions.

Use `googleAds.uploadConversionAdjustments` to retract, restate, or enhance uploaded Google Ads conversions.

## Example

```ts theme={null}
import { automation, onDashboardRun } from "automate.ax"
import { googleAds } from "automate.ax/google-ads"

export default automation("Upload conversion adjustments", () => {
  onDashboardRun({ title: "Upload conversion adjustments" })

  googleAds.uploadConversionAdjustments({
    customerId: "1234567890",
    items: [
      {
        adjustmentType: "RETRACTION",
        adjustmentDateTime: "2026-08-11 09:00:00-07:00",
        conversionAction: "customers/1234567890/conversionActions/111",
        orderId: "order-123",
      },
    ],
  })
})
```

## Inputs

Upload 1–2,000 retractions or restatements. Every item needs its type, adjustment time, conversion action, and order ID. Restatements require the adjusted value and currency. All customer-scoped actions accept optional `loginCustomerId` for manager-account access and a named Google account binding.

## Output

Returns per-record results and any partial-failure error.
