Base64 configuration in List element

when I configure any list related element like carousel/List, I configure it’s JSON and for image I have to provide URL. If I want to change image source from URL to Base64, how can I implement it

@Abhinav_mehta Please respond to this query.

Hi @AnushkaGupta @vipashchit.chaturved the configuration for using base64 is the same as using url in json.
I was able to archive this output using base64.


json for the same:
[{"url":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVAAAAFQCAYAAADp6CbZAAAACXBIWXMAACE4AAAhOAFFlj......."},{"url":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVAAAAFQCAYAAADp6CbZAAAACXBIWXMAACE4AAAhOAFFlj......."}]

But i would suggest you to use url as using base64 in array of object will drastically increase the length of the json.

Thank you @Abhinav_mehta for solving this