You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I've been trying to create a script in Python that bulk creates issues based on some data given to it. Biggest problem i've ran into during development is how to structure things in the "issueUpdates"->"fields".
What i mean by that is i don't know how to structure the customfields content to be able to successfully run the request.
Example:
The createmetadata request returned a lot of info on the customfields and i want to use this one to set the approvers for this issue, the schema says it's type is an array and the items inside this array are users.
Based on this information i tried to build the structure like this:
But when i run the script it tells me it expects an object, so is there a way for me to know how to structure the above field when sending the payload to the request?