How can i change createmeta url to search values of custom select list or another list?
Dear @Mikhail Kislovskiy,
somehow you do an API call. I would really like to help you, but please explain a little bit more. Which call did you perform to receive the upper JSON? Which result do you expect?
So long
Thomas
Thomas, look it
But response give mack 404 error Not Found
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
And i see in gchrome on url rest/api/2/customFieldOption/12303/
{"errorMessages":["A custom field option with id '12303' does not exist"],"errors":{}}
But look
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Need to get all allowedValues of some custom list field.
How i can do this without atlassian.jira.dll?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Dear @Mikhail Kislovskiy,
I ust pereformed
https://server.de/rest/api/2/customFieldOption/10300/
and got
{"self":"https://server.de/rest/api/2/customFieldOption/10300","value":"xyz"}
With which call did you get the data of the upper JSON tree? I want to reproduce what you did.
So long
Thomas
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Need get all allowedValues of one list cutofield_10023. How can i get it without editmeta or createmeta
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ah! Now I got it:
You want to list all option of one custom field, right?
This is not possible with the current implementation of the REST API. There is no call for this. For the customFieldOption call you have to know the id, but it is at all returned when querying an issue.
Probably you can do this with this work-a-round.
So long
Thomas
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Our answers where overlapping ...
Then you can only do this:
Go through all issue and "collect" the options. Ok - if one option is never used - you will miss it.
Alternatively you can GET
https://server.de/secure/admin/ConfigureCustomField!default.jspa?customFieldId=12303
and parse the HTML response.
So long
Thomas
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.