/
Issue Rating Configuration
Issue Rating Configuration
Check out chapters Get Field Id, Get field configuration context Id, and Create/Update field configuration (options) in order to find out how to use endpoint properly. All endpoints used in the article Singe/Multiple pickers with create are also used for this custom field, only provided data in the body of Create/Update API is different.
In order to make this request successful, body should follow this scheme and it’s property names:
`{
configurations: [
{
configuration: {
rating: [
{
label: "...",
value: "...",
id: "<Unique Id>",
},
{
label: "...",
value: "...",
id: "<Unique Id>",
},
{
label: "...",
value: "...",
id: "<Unique Id>",
},
{
label: "...",
value: "...",
id: "<Unique Id>",
},
{
label: "...",
value: "...",
id: "<Unique Id>",
},
]
},
contextId: "<Unique Id>"
}
]
}`
Property value
is used to display tooltip description on field hover and label
is used to display dropdown option name in field editor.
Property id
must be unique in order for JQL to use it.
To make this request properly 5 objects must be passed in rating
array.
, multiple selections available,
Related content
Issue Rating
Issue Rating
More like this
Default values and bulk changes
Default values and bulk changes
More like this
Singe/Multiple pickers with create
Singe/Multiple pickers with create
More like this
Emoji
More like this
Field Configuration
Field Configuration
More like this
Single and Multiple Pickers With Create Option
Single and Multiple Pickers With Create Option
More like this