removeTag #
Removes the specified tag from the specified asset(s)
Query Syntax #
HTTP #
URL: http://kuzzle:7512/_plugin/cloudinary/tags/<tag>?public_id=<name>
Method: DELETE
You can put several assets as parameter. Here is an example :
URL: http://kuzzle:7512/_plugin/cloudinary/tags/a_Tag?public_id=sample&public_id=sample2
Method: DELETE
Other protocols #
If you want to edit only one asset you can use this query :
{
"controller": "cloudinary/tags",
"action": "removeTag",
"public_id" : "sample",
"tag" : "a_tag"
}
If you want to edit several assets you can use this query :
{
"controller": "cloudinary/tags",
"action": "removeTag",
"public_id" : [ "sample", "sample2" ],
"tag": "a_tag"
}
Arguments #
public_id
: (String or Array of string) public_id of the asset(s)tag
: Tag to remove from the specified asset(s)
Response #
{
"status": 200,
"error": null,
"controller": "cloudinary/tags",
"action": "removeTag",
"requestId": "<unique request identifier>",
"result": {
"public_ids": [
"sample",
"sample2"
]
}
}
If one or several assets haven't been updated, a 206 Partial Error
will be throw with a detail of the error for each asset
Possible Errors #
Edit this page on Github(opens new window)