Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,555,948
Community Members
 
Community Events
184
Community Groups

PATCH customfield via REST

Hello all,

I am trying to run a REST API PATCH to update a Jira Align customfield with a new dropdown value, and I am having problems finding the correct format.

The GET returns the following

"customFields": [

    {

      "customfield_90704": [

        {

          "id": 198,

          "value": " High"

        }

      ]

    }

]

However, finding the correct JSON Patch is hard. I've tried lots including the following but nothing seems to work. I think the path is close but then it says the values are not valid. Is this the correct format for  nested values deriving their values from a dropdown?

[{

"op": "replace",

"path": "/customfields/custom-field_90704/",

"value": {"id": "197", "value": "Very High"}

}]

[{

"op": "replace",

"path": "/customfields/0/customfield_90704/",

"value": {"id": 197,"value":"Very High"}

}]

[{

"op": "replace",

"path": "/customfields/:customfield_90704/",

"value": {"id": 197,"value": "Very High"}

}]

Any help would be appreciated.

1 answer

1 accepted

2 votes
Answer accepted
Enio Marques Junior
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
Sep 12, 2022

Hi Mark! Please try using the payload below:

[
{
"op": "replace",
"path": "/customFields/0/customfield_90704/0/value",
"value": "Very High"
},
{
"op": "replace",
"path": "/customFields/0/customfield_90704/0/id",
"value": 197
}
]

 

Regards,

Enio

Thank you Enio, your solution worked perfectly.

I did get another solution from Atlassain but it came up with an error "Not all custom field are active"

[
  {
        "op": "replace",
        "path": "customfields/0",
        "value":
        {
            "customfield_90706":
            [
                {
                   "id": 183,
                    "value": "Very High"
                }
            ]
        }
    }
]

 

I thought it might be that the field was not active in that story but that was nto the problem ... but who cares, your solution worked :-) 

Thanks again

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events