Field definition from /rest/api/2/issue/{issue}/editmeta
"customfield_10859":{
"required":false,
"schema":{
"type":"string",
"custom":"com.atlassian.jira.plugin.system.customfieldtypes:textfield",
"customId":10859
},
"name":"TS Commit",
"key":"customfield_10859",
"operations":[
"set"
]
}
if i use request data like this, jira returns bad request error.
{
"fields": {
"customfield_10859": "test"
}
}
with request data
{
"fields": {
"customfield_10859": {"value":"test"}
}
}
field updates with value
how to put to field string value? what json should i send to api ?
Hey Alexandr,
What does your request look like? Your first example should work with the v2 API. Although updating a customfield using their v3 API does not seem to work.
Also what is the error message returned?
it work with API v2.
Thanks !
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.