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

# Retrieve Merchant Settings

> Retrieves the merchant-level settings for a Square-hosted checkout page.

`square.retrieveMerchantSettings` retrieves the merchant-level settings for a Square-hosted checkout page.

## Example

```ts automations/square-retrieve-merchant-settings.automation.ts theme={null}
import { automation, onDashboardRun } from "automate.ax"
import { square } from "automate.ax/square"

export default automation("Retrieve Square Merchant Settings", () => {
  onDashboardRun({ title: "Retrieve Square Merchant Settings" })

  square.retrieveMerchantSettings()
})
```

## Inputs

Every input accepts a compatible signal. It requires `MERCHANT_PROFILE_READ` and `PAYMENT_METHODS_READ`.

This action has no inputs.

Use the official [RetrieveMerchantSettings reference](https://developer.squareup.com/reference/square/checkout-api/retrieve-merchant-settings) for provider field semantics and limits.

## Output

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