-
Checklist
I have tried every formate for date/time to set the Due_date of a task via API, either via createTask or upDate Task API. Application setting for time are M/D/Y (06/14/2024) For time g;i a (12:00 pm) I have tried every combo and UNIX time stamp and I cannot get it to set Actual behaviourAPI does not change the due_date Expected behaviourDue Date change for both updateTask and createTask Steps to reproduceANy help to clarify how this should work would be appreciated. Screenshots and Video RecordingLogsConfiguration
|
Beta Was this translation helpful? Give feedback.
Answered by
fguillot
Jun 16, 2024
Replies: 1 comment
-
Use this date format: curl \
-s \
-u some-user \
-d '{"jsonrpc": "2.0", "method": "createTask", "id": 1, "params": {"project_id": 1, "title": "Test API", "date_due": "2024-07-01 14:25"}}' \
http://mykanboard/jsonrpc.php The documentation has been updated: |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
fguillot
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Use this date format:
YYYY-MM-DD HH:MM
, for example:2024-07-01 14:25
.curl \ -s \ -u some-user \ -d '{"jsonrpc": "2.0", "method": "createTask", "id": 1, "params": {"project_id": 1, "title": "Test API", "date_due": "2024-07-01 14:25"}}' \ http://mykanboard/jsonrpc.php
The documentation has been updated: