Get Tag by Name
To get a tag, you need to know either the tag name or its identifier. The sample code uses a name
of pay
. Use the actual name of your tag.
Minimum Parameters for Getting a Tag by Name
The following parameters are the base parameters required to get a tag by its name.
Get Tag by NameMinimum Configuration Sample
curl 'https://mock.blazemeter.com/api/v1/tags/name/pay' \
-X GET \
-H 'accept: */*'
Get Tag by Name Request Attributes
Attributes
-
name
stringrequired
The tag name
Response200 OK
{
"apiVersion": 1,
"error": null,
"result": {
"id": 288,
"name": "pay",
"description": "payment service category",
"created": 1564147307,
"updated": 1564147307,
"createdBy": "somebody@example.com",
"updatedBy": "somebody@example.com"
},
"requestId": "ee47a7b219e3a9e5"
}