Skip to content

Latest commit

 

History

History
64 lines (55 loc) · 1.62 KB

list-team-member-wages-response.md

File metadata and controls

64 lines (55 loc) · 1.62 KB

List Team Member Wages Response

The response to a request for a set of TeamMemberWage objects. The response contains a set of TeamMemberWage objects.

Structure

ListTeamMemberWagesResponse

Fields

Name Type Tags Description
teamMemberWages TeamMemberWage[] | undefined Optional A page of TeamMemberWage results.
cursor string | undefined Optional The value supplied in the subsequent request to fetch the next page
of TeamMemberWage results.
errors Error[] | undefined Optional Any errors that occurred during the request.

Example (as JSON)

{
  "cursor": "2fofTniCgT0yIPAq26kmk0YyFQJZfbWkh73OOnlTHmTAx13NgED",
  "team_member_wages": [
    {
      "hourly_rate": {
        "amount": 3250,
        "currency": "USD"
      },
      "id": "pXS3qCv7BERPnEGedM4S8mhm",
      "team_member_id": "33fJchumvVdJwxV0H6L9",
      "title": "Manager"
    },
    {
      "hourly_rate": {
        "amount": 2600,
        "currency": "USD"
      },
      "id": "rZduCkzYDUVL3ovh1sQgbue6",
      "team_member_id": "33fJchumvVdJwxV0H6L9",
      "title": "Cook"
    },
    {
      "hourly_rate": {
        "amount": 1600,
        "currency": "USD"
      },
      "id": "FxLbs5KpPUHa8wyt5ctjubDX",
      "team_member_id": "33fJchumvVdJwxV0H6L9",
      "title": "Barista"
    },
    {
      "hourly_rate": {
        "amount": 1700,
        "currency": "USD"
      },
      "id": "vD1wCgijMDR3cX5TPnu7VXto",
      "team_member_id": "33fJchumvVdJwxV0H6L9",
      "title": "Cashier"
    }
  ]
}