action beezup_catalog_save_custom_column { label: "Create or replace a custom column" provider: beezup method: PUT path: "/v2/user/catalogs/{storeId}/customColumns/{columnId}" encoding: json input: { type: "object" properties: { columnId: { type: "string" format: "guid" } displayGroupName: { type: "string" description: "Indicate the display group name where the column must be putted" } encryptedBlocklyExpression: { type: "string" description: "The encrypted XML Blockly representation of the expression" } encryptedExpression: { type: "string" description: "The encrypted excel expression of the column" } storeId: { type: "string" format: "guid" } userColumnName: { type: "string" description: "Column named by the user" } } required: ["columnId", "displayGroupName", "encryptedBlocklyExpression", "encryptedExpression", "storeId", "userColumnName"] additionalProperties: false } output: { type: "object" additionalProperties: true } }