Team
CreateJob
Creates a job in a seller account. A job defines a title and tip eligibility. Note that compensation is defined in a job assignment in a team member's wage setting.
post/v2/team-members/jobs
Request body
Example request
{
"idempotency_key": "idempotency-key-0",
"job": {
"is_tip_eligible": true,
"title": "Cashier"
}
}Response
Success
Example response
{
"job": {
"created_at": "2021-06-11T22:55:45Z",
"id": "1yJlHapkseYnNPETIU1B",
"is_tip_eligible": true,
"title": "Cashier",
"updated_at": "2021-06-11T22:55:45Z",
"version": 1
}
}