Skip to main content
GET
/
v1
/
workforce
/
calculations
/
{id}
Get a workforce calculation
curl --request GET \
  --url https://api.plane.com/v1/workforce/calculations/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "wfc_V6nP3qR9tY2m",
  "object": "workforce_calculation",
  "status": "calculated",
  "plan": null,
  "currency": "CAD",
  "period": {
    "starts": "2026-09-01",
    "ends": "2026-10-31",
    "frequency": "monthly"
  },
  "headcount": "1.0",
  "cost": {
    "total": "26400.00",
    "cash": "26400.00",
    "accrual": "0.00"
  },
  "periods": [
    {
      "period": "2026-09",
      "headcount": "1.0",
      "cost": "13200.00",
      "line_items": []
    }
  ],
  "created": "2026-05-27T12:00:00Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.plane.com/llms.txt

Use this file to discover all available pages before exploring further.

Parameters

id
string
required
The ID of the workforce calculation to retrieve.

Returns

Returns the Workforce calculation object.
{
  "id": "wfc_V6nP3qR9tY2m",
  "object": "workforce_calculation",
  "status": "calculated",
  "plan": null,
  "currency": "CAD",
  "period": {
    "starts": "2026-09-01",
    "ends": "2026-10-31",
    "frequency": "monthly"
  },
  "headcount": "1.0",
  "cost": {
    "total": "26400.00",
    "cash": "26400.00",
    "accrual": "0.00"
  },
  "periods": [
    {
      "period": "2026-09",
      "headcount": "1.0",
      "cost": "13200.00",
      "line_items": []
    }
  ],
  "created": "2026-05-27T12:00:00Z"
}