Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

unable to set date_due or other date on update_task #22

Open
PMJarosch opened this issue Mar 5, 2021 · 1 comment
Open

unable to set date_due or other date on update_task #22

PMJarosch opened this issue Mar 5, 2021 · 1 comment

Comments

@PMJarosch
Copy link

When I try to update a due date via the update_task it failes every time. When I try to change the Color everything works.

example:
kb.update_task(id=task_id,date_due="2021-01-26T00:00:00")

Kanboard Version is latest release

I'm using Debian Buster with Python 3.7

@AloisMahdal
Copy link
Contributor

Is this still relevant?

By the way, with kanboard/python-api-client, I had more luck using the kanboard.Client.execute() method directly like I describe in another issue:

By the way, I actually use the API like this:

kc = kanboard.Client(...)
kc.execute(
    method='createTask',
    project_id=1,
    title="hello",
    description="world",
)

and learn method names and arguments from the API documentation, eg. this page for createTask: https://docs.kanboard.org/v1/api/task_procedures/#createtask

I can't confirm right now if update_task is affected by either of these methods.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

2 participants