Create a Tag
You can use tags when you search and filter Transactions or Services. The creation response contains a tag identifier that you should note down. You will need the tagID when you want to configure, deploy, or delete this tag later.
New tags are also created if they are used in requests and do not exist yet.
The following parameters are the base parameters required to create a tag.
Create a TagMinimum Configuration Sample
curl 'https://mock.blazemeter.com/api/v1/tags' \
-X POST \
-H 'accept: */*' \
-H 'Content-Type: application/json' \
-d '{ "description": "payment service category", "name": "pay"}'
Create a Tag Request Attributes
Attributes
-
descriptionstringThe description of the tag category
-
namestringThe name of the tag that can be used in searches and filters
Response201 Created
{
"apiVersion": 1,
"error": null,
"result": {
"id": 888,
"name": "pay",
"description": "payment service category",
"created": 1564147307,
"updated": 1564147307,
"createdBy": "somebody@example.com",
"updatedBy": "somebody@example.com"
},
"requestId": "acb25df0e22ec097"
}