Skip to main content
GET
/
api
/
plan
/
{boardId}
/
heatmap
Returns a resource-by-cycle utilization heatmap for a board.
curl --request GET \
  --url https://{tenant}.ekso.app/api/plan/{boardId}/heatmap \
  --header 'Authorization: Bearer <token>'
{
  "resources": [
    {
      "userId": "<string>",
      "userName": "<string>",
      "resourceType": 123,
      "cycles": [
        {
          "cycleId": "<string>",
          "cycleName": "<string>",
          "plannedHours": 123,
          "capacityHours": 123,
          "utilizationPercent": 123
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

JWT Bearer token. Obtain via the OAuth 2.0 token endpoint.

Path Parameters

boardId
string
required

Response

OK

resources
object[]