Skip to main content
GET
https://api.plane.com/v1
/
reportings
/
{id}
Get a reporting
curl --request GET \
  --url https://api.plane.com/v1/reportings/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "wrp_cNqYX2J3s9bI2Aa",
  "worker": "wr_5yMmVvd6Cz7Ptx",
  "department": {
    "id": "dep_abc123",
    "name": "Engineering"
  },
  "manager": {
    "id": "wr_xyz789",
    "name": "Jane Smith"
  },
  "created": "2024-01-15T00:00:00Z"
}

Parameters

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

Returns

Returns a reporting if a valid identifier was provided, and returns an error otherwise.
{
  "id": "wrp_cNqYX2J3s9bI2Aa",
  "worker": "wr_5yMmVvd6Cz7Ptx",
  "department": {
    "id": "dep_abc123",
    "name": "Engineering"
  },
  "manager": {
    "id": "wr_xyz789",
    "name": "Jane Smith"
  },
  "created": "2024-01-15T00:00:00Z"
}