v1

latestOpenAPI 3.0.0Apache 2.02026-07-143281,4552.1 MB
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

idempotency_keystring required

A unique identifier for the CreateJob request. Keys can be any valid string, but must be unique for each request. For more information, see Idempotency.

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
  }
}