Get Tag by ID

To get a tag, you need to know either the tag identifier or its name. The sample code uses a tagId of 888. Use the actual ID values of your tag.

 

Minimum Parameters for Getting a Tag by ID

The following parameters are the base parameters required to get a tag by its ID.

Get Tag by IDMinimum Configuration Sample

curl 'https://mock.blazemeter.com/api/v1/tags/888' \
    -X GET \
    -H 'accept: */*'

Get Tag by ID Request Attributes

Attributes

  • tagId integer

    required

    The tag identifier

Response200 OK

{
  "apiVersion": 1,
  "error": null,
  "result": {
    "id": 888,
    "name": "pay",
    "description": "payment service category",
    "created": 1563980513,
    "updated": 1563980513,
    "createdBy": "somebody@example.com",
    "updatedBy": "somebody@example.com"
  },
  "requestId": "ee47a7b219e3a9e5"
}