I posted this same question in the open forums But I am repeating here
“errors”:{“description”:“Operation value must be an object”}}
Pretty straight forward and followed the examples for both the creating via a post call where I got the error unless I commented out the description field values and a put call where I tried a number of things found in the boards and elsewhere.
All the documentation shows this as a string value but I am consistantly getting the above error.
Here is the data passed in the put operation that fails
{
“id” : response.id, //response from the post
“key” : response.key, //response from the post
“update” : {
“description”:[{“set”: “this is a description”}]
}
}
Here is the data in the post that works
{
“fields”: {
“project”:
{
“key”:“OJ”
},
“summary”:“UPDATE TEST”,
“issuetype”: {
“name”:“Story”
}
}
}
the url I am using is the self value from the post and someone suggested adding the id and key values as above but I tried it without wiht the same results.
I am using basic auth passing my user information and the token provided in both calls and I am an administrator on the board
I am calling via google javascript
