> ## 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 Team Member Booking Profiles

> Lists booking profiles for team members.

`square.listTeamMemberBookingProfiles` lists booking profiles for team members.

## Example

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

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

  square.listTeamMemberBookingProfiles({
    bookableOnly: true,
    limit: 1,
    cursor: "cursor",
    locationId: "location_id",
  })
})
```

## Inputs

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

| Field          | Type              | Required | Default | Description                                                                                                                                              |
| -------------- | ----------------- | -------- | ------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `bookableOnly` | `boolean \| null` | No       | —       | Indicates whether to include only bookable team members in the returned result (`true`) or not (`false`).                                                |
| `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. |
| `locationId`   | `string \| null`  | No       | —       | Indicates whether to include only team members enabled at the given location in the returned result.                                                     |

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

## Output

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