curl --request GET \
--url https://{host}/api/v3/timmitimesheets/remindable \
--header 'Authorization: <authorization>'{
"data": {
"items": [
{
"id": 123,
"name": "45 - January 2016 - Approved",
"ownerId": 2,
"owner": {
"id": 2,
"firstName": "<string>",
"lastName": "<string>",
"mail": "jsmith@example.com",
"legalEntityId": 123,
"manager": {
"id": 2,
"firstName": "<string>",
"lastName": "<string>",
"mail": "jsmith@example.com",
"legalEntityId": 123
}
},
"startsOn": "2023-12-25",
"endsOn": "2023-12-25",
"expectedNextActorId": 123,
"expectedNextActor": {
"id": 2,
"firstName": "<string>",
"lastName": "<string>",
"mail": "jsmith@example.com",
"legalEntityId": 123
},
"status": 0,
"statuteId": 123
}
]
}
}List timesheets that are not yet submitted (status: 0).
You must filter on either ownerIds, managerIds or legalEntityIds.
As long as a timesheet is not submitted, its unique identifier is equal to zero.
Please refer to the Timesheet API reference for additional information on the Timesheet resource.
curl --request GET \
--url https://{host}/api/v3/timmitimesheets/remindable \
--header 'Authorization: <authorization>'{
"data": {
"items": [
{
"id": 123,
"name": "45 - January 2016 - Approved",
"ownerId": 2,
"owner": {
"id": 2,
"firstName": "<string>",
"lastName": "<string>",
"mail": "jsmith@example.com",
"legalEntityId": 123,
"manager": {
"id": 2,
"firstName": "<string>",
"lastName": "<string>",
"mail": "jsmith@example.com",
"legalEntityId": 123
}
},
"startsOn": "2023-12-25",
"endsOn": "2023-12-25",
"expectedNextActorId": 123,
"expectedNextActor": {
"id": 2,
"firstName": "<string>",
"lastName": "<string>",
"mail": "jsmith@example.com",
"legalEntityId": 123
},
"status": 0,
"statuteId": 123
}
]
}
}API key. Value must be formatted like so: lucca application={api_key}.
List unique identifier of owners.
List unique identifier of owners' legal establishments.
List unique identifier of owners' managers.
Prevent older timesheets to be returned.
Prevent earlier timesheets to be returned (date excluded). Defaults to today when not sent.
OK
Show child attributes
Was this page helpful?