Uploaded image for project: 'Jira Platform Cloud'
  1. Jira Platform Cloud
  2. JRACLOUD-40440

Screen ID is not available through any JIRA REST request

    • Our product teams collect and evaluate feedback from a number of different sources. To learn more about how we use customer feedback in the planning process, check out our new feature policy.

      NOTE: This suggestion is for JIRA Cloud. Using JIRA Server? See the corresponding suggestion.

      Dynamically, directly using REST API, I am not able to find all the fields which are there on the particular screen. For that I have to go to JIRA UI and using mouse over hover on the screen I have to find screen id and then I can use following REST request to find fields on that screen.

      http://example.com:8080/jira/rest/api/2/screens/

      {screenId}

      /availableFields

      But it is not feasible to get screen id in this way.

        1. Jira Add-on - Copy.rar
          12 kB
        2. jira_pic.PNG
          jira_pic.PNG
          26 kB

            [JRACLOUD-40440] Screen ID is not available through any JIRA REST request

            Eve (Inactive) added a comment - - edited

            Hi everyone,

            I'd like to inform you that we've just enabled an endpoint to get all screens:

            GET /rest/api/2/screens

            It requires admin permission of calling user, and returns a list of all screens with their names and IDs.

            This API is only available for Jira Cloud.

            Sincerely,
            Eve Stankiewicz
            Product Manager for Jira Cloud Ecosytem

            Eve (Inactive) added a comment - - edited Hi everyone, I'd like to inform you that we've just enabled an endpoint to get all screens: GET /rest/api/2/screens It requires admin permission of calling user, and returns a list of all screens with their names and IDs. This API is only available for Jira Cloud. Sincerely, Eve Stankiewicz Product Manager for Jira Cloud Ecosytem

            @Sachin: Many Thanks!

            Jens Piegsa added a comment - @Sachin: Many Thanks!

            Jira Add-on - Copy.rar
            PFA the zipped source code

            Sachin Gupta added a comment - Jira Add-on - Copy.rar PFA the zipped source code

            @Sachin: Would you consider to provide the source for the full plugin? Regards, Jens

            Jens Piegsa added a comment - @Sachin: Would you consider to provide the source for the full plugin? Regards, Jens

            Hi Sachin,

            Thanks for above code. I am sorry but could you please tell what is atlassian-plugin file? and where Can I find it?

            Thanks and regards,
            Pankaj

            Pankaj Pimple added a comment - Hi Sachin, Thanks for above code. I am sorry but could you please tell what is atlassian-plugin file? and where Can I find it? Thanks and regards, Pankaj

            Sachin Gupta added a comment - - edited

            I am also eagerly waiting for this REST API. Meanwhile I have written a custom code which works:

            package com.celigo.plugins.netsuiteJiraConnector.rest;

            import com.atlassian.plugins.rest.common.security.AnonymousAllowed;

            import javax.ws.rs.*;
            import javax.ws.rs.core.MediaType;
            import javax.ws.rs.core.Response;

            import java.util.Collection;
            import java.util.ArrayList;
            import com.google.gson.Gson;
            import java.lang.*;

            import com.atlassian.jira.component.ComponentAccessor;
            import com.atlassian.jira.issue.fields.screen.FieldScreenManager;
            import com.atlassian.jira.issue.fields.screen.FieldScreen;

            @Path("/list")
            public class jiraConnectorforNetSuite {

            @GET
            @Produces(

            {MediaType.APPLICATION_JSON}

            )

            public Response getMessage()

            { ArrayList<String> response = this.getFieldScreens(); return Response.ok(new Gson().toJson(response)).build(); }

            public static ArrayList<String> getFieldScreens() {
            FieldScreenManager customFieldScreenManager = getCustomFieldScreenManager();
            Collection<FieldScreen> screensList = customFieldScreenManager.getFieldScreens();
            ArrayList<String> ScreenIds = new ArrayList<String>();
            for (FieldScreen fieldScreen : screensList)

            { ScreenIds.add(java.lang.Long.toString(fieldScreen.getId())); }

            return ScreenIds;
            }

            private static FieldScreenManager getCustomFieldScreenManager()

            { FieldScreenManager fieldScreenManager = (new ComponentAccessor()).getFieldScreenManager(); return fieldScreenManager; }

            }

            And the configuration in atlassian-plugin file is like this:
            <rest name="Screens" i18n-name-key="rest-resource.name" key="rest-resource" path="/screens" version="1.0">
            <description key="rest-resource.description">Rest Resource Plugin to get Screens List</description>
            </rest>

            Sachin Gupta added a comment - - edited I am also eagerly waiting for this REST API. Meanwhile I have written a custom code which works: package com.celigo.plugins.netsuiteJiraConnector.rest; import com.atlassian.plugins.rest.common.security.AnonymousAllowed; import javax.ws.rs.*; import javax.ws.rs.core.MediaType; import javax.ws.rs.core.Response; import java.util.Collection; import java.util.ArrayList; import com.google.gson.Gson; import java.lang.*; import com.atlassian.jira.component.ComponentAccessor; import com.atlassian.jira.issue.fields.screen.FieldScreenManager; import com.atlassian.jira.issue.fields.screen.FieldScreen; @Path("/list") public class jiraConnectorforNetSuite { @GET @Produces( {MediaType.APPLICATION_JSON} ) public Response getMessage() { ArrayList<String> response = this.getFieldScreens(); return Response.ok(new Gson().toJson(response)).build(); } public static ArrayList<String> getFieldScreens() { FieldScreenManager customFieldScreenManager = getCustomFieldScreenManager(); Collection<FieldScreen> screensList = customFieldScreenManager.getFieldScreens(); ArrayList<String> ScreenIds = new ArrayList<String>(); for (FieldScreen fieldScreen : screensList) { ScreenIds.add(java.lang.Long.toString(fieldScreen.getId())); } return ScreenIds; } private static FieldScreenManager getCustomFieldScreenManager() { FieldScreenManager fieldScreenManager = (new ComponentAccessor()).getFieldScreenManager(); return fieldScreenManager; } } And the configuration in atlassian-plugin file is like this: <rest name="Screens" i18n-name-key="rest-resource.name" key="rest-resource" path="/screens" version="1.0"> <description key="rest-resource.description">Rest Resource Plugin to get Screens List</description> </rest>

            L H added a comment -

            Why has this still not been resolved after a year and a half? The entire screen and field gathering part of the REST API is unusable without this.

            Please fix this ASAP as it blocks a lot of crucial functionality in the REST API.

            L H added a comment - Why has this still not been resolved after a year and a half? The entire screen and field gathering part of the REST API is unusable without this. Please fix this ASAP as it blocks a lot of crucial functionality in the REST API.

            It's impossible to assign a screen schema when creating a project.
            It's impossible to fetch a list of screens, or determine which screen schema is assigned to a project.

            This missing piece of functionality prevents me from writing the migration script I need to make the jump to Jira.

            Aaron Bauman added a comment - It's impossible to assign a screen schema when creating a project. It's impossible to fetch a list of screens, or determine which screen schema is assigned to a project. This missing piece of functionality prevents me from writing the migration script I need to make the jump to Jira.

            Trying to do integrations for JIRA and using custom fields to add metadata onto issues in JIRA is currently also impossible to do entirely via the REST API because after adding a custom field via the API, there doesn't seem to be any way to then add it to a screen that is associated with a JIRA issue as well. But how on earth is one expected to get the screen id?

            And a better question is: Why isn't this information on the actual issue itself when retrieving it from the REST API?

            Yi Liang Siew added a comment - Trying to do integrations for JIRA and using custom fields to add metadata onto issues in JIRA is currently also impossible to do entirely via the REST API because after adding a custom field via the API, there doesn't seem to be any way to then add it to a screen that is associated with a JIRA issue as well. But how on earth is one expected to get the screen id? And a better question is: Why isn't this information on the actual issue itself when retrieving it from the REST API?

            Yves YANG added a comment - - edited

            I agree. We have met this same problem with our AddOn for JIRA Cloud. Without this API, we aren't enable to check or correct if the screen/field is set correctly.

            This bug is blocking !

            Yves YANG added a comment - - edited I agree. We have met this same problem with our AddOn for JIRA Cloud. Without this API, we aren't enable to check or correct if the screen/field is set correctly. This bug is blocking !

              istankiewicz Eve (Inactive)
              ae8830d605c0 Hiren Savalia
              Votes:
              42 Vote for this issue
              Watchers:
              37 Start watching this issue

                Created:
                Updated:
                Resolved: