Delete multiple service templates
Request:
POST /api/service_templates
{
"action" : "delete",
"resources" : [
{ "href" : "http://localhost:3000/api/service_templates/4" },
{ "href" : "http://localhost:3000/api/service_templates/5" }
]
}
Response:
{
"results": [
{
"success": true,
"message": "service_templates id: 4 deleting",
"href": "http://localhost:3000/api/service_templates/4"
},
{
"success": true,
"message": "service_templates id: 5 deleting",
"href": "http://localhost:3000/api/service_templates/5"
}
]
}