Date-time format in the REST API giving error response Operation value must be a string

Rohan K August 1, 2017

I am passing the below JOSN with the POST request to create the Jira issue. One of the parameters is the starting date and time.On the JIRA app we have date and time picker for this field.

customfield_10603

In what format this value should be sent out. I tried with 2018-06-17T00:00:00.0+0000. 

JSON sent: 


{
"fields": {
"project":
{
"key": "HOA"
},
"summary": "Test ticket for JIRA_Jenkins integration.",
"customfield_10616":{"value":"Other"},

"description": "Creating of an issue using project keys and issue type names using the REST API",
"customfield_10603": {"value":"2011-07-05T11:05:00.000+0000"},
"issuetype": {"name": "Change Request" },
"customfield_10624": {"value":"Low"},
"customfield_12100": {"value" :"Low"},
"customfield_10625": {"value":"SRE"},
"customfield_10615": {"value":"Routine"}
}
} .

 Error response received:

{
"errorMessages": [],
"errors": {
"customfield_10603": "Operation value must be a string"
}
}

 

1 answer

2 votes
somethingblue
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
August 1, 2017

Hi Rohan,

Try removing the {"value:" } portion so it reads like this:

"customfield_10603":"2011-07-05T11:05:00.000+0000",

I used this to get mine working:

{
"fields": {
    "project": {"key":"BSM"},
    "issuetype": {"id": "10004"},
    "summary": "Testing",
    "description": "Creating test",
    "customfield_10202": "2017-08-16T14:21:00.000-0500"
         }
}

You can see an example of how the datetime field should be set in the REST API documentation under the heading Examples of how to set custom field data for other field types.  Search for DateTimeField.

 

Cheers,

Branden

Rohan K August 1, 2017

Hey Branden,

Thank you. It worked!!

 

Cheers,

Rohan

Like a likes this

Suggest an answer

Log in or Sign up to answer