Skip to main content
GET
https://api.plane.com/v1
/
classifications
/
{id}
Get a classification
curl --request GET \
  --url https://api.plane.com/v1/classifications/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "wrc_cNqYX2J3s9bI2Aa",
  "worker": "wr_5yMmVvd6Cz7Ptx",
  "status": "full-time",
  "type": "salaried",
  "term": "at-will",
  "overtime": false,
  "starts": "2024-01-15",
  "ends": null,
  "created": "2024-01-15T00:00:00Z"
}

Parameters

id
string
required
The ID of a worker classification in your Plane workspace.

Returns

Returns a classification if a valid identifier was provided, and returns an error otherwise.
{
  "id": "wrc_cNqYX2J3s9bI2Aa",
  "worker": "wr_5yMmVvd6Cz7Ptx",
  "status": "full-time",
  "type": "salaried",
  "term": "at-will",
  "overtime": false,
  "starts": "2024-01-15",
  "ends": null,
  "created": "2024-01-15T00:00:00Z"
}