Official Plugins (Kuzzle v1.x)
Cloudinary v1.x
1

You are currently looking at the documentation of a previous version of Kuzzle. We strongly recommend that you use the latest version. You can also use the version selector in the top menu.

removeAllTags #

Removes all the tags from the specified asset(s)


Query Syntax #

HTTP #

Copied to clipboard!
URL: http://kuzzle:7512/_plugin/cloudinary/tags/remove_all?public_id=<name>
Method: DELETE

You can put several assets as parameter. Here is an example :

Copied to clipboard!
URL: http://kuzzle:7512/_plugin/cloudinary/tags/remove_all?public_id=sample&public_id=sample2
Method: DELETE

Other protocols #

If you want to edit only one asset you can use this query :

Copied to clipboard!
{
  "controller": "cloudinary/tags",
  "action": "removeAllTags",

	"public_id" : "sample" 
}

If you want to edit several assets you can use this query :

Copied to clipboard!
{
  "controller": "cloudinary/tags",
  "action": "removeAllTags",

	"public_id" : [ "sample", "sample2" ] 
}

Arguments #

  • public_id: (String or Array of string) public_id of the asset(s)

Response #

Copied to clipboard!
{
  "status": 200,
  "error": null,
  "controller": "cloudinary/tags",
  "action": "removeAllTags",
  "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 #