We are having JIRA 3.1* and it has Cascade Select custom attirbute.
How can I set value for such field via SOAP API (v 3.1). We are using WSDL at
rpc/soap/jirasoapservice-v2?wsdl
Thanks
Makarand
That trick indeed worked !!! Thanks a lot.
Here is how I used it
RemoteFieldValue[] updatedFields = new RemoteFieldValue[2];
updatedFields[0] = new RemoteFieldValue();
updatedFields[0].id = "customfield_11480";
updatedFields[0].values = new string[] { "18170" };
updatedFields[1] = new RemoteFieldValue();
updatedFields[1].id = "customfield_11480:1";
updatedFields[1].values = new string[] { "18190" };
Not sure where this is referenced anymore, but the trick is to reference the first value of the cascade select normally using the field id and the second value using the field id followed by :1
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.