You are not logged in. Click here to log in.

codebeamer Application Lifecycle Management (ALM)

Search In Project

Search inClear

List the Trackers in a Working-Set

Since Codebeamer release 2.0 (HUSKY), a new endpoint is available in Swagger to list the trackers of a working-set:

GET/v3/working-sets/{workingSetId}/trackers

Usage

To list the trackers of a working-set,

  1. Use the GET/v3/working-sets/{workingSetId}/trackers endpoint in Swagger.

  2. Add the working-set ID to the workingSetId field.

  3. The usage of the includeDeletedfield is optional.
    • If set to -- or to false , trackers deleted from the working-set are not listed in the response .
    • If set to true, even the deleted trackers, if any, are displayed in the response.

  4. Click Execute.



In the Server response section, Code 200 is displayed, that is, the API call has been executed successfully.


The Response body contains the following information about the listed trackers:

Property Description
"id" The ID of the tracker.
"name" The name of the tracker.
"type" The tracker type.
"shared" If true , the tracker is shared.
If false, the tracker is not shared.
"createdAt" The date of tracker creation.
"deleted" If false, the tracker is not deleted from the working-set.

If true, the tracker has been deleted from the working-set but is listed in the response as the includeDeleted field is set to true.