Get one job

Returns a Job object containing information about one employee job at a restaurant.

Securityoauth2
Request
path Parameters
jobId
required
string <string>

The Toast platform GUID or an external identifier for the job.

header Parameters
Toast-Restaurant-External-ID
required
string <string>

The Toast platform GUID of the restaurant that is the context for this operation.

Responses
200

Returns the specified job.

400

The Toast platform GUID or external identifier was malformed.

500

An unexpected internal error occurred. There is a requestId attached to this error that can be referenced by Toast support.

get/jobs/{jobId}
Request samples
curl -i -X GET \
  'https://toast-api-server/labor/v1/jobs/{jobId}' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Toast-Restaurant-External-ID: string'
Response samples
application/json
{
  • "guid": "string",
  • "entityType": "string",
  • "externalId": "string",
  • "createdDate": "2019-08-24T14:15:22Z",
  • "modifiedDate": "2019-08-24T14:15:22Z",
  • "deletedDate": "2019-08-24T14:15:22Z",
  • "title": "string",
  • "deleted": true,
  • "wageFrequency": "HOURLY",
  • "defaultWage": 0,
  • "tipped": true,
  • "code": "string",
  • "excludeFromReporting": true
}