Skip to main content
GET
/
api
/
v3
/
timmitimesheets
/
remindable
List due timesheets
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": "[email protected]",
          "legalEntityId": 123,
          "manager": {
            "id": 2,
            "firstName": "<string>",
            "lastName": "<string>",
            "mail": "[email protected]",
            "legalEntityId": 123
          }
        },
        "startsOn": "2023-12-25",
        "endsOn": "2023-12-25",
        "expectedNextActorId": 123,
        "expectedNextActor": {
          "id": 2,
          "firstName": "<string>",
          "lastName": "<string>",
          "mail": "[email protected]",
          "legalEntityId": 123
        },
        "status": 0,
        "statuteId": 123
      }
    ]
  }
}

Headers

Authorization
string
required

API key. Value must be formatted like so: lucca application={api_key}.

Query Parameters

ownerIds
integer[]

List unique identifier of owners.

List unique identifier of owners' legal establishments.

managerIds
integer[]

List unique identifier of owners' managers.

start
string<date>

Prevent older timesheets to be returned.

end
string<date>

Prevent earlier timesheets to be returned (date excluded). Defaults to today when not sent.

Response

OK

data
object