Recurring due dates via API?

Hello!
I’m happy to let you know that this is available. To create a task, you’ll need to pass the recurrence key with this data.

{'data': {'days_of_week': [1], 'frequency': 2}, 'type': 'weekly'}

request example

request_body = {
            "name": "Some title",
            "projects": 123123123
            "due_on": YYYY-MM-DD
            "recurrence": {"data": {"days_of_week": [1], "frequency": 2}, "type": "weekly"}
        }

this will create a task that will be repeated every 2 weeks on Monday

6 Likes