Skip to content

Files

Latest commit

48c45b6 · Jun 15, 2025

History

History
19 lines (14 loc) · 3.81 KB

createrequest.md

File metadata and controls

19 lines (14 loc) · 3.81 KB

CreateRequest

Example Usage

import { CreateRequest } from "@cloudinary/environment-config/models/components";

let value: CreateRequest = {
  transformation: "w_100,h_150,c_fill,g_auto",
  allowedForStrict: true,
};

Fields

Field Type Required Description Example
transformation string ✔️ A valid transformation string. w_100,h_150,c_fill,g_auto
allowedForStrict boolean Whether to allow this named transformation when strict transformations are enabled. Strict transformations prevent transformations from being dynamically applied to media assets.
true