Timesheets
List timesheets
Documentation
Organization Structure API
- Axis-sections
- Departments
- Legal-Units
- Establishments
Core HR API
- Employees Directory
- Guides
Cleemy Expenses API
- Expense-temp-items
- Expense-claims
- Expense-claim-items
- Exports
- Guides
Cleemy Invoices API
- Guides
Timmi Absences API
- Leaves
- Leave-requests
- Sick-leaves
- Imports
- Guides
Timmi Office API
- User-locations
- Work-locations
Timmi Project API
- Clients
- Projects
- Project services
- Organizations
- Financials
Timmi Settings API
- UserDates
- Workcycle-exceptions
- Working-time-arrangement
Timmi Timesheet API
Pagga Mealvouchers API
- Statutory
- Computation
Pagga Remuneration API
- Fixed-natures
- Fixed-items
- Variable-natures
- Variable-items
Poplee Training API
- Training-demands
- Realized-trainings
Timesheets
List timesheets
List all timesheets satisfying query filters.
Please refer to the Timesheet API reference for additional information on the Timesheet resource.
GET
/
api
/
v3
/
timmitimesheets
curl --request GET \
--url https://{host}/api/v3/timmitimesheets \
--header 'Authorization: <authorization>'
{
"data": {
"items": [
{
"id": 10959,
"name": "45 - avril 2024 - Approved",
"ownerId": 45,
"owner": {
"id": 45,
"name": "Noël Flantier",
"url": "https://demotimmi7.ilucca-test.net/api/v3/timesheetusers/45"
},
"startsOn": "2024-04-29T00:00:00",
"endsOn": "2024-05-06T00:00:00",
"statuteId": 4,
"expectedNextActorId": null,
"expectedNextActor": null,
"status": 2,
"timeEntries": [
{
"id": 551915,
"name": "",
"url": "https://demotimmi7.ilucca-test.net/api/v3/timeentries/551915"
},
{
"id": 551916,
"name": "",
"url": "https://demotimmi7.ilucca-test.net/api/v3/timeentries/551916"
},
{
"id": 551917,
"name": "",
"url": "https://demotimmi7.ilucca-test.net/api/v3/timeentries/551917"
},
{
"id": 551918,
"name": "",
"url": "https://demotimmi7.ilucca-test.net/api/v3/timeentries/551918"
},
{
"id": 551919,
"name": "",
"url": "https://demotimmi7.ilucca-test.net/api/v3/timeentries/551919"
},
{
"id": 551920,
"name": "",
"url": "https://demotimmi7.ilucca-test.net/api/v3/timeentries/551920"
},
{
"id": 551921,
"name": "",
"url": "https://demotimmi7.ilucca-test.net/api/v3/timeentries/551921"
},
{
"id": 551922,
"name": "",
"url": "https://demotimmi7.ilucca-test.net/api/v3/timeentries/551922"
}
]
}
]
}
}
Headers
API key. Value must be formatted like so: lucca application={api_key}
.
Query Parameters
User's identifier.
Filter on the start date of the timesheet.
Example:
"between,2022-01-01,2022-02-01"
Filter on the timesheet workflow status. 0 for temporary, 1 for pending, 2 for approved, 3 for rejected.
Filter on the end date of the timesheet.
Example:
"until,2022-01-01"
Response
200
application/json
OK
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://{host}/api/v3/timmitimesheets \
--header 'Authorization: <authorization>'
{
"data": {
"items": [
{
"id": 10959,
"name": "45 - avril 2024 - Approved",
"ownerId": 45,
"owner": {
"id": 45,
"name": "Noël Flantier",
"url": "https://demotimmi7.ilucca-test.net/api/v3/timesheetusers/45"
},
"startsOn": "2024-04-29T00:00:00",
"endsOn": "2024-05-06T00:00:00",
"statuteId": 4,
"expectedNextActorId": null,
"expectedNextActor": null,
"status": 2,
"timeEntries": [
{
"id": 551915,
"name": "",
"url": "https://demotimmi7.ilucca-test.net/api/v3/timeentries/551915"
},
{
"id": 551916,
"name": "",
"url": "https://demotimmi7.ilucca-test.net/api/v3/timeentries/551916"
},
{
"id": 551917,
"name": "",
"url": "https://demotimmi7.ilucca-test.net/api/v3/timeentries/551917"
},
{
"id": 551918,
"name": "",
"url": "https://demotimmi7.ilucca-test.net/api/v3/timeentries/551918"
},
{
"id": 551919,
"name": "",
"url": "https://demotimmi7.ilucca-test.net/api/v3/timeentries/551919"
},
{
"id": 551920,
"name": "",
"url": "https://demotimmi7.ilucca-test.net/api/v3/timeentries/551920"
},
{
"id": 551921,
"name": "",
"url": "https://demotimmi7.ilucca-test.net/api/v3/timeentries/551921"
},
{
"id": 551922,
"name": "",
"url": "https://demotimmi7.ilucca-test.net/api/v3/timeentries/551922"
}
]
}
]
}
}