I noticed that I can see team in some issue, but I can't get team name or Information with rest api /rest/issue/{issueKey}, there is no such field in return-json. I wonder how can I get team of each issue(if they have).Use which api.Thanks in advance
HI @siren w
Team is a customfield. You do not have the customfield_XXXX value in the JSON returned by the REST call ? Where XXXX is the field ID for Team field.
What is your App version ?
On my side my Team field has the id 10100, you can find the id by going to Issue>Custom Fields then search and edit or view, the Team field, you have the id in the URL
http://localhost:8080/secure/admin/ConfigureCustomField!default.jspa?customFieldId=10100
By calling the API to an issue with a Team value I get the Team in the Json response.
http://localhost:8080/rest/api/latest/issue/QSD-3
,"customfield_10100":{"id":1,"name":"qsd Team"},
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I check my custom_filed10100 but it returns weird value, it seems like that we're different. So you mean this can be set by admin count right? if admin set the customfield_xxx is team field then I can get team message from custom field_xxx. Thanks bro, helps a lot.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It's not set by the admin but at the installation of the app, the field has been created with the next available field Id so it's different from 1 instance to another.
If you try to create an advance search in Jira you can get the field Id, searching for Team the auto-completion sould show you Team cf[XXXX], XXXX is the id you are looking for.
Regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Florian Bonniec@Florian Bonniec I see this on the right-top of issue board, here you can see team, but I can't get this field from rest api and I see no customfield_XXX contains information about team
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.