Uploading image file via Rest API but not working

upload image and send in body like this json format in rest api
{
"image": "string",
"gallery_image": [
"a.jpg",
"b.jpg"
],
}


side panel look like this
and i have to send gallery_image as file format not as base64
Screenshot from 2023-08-29 18-35-28
this is the payload of that rest api..

can anybody help me regarding this !

Hey @teamreactjs! You likely need to format the value of gallery_image similar to this post

{ data: {{ deviceImage.value[0] }}, ...{{ deviceImage.files[0] }} }

Let me know if that helps!