I have configured cloudinary in my @service class as "TestUploadService" to upload image for background removal.
Sample Code:
cloudinary.api().update("woman",
ObjectUtils.asMap(
"background_removal", "cloudinary_ai",
"notification_url", "https://dev:8080/cloudinary/status" ));
I need to write new rest endpoint as mentioned in notification_url. How to hit this endpoint in a separate rest service?