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.

transform #

Searches for assets corresponding to the specified expression and options


Query Syntax #

HTTP #

Copied to clipboard!
URL: http://kuzzle:7512/_plugin/cloudinary/assets/transform
Method: POST
Body:
Copied to clipboard!
{
  "public_id" : "sample", 
  "transformation" : {
    "width" : 400,
    "radius" : "100:0:100:100"
  }
}

Other protocols #

Copied to clipboard!
{
  "controller": "cloudinary/assets",
  "action": "transform",

	"body": {
    "public_id" : "sample", 
    "transformation" : {
      "width" : 400,
      "radius" : "100:0:100:100"
    }
  }
}

Arguments #


Response #

Copied to clipboard!
{
  "status": 200,
  "error": null,
  "controller": "cloudinary/assets",
  "action": "transform",
  "requestId": "<unique request identifier>",
  "result": "<transformed_asset_url>"
}

Possible Errors #