Timesheets
Remind Timesheets
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
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
Remind Timesheets
Remind users of a due timesheet. Sends him/her an email.
POST
/
timmi
/
services
/
workflow
/
remind
curl --request POST \
--url https://{account}-{sandboxName}.sandbox.{server}.luccasoftware.com/timmi/services/workflow/remind \
--header 'Content-Type: application/json' \
--data '{
"timesheets": [
{
"startsAt": "2024-06-01",
"endsAt": "2024-07-01",
"ownerId": 2
}
]
}'
{
"Status": 123,
"Message": "<string>",
"Items": [
{
"Id": 123,
"ExceptionMessage": "<string>",
"Status": 0,
"Title": "<string>",
"Url": "<string>"
}
]
}
Body
application/json
Timesheets are identified by startsAt, endsAt & ownerId.
Response
200
application/json
Workflow response
HTTP status code.
Human readable error message (when error).
Was this page helpful?
curl --request POST \
--url https://{account}-{sandboxName}.sandbox.{server}.luccasoftware.com/timmi/services/workflow/remind \
--header 'Content-Type: application/json' \
--data '{
"timesheets": [
{
"startsAt": "2024-06-01",
"endsAt": "2024-07-01",
"ownerId": 2
}
]
}'
{
"Status": 123,
"Message": "<string>",
"Items": [
{
"Id": 123,
"ExceptionMessage": "<string>",
"Status": 0,
"Title": "<string>",
"Url": "<string>"
}
]
}