Get All Tags

You can use tags when you search and filter Transactions or Services.

Minimum Parameters for getting all tags

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

Get All TagsMinimum Configuration Sample


curl 'https://mock.blazemeter.com/api/v1/tags?limit=10&skip=0&sort=name' \
   -X GET \
   -H 'accept: */*'

Get All Tags Request Attributes

Attributes

  • limit integer

    The number of results per page

  • skip integer

    The number of initial results to skip

  • sort string

    The column name to sort by: id, name, or description

Response200 OK

{
  "apiVersion": 1,
  "error": null,
  "result": [
    {
      "id": 163,
      "name": "prod",
      "description": null,
      "created": 1563893805,
      "updated": 1563893805,
      "createdBy": "somebody@example.com",
      "updatedBy": "somebody@example.com"
    },
    {
      "id": 162,
      "name": "test",
      "description": null,
      "created": 1563893805,
      "updated": 1563893805,
      "createdBy": "somebody@example.com",
      "updatedBy": "somebody@example.com"
    },
    {
      "id": 203,
      "name": "dev",
      "description": "tag description",
      "created": 1563980513,
      "updated": 1563980513,
      "createdBy": "somebody@example.com",
      "updatedBy": "somebody@example.com"
    }
  ],
  "requestId": null,
  "limit": 10,
  "skip": 0,
  "total": 3
}