Skip to main content
POST
/
api
/
insight
/
report
/
user
Returns a per-user summary of logged time for the specified reporting period.
curl --request POST \
  --url https://{install}/api/insight/report/user \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "startDate": "2023-11-07T05:31:56Z",
  "endDate": "2023-11-07T05:31:56Z"
}
'
[
  {
    "userId": "<string>",
    "userName": "<string>",
    "jobRoleName": "<string>",
    "totalHours": 123,
    "billableHours": 123,
    "nonBillableHours": 123,
    "billablePercentage": 123,
    "nonBillablePercentage": 123
  }
]

Documentation Index

Fetch the complete documentation index at: https://ekso.dev/llms.txt

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

Authorizations

Authorization
string
header
required

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

Body

The date range and filter criteria for the report.

startDate
string<date-time>
endDate
string<date-time>

Response

User time summaries.

userId
string
userName
string
jobRoleName
string
totalHours
integer<int32>
billableHours
integer<int32>
nonBillableHours
integer<int32>
billablePercentage
integer<int32>
nonBillablePercentage
integer<int32>