Skip to content

Commit 1d1e571

Browse files
nitzanjAmir Tocker
authored andcommitted
Add support for notification_url param in Api.update
1 parent 975aac4 commit 1d1e571

File tree

1 file changed

+1
-0
lines changed
  • cloudinary-core/src/main/java/com/cloudinary

1 file changed

+1
-0
lines changed

cloudinary-core/src/main/java/com/cloudinary/Api.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ public ApiResponse update(String public_id, Map options) throws Exception {
130130
Map params = new HashMap<String, Object>();
131131
Util.processWriteParameters(options, params);
132132
params.put("moderation_status", options.get("moderation_status"));
133+
params.put("notification_url", options.get("notification_url"));
133134
ApiResponse response = callApi(HttpMethod.POST, Arrays.asList("resources", resourceType, type, public_id),
134135
params, options);
135136
return response;

0 commit comments

Comments
 (0)