curl --request POST \
--url https://{host}/timmi/services/workflow/remind \
--header 'Authorization: <authorization>' \
--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>"
}
]
}Remind users of a due timesheet. Sends him/her an email.
curl --request POST \
--url https://{host}/timmi/services/workflow/remind \
--header 'Authorization: <authorization>' \
--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>"
}
]
}API key. Value must be formatted like so: lucca application={api_key}.
Timesheets are identified by startsAt, endsAt & ownerId.
Show child attributes
Was this page helpful?