Get All Tags

This call returns a list of all tags defined in workspace. and their tagIDs. You use tags when you search and filter Performance tests.

To return the list of tags available in a workspace, you need to provide a workspaceId. The sample code uses a workspaceId of 123456. Use the actual ID value of your workspace.

Minimum Parameters for getting all tags

The following parameters are the base parameters required to get all tags.

Get All Tags Request Attributes

Attributes

  • limit integer

    The number of results per page

  • skip integer

    The number of initial results to skip

Get All TagsMinimum Configuration Sample


curl '​https://a.blazemeter.com/api/v4/workspaces​/123456​/tags' \
   -X GET \
   -H 'accept: */*'

Response200 OK

{
    "limit": 10,
    "skip": 0,
    "total": 3,
    "hidden": 0,
    "api_version": 4,
    "error": null,
    "result": [
        {
            "label": "workdays",
            "workspace": 123456​,
            "uses": 7,
            "id": 158037,
            "createdDate": 1652115221,
            "createdBy": "someone@example.com"
        },
        {
            "label": "holidays",
            "workspace": 123456​,
            "uses": 3,
            "id": 149381,
            "createdDate": 1651059628,
            "createdBy": "someone@example.com"
        },
        {
            "label": "weekends",
            "workspace": 123456​,
            "uses": 0,
            "id": 110312,
            "createdDate": 1646214177,
            "createdBy": "someone@example.com"
        }
    ],
    "request_id": "62e17949e3f5e"
}