Is there a Rally Application or an API call that displays a list of Tags by Creation Date
search cancel

Is there a Rally Application or an API call that displays a list of Tags by Creation Date

book

Article ID: 240332

calendar_today

Updated On:

Products

Rally SaaS

Issue/Introduction

Is there a way to get a list of tags based on creation date?

Environment

Release : SAAS

Component :

Resolution

Rally does have an application that will display this information.  It is in our GitHub library and is unsupported by Rally at this time.

To install it:

  • On your dashboard or a custom page, add the "Custom HTML" app from the Rally App Catalog.
  • Paste the code from This URL into the HTML section of the custom HTML application and <Save>.

Here is the link to the application with more detail:

https://github.com/RallyTechServices/tag-management

 

An API query will also provide this information (It will be necessary to change the field in yellow to your Workspace ObjectID):

https://rally1.rallydev.com/slm/webservice/v2.0/tag?workspace=https://rally1.rallydev.com/slm/webservice/v2.0/workspace/<WORKSPACE_OID>.csv&query=&fetch=Name,CreationDate&order=CreationDate&start=1&pagesize=20

 

And this API query will also provide the same information but the output will be a .CSV file.

https://rally1.rallydev.com/slm/webservice/v2.0/tag.csv?workspace=https://rally1.rallydev.com/slm/webservice/v2.0/workspace/<WORKSPACE_OID>&query=&fetch=Name,CreationDate&order=CreationDate&start=1&pagesize=20