I'm working on IM (Image Managment) system performance ATM and I'm facing dificulties to send image metadata (base64) to end point. Here we do not upload direct file to the server, We will send image metadata (base64) to the server side. If anyone can help me to resolve this much appriciate.
We have API sequence as follow
- Image draft API (create)
- Image update API (POST with metadata (base64)
basicall, in browser it will converted to the base64 and keep in browser memory, 2nd API will pick the image metadata from thier and send to the server in HTTP request. but in the browser I cannot see the post body data.
I wanted to send uploaded image to the server as base64 data and save it there.

You can use JSR223 PreProcessor in order to convert the file containing the image into Base64
Example code:
then you can refer the Base64-encoded image file contents as
${image}where required.More information on Groovy scripting in JMeter: Apache Groovy: What Is Groovy Used For?