List team member wages
GET
/v2/labor/team-member-wages
Returns a paginated list of TeamMemberWage
instances for a business.
Permissions
EMPLOYEES_READ
Try in API Explorer
Name | Description |
---|---|
team_
|
Filter wages returned to only those that are associated with the specified team member. |
limit
|
Maximum number of Team Member Wages to return per page. Can range between 1 and 200. The default is the maximum at 200. |
cursor
|
Pointer to the next page of Employee Wage results to fetch. |
Response Fields
Name | Description |
---|---|
team_
|
A page of Team Member Wage results. |
cursor
|
Value supplied in the subsequent request to fetch the next next page of Team Member Wage results. |
errors
|
Any errors that occurred during the request. |
Examples
GET
/v2/labor/team-member-wages
cURL
- cURL
- Ruby
- Python
- C#
- Java
- PHP
- Node.js
curl https://connect.squareup.com/v2/labor/team-member-wages?team_member_id=33fJchumvVdJwxV0H6L9&limit=4&cursor=s4R0Z6ecFTzTC4jz8sUDBQTudX3KE313OT9fCt3VUgsXM4sMgED \
-H 'Square-Version: 2021-01-21' \
-H 'Authorization: Bearer ACCESS_TOKEN' \
-H 'Content-Type: application/json'
Response JSON
{
"team_member_wages": [
{
"id": "pXS3qCv7BERPnEGedM4S8mhm",
"team_member_id": "33fJchumvVdJwxV0H6L9",
"title": "Manager",
"hourly_rate": {
"amount": 3250,
"currency": "USD"
}
},
{
"id": "rZduCkzYDUVL3ovh1sQgbue6",
"team_member_id": "33fJchumvVdJwxV0H6L9",
"title": "Cook",
"hourly_rate": {
"amount": 2600,
"currency": "USD"
}
},
{
"id": "FxLbs5KpPUHa8wyt5ctjubDX",
"team_member_id": "33fJchumvVdJwxV0H6L9",
"title": "Barista",
"hourly_rate": {
"amount": 1600,
"currency": "USD"
}
},
{
"id": "vD1wCgijMDR3cX5TPnu7VXto",
"team_member_id": "33fJchumvVdJwxV0H6L9",
"title": "Cashier",
"hourly_rate": {
"amount": 1700,
"currency": "USD"
}
}
],
"cursor": "2fofTniCgT0yIPAq26kmk0YyFQJZfbWkh73OOnlTHmTAx13NgED"
}