Team
UpdateJob
Updates the title or tip eligibility of a job. Changes to the title propagate to all JobAssignment, Shift, and TeamMemberWage objects that reference the job ID. Changes to tip eligibility propagate to all TeamMemberWage objects that reference the job ID.
put/v2/team-members/jobs/{job_id}
Path parameters
job_idstring required
The ID of the job to update.
Request body
Example request
{
"job": {
"is_tip_eligible": true,
"title": "Cashier 1"
}
}Response
Success
Example response
{
"job": {
"created_at": "2021-06-11T22:55:45Z",
"id": "1yJlHapkseYnNPETIU1B",
"is_tip_eligible": true,
"title": "Cashier 1",
"updated_at": "2021-06-13T12:55:45Z",
"version": 2
}
}