curl --request POST \
--url https://{tenant}.ekso.app/api/insight/report/user-timesheet \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"userId": "<string>",
"startDate": "2023-11-07T05:31:56Z",
"endDate": "2023-11-07T05:31:56Z"
}
'[
{
"date": "2023-11-07T05:31:56Z",
"totalMinutes": 123,
"label": "<string>",
"isBillable": 123
}
]curl --request POST \
--url https://{tenant}.ekso.app/api/insight/report/user-timesheet \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"userId": "<string>",
"startDate": "2023-11-07T05:31:56Z",
"endDate": "2023-11-07T05:31:56Z"
}
'[
{
"date": "2023-11-07T05:31:56Z",
"totalMinutes": 123,
"label": "<string>",
"isBillable": 123
}
]JWT Bearer token. Obtain via the OAuth 2.0 token endpoint.
The user identifier, date range, and filter criteria.