Get employee wage
Deprecated
Returns a single EmployeeWage
specified by id.
Permissions
EMPLOYEES_READ
Deprecation date
2020-08-26
Retirement date
2021-08-26
Replaced by
GetTeamMemberWage
Migration guide
Name | Description |
---|---|
id
Required
|
UUID for the |
Response Fields
Name | Description |
---|---|
employee_
|
The requested |
errors
|
Any errors that occurred during the request. |
Examples
GET
/v2/labor/employee-wages/{id}
cURL
- cURL
- Ruby
- Python
- C#
- Java
- PHP
- Node.js
curl https://connect.squareup.com/v2/labor/employee-wages/pXS3qCv7BERPnEGedM4S8mhm \
-H 'Square-Version: 2020-12-16' \
-H 'Authorization: Bearer ACCESS_TOKEN' \
-H 'Content-Type: application/json'
Response JSON
{
"employee_wage": {
"id": "pXS3qCv7BERPnEGedM4S8mhm",
"employee_id": "33fJchumvVdJwxV0H6L9",
"title": "Manager",
"hourly_rate": {
"amount": 2000,
"currency": "USD"
}
}
}