916e669fc527
Gets a list of timesheets that belong to the specified resource
Retrieve a paged list of timesheets for a resource (required scope resources:read)
Path parameters
The unique identifier of the resource whose timesheets are being retrieved
Query parameters
Only return timesheets where startedAt is on or after this date
Only return timesheets where endedAt is on or before this date
The status of a resource timesheet.<p>Possible values:</p><ul><li><b>unsigned</b>: The timesheet has not yet been signed by the resource.</li><li><b>signed</b>: The timesheet has been signed by the resource.</li><li><b>queried</b>: The timesheet has been queried and requires review.</li><li><b>rejected</b>: The timesheet has been rejected.</li><li><b>approved</b>: The timesheet has been approved.</li><li><b>paid</b>: The timesheet has been paid.</li></ul>
Only return timesheets where status matches the value provided
The page number being requested (minimum: 1, maximum: 2147483)
The page size being requested (minimum: 1, maximum: 1000)
Headers
The customer identifier
Response
OK
Example response
{
"items": [
{
"id": 12345,
"status": "unsigned",
"totalHours": 7.5
}
],
"pageNumber": 2,
"pageSize": 100,
"pageItemCount": 55
}