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

> Returns a paginated list of `TeamMemberWage` instances for a business.

`square.listTeamMemberWages` returns a paginated list of `TeamMemberWage` instances for a business.

## Example

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

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

  square.listTeamMemberWages({
    teamMemberId: "team_member_id",
    limit: 1,
    cursor: "cursor",
  })
})
```

## Inputs

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

| Field          | Type             | Required | Default | Description                                                                                                                    |
| -------------- | ---------------- | -------- | ------- | ------------------------------------------------------------------------------------------------------------------------------ |
| `teamMemberId` | `string \| null` | No       | —       | Filter the returned wages to only those that are associated with the specified team member.                                    |
| `limit`        | `number \| null` | No       | —       | The maximum number of `TeamMemberWage` results to return per page. The number can range between 1 and 200. The default is 200. |
| `cursor`       | `string \| null` | No       | —       | A pointer to the next page of `EmployeeWage` results to fetch.                                                                 |

Use the official [ListTeamMemberWages reference](https://developer.squareup.com/reference/square/labor-api/list-team-member-wages) for provider field semantics and limits.

## Output

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