Assign Tags to service template 1
Request:
POST /api/service_templates/1/tags
{
"action" : "assign",
"resources" : [
{ "category" : "location", "name" : "ny" },
{ "category" : "department", "name" : "finance" }
]
}
Response:
{
"results": [
{
"success": true,
"message": "Assigning Tag: category:'location' name:'ny'",
"href": "http://localhost:3000/api/service_templates/1",
"tag_category": "location",
"tag_name": "ny"
},
{
"success": true,
"message": "Assigning Tag: category:'department' name:'finance'",
"href": "http://localhost:3000/api/service_templates/1",
"tag_category": "department",
"tag_name": "finance"
}
]
}