Hello all,
we’re currently looking into creating tasks with a private app for hubspot users with the Engagement API (Accounts Dashboard | HubSpot).
Is there a way to control the reminder setting when creating a task? I’ve seen that it was possible in previous iterations of the API, but not anymore.
Otherwise users don’t get any notifications about newly created (and due) tasks, which would render this approach nearly useless for us.
Cheers and I hope someone knows a way.
Hey, @NSpiess
Thanks for reaching out. Have you tried the solution provided here by one of our community champions, @himanshurauthan? Enable Reminder Task via API
Best,
Jaycee
Hello @NSpiess
You need to Add a key hs_task_reminders inside the request body. It takes a 13-bit timestamp as its value.
{
"properties": {
"hs_timestamp": "2023-10-13T04:30:00.000Z",
"hs_task_reminders" : "1683945000000"
}
}
where, hs_timestamp is due date of the task. And hs_task_reminders is reminder time of the task
These 2 keys can control the reminder setting in tasks.