We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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
The text was updated successfully, but these errors were encountered:
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:
kanboard.Client.execute()
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
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
createTask
I can't confirm right now if update_task is affected by either of these methods.
update_task
Sorry, something went wrong.
No branches or pull requests
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
The text was updated successfully, but these errors were encountered: