Find the OID project workspace

This may seem like a very simple question, but I could not find it in the rally, so where can I find the workspace and OID project inside the rally?

+4
source share
1 answer

In the interest of other users who may want to know the answer to it, here are a few ways to search for OID. One of them is to create a custom page and paste this code into the HTML section:

<html> Current Workspace ID: __WORKSPACE_OID__ Current Project ID: __PROJECT_OID__ Current User ID: __USER_OID__ Curent User Name: __USER_NAME__ </html> 

OIDs will be displayed on the user page:

Current workspace identifier: 11111 Current project identifier: 22222 Current user identifier: 33333 Icon user name: user@co.com

See this help document for creating custom pages.

Work item URLs contain the OID of the project in which the work item resides. In this example, the project OID is 2222, and the defect OID is 7777:

 https://rally1.rallydev.com/#/2222d/detail/defect/7777 

The OID Workspase can be copied from the WS API request URL. Go to

  https://rally1.rallydev.com/slm/doc/webservice/ 

and run any query. All requests are tied to the current workspace, and the received request URL contains the OID of the workspace (1111 in this example):

 https://rally1.rallydev.com/slm/webservice/v2.0/defect?workspace=https://rally1.rallydev.com/slm/webservice/v2.0/workspace/1111&query=&start=1&pagesize=20 
+6
source

Source: https://habr.com/ru/post/1502422/


All Articles