Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 902 Bytes

get-employee-wage-response.md

File metadata and controls

33 lines (25 loc) · 902 Bytes

Get Employee Wage Response

A response to a request to get an EmployeeWage. Contains the requested EmployeeWage objects. May contain a set of Error objects if the request resulted in errors.

Structure

GetEmployeeWageResponse

Fields

Name Type Tags Description
EmployeeWage Models.EmployeeWage Optional The hourly wage rate that an employee will earn on a Shift for doing the job
specified by the title property of this object.
Errors IList<Models.Error> Optional Any errors that occurred during the request.

Example (as JSON)

{
  "employee_wage": {
    "id": "pXS3qCv7BERPnEGedM4S8mhm",
    "employee_id": "33fJchumvVdJwxV0H6L9",
    "title": "Manager",
    "hourly_rate": {
      "amount": 2000,
      "currency": "USD"
    }
  }
}