Skip to content

Latest commit

 

History

History
58 lines (49 loc) · 1.29 KB

update-wage-setting-request.md

File metadata and controls

58 lines (49 loc) · 1.29 KB

Update Wage Setting Request

Represents an update request for the WageSetting object describing a TeamMember.

Structure

UpdateWageSettingRequest

Fields

Name Type Tags Description
WageSetting WageSetting Required Represents information about the overtime exemption status, job assignments, and compensation
for a team member.

Example (as JSON)

{
  "wage_setting": {
    "is_overtime_exempt": true,
    "job_assignments": [
      {
        "annual_rate": {
          "amount": 3000000,
          "currency": "USD"
        },
        "job_title": "Manager",
        "pay_type": "SALARY",
        "weekly_hours": 40,
        "hourly_rate": {
          "amount": 172,
          "currency": "LAK"
        },
        "job_id": "job_id2"
      },
      {
        "hourly_rate": {
          "amount": 2000,
          "currency": "USD"
        },
        "job_title": "Cashier",
        "pay_type": "HOURLY",
        "annual_rate": {
          "amount": 232,
          "currency": "NIO"
        },
        "weekly_hours": 98,
        "job_id": "job_id2"
      }
    ],
    "team_member_id": "team_member_id8",
    "version": 130,
    "created_at": "created_at6"
  }
}