> ## 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 Location Booking Profiles

> Lists location booking profiles of a seller.

`square.listLocationBookingProfiles` lists location booking profiles of a seller.

## Example

```ts automations/square-list-location-booking-profiles.automation.ts theme={null}
import { automation, onDashboardRun } from "automate.ax"
import { square } from "automate.ax/square"

export default automation("List Square Location Booking Profiles", () => {
  onDashboardRun({ title: "List Square Location Booking Profiles" })

  square.listLocationBookingProfiles({
    limit: 1,
    cursor: "cursor",
  })
})
```

## Inputs

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

| Field    | Type             | Required | Default | Description                                                                                                                                              |
| -------- | ---------------- | -------- | ------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `limit`  | `number \| null` | No       | —       | The maximum number of results to return in a paged response.                                                                                             |
| `cursor` | `string \| null` | No       | —       | The pagination cursor from the preceding response to return the next page of the results. Do not set this when retrieving the first page of the results. |

Use the official [ListLocationBookingProfiles reference](https://developer.squareup.com/reference/square/bookings-api/list-location-booking-profiles) for provider field semantics and limits.

## Output

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