GET
/
workers
/
{id}
curl --request GET \
  --url https://api.plane.com/v1/workers/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "wr_5yMmVvd6Cz7Ptx",
  "type": "employee",
  "number": null,
  "title": "CAO",
  "name": "Frigga Odinson",
  "email": "frigga@example.com",
  "dob": null
}

Parameters

id
string
required

The ID of a worker in your Plane workspace.

Returns

Returns a worker if a valid identifier was provided, and returns an error otherwise.

{
  "id": "wr_5yMmVvd6Cz7Ptx",
  "type": "employee",
  "number": null,
  "title": "CAO",
  "name": "Frigga Odinson",
  "email": "frigga@example.com",
  "dob": null
}