Issue Rating Configuration

Check out chapters Get Field IdGet 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 https://caelor.atlassian.net/wiki/spaces/MSCW/pages/597196821 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.