I use python library request to add a new task on bitrix24 by api. But when i use my code,i can't call to deadline function.
fields = {"fields":{"TITLE":"name",
"DESCRIPTION":"content",
"DEADLINE":'09/12/2019 07:00:00 pm',
"ALLOW_CHANGE_DEADLINE":1,
"RESPONSIBLE_ID":1}
}
url = 'https://xxxxxxxxx.bitrix24.com/rest/1/xxxxxxx/tasks.task.add'
r= requests.post(url,json=fields)
Anyone know how to fix this?