An API that merges Harvest and Timetastic data and currently gives a basic output:
You can now use params: start_date
and end_date
to get a batch of results
{
"dates": {
"2022-12-01": {
"users": [
{
"needsReminding": true,
"timetastic_id": 12355,
"email": "[email protected]",
"first_name": "Foo",
"last_name": "Bar",
"harvest_id": 6876876,
"timeEntries": []
},
{
"needsReminding": true,
"timetastic_id": 876876,
"email": "[email protected]",
"first_name": "Bar",
"last_name": "Bas",
"harvest_id": 878768,
"timeEntries": []
}
]
}
}
}
Which can be used to show who looks like the should have logged time but forgot.
Run locally with deno task dev
This is a perfect project to run on https://deno.com/deploy.