Hey there,
I am currently trying to create a Jira Ticket via ConfiForms. Based on an IFTTT a JSON Objects gets passed to the REST API. Summary, Titel etc. work perfectly fine (which are not fields by the Big Gantt Add on).
But somehow if I want to set a Start and Enddate it wont work.
I am passing the Date exactly how it is formatted correctly (I compared it to a Ticket where a Start and Enddate is already set)
There is no error, it just does not change the Dates.
Anyone got a clue what is wrong ?
JSON looks like that:
{ "fields": { "project": { "key": "XYZ" }, "summary": "TEST ", "description":"describtion", "issuetype": { "name": "Story" }, "customfield123": "22-07-12"}}
Greetz max
Anyone got a clue what is wrong ?
Yep, the date format you've used is incorrect.
Google 'jira rest api date format' or just refer to the REST API documentation, which says:
"customfield_10002": "2011-10-03"
The format is: YYYY-MM-DD
"customfield_10003": "2011-10-19T10:29:29.908+1100"
This format is ISO 8601: YYYY-MM-DDThh:mm:ss.sTZD
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.