Workers
Get a worker
Retrieve the details of an existing worker.
GET
/
workers
/
{id}
curl --request GET \
--url https://api.plane.com/v1/workers/{id} \
--header 'Authorization: <authorization>'
{
"id": "wr_5yMmVvd6Cz7Ptx",
"type": "employee",
"number": null,
"title": "CAO",
"name": "Frigga Odinson",
"email": "frigga@example.com",
"dob": null
}
Parameters
id
string
requiredThe ID of a worker in your Plane workspace.
Returns
Returns a worker if a valid identifier was provided, and returns an error otherwise.
Was this page helpful?
curl --request GET \
--url https://api.plane.com/v1/workers/{id} \
--header 'Authorization: <authorization>'
{
"id": "wr_5yMmVvd6Cz7Ptx",
"type": "employee",
"number": null,
"title": "CAO",
"name": "Frigga Odinson",
"email": "frigga@example.com",
"dob": null
}