Skip to main content
GET
/
v1
/
employment-types
/
{id}
Get Employment Type
curl --request GET \
  --url https://app.untetherlabs.com/api/v1/employment-types/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "type": "contractor",
  "compensationTimePeriod": "hourly",
  "amountWorked": "part_time",
  "createdAt": "2024-11-20T07:43:34+0000",
  "updatedAt": "2024-11-20T07:43:34+0000"
}
Retrieve a single employment type by ID

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string<uuid>
required

Response

id
string
required
name
string
required
type
enum<string>
required
Available options:
contractor,
employee
compensationTimePeriod
enum<string>
required
Available options:
hourly,
salaried
amountWorked
enum<string>
required
Available options:
part_time,
full_time,
temporary
createdAt
string
required
Example:

"2024-11-20T07:43:34+0000"

updatedAt
string
required
Example:

"2024-11-20T07:43:34+0000"