Hello,
I have an API that has a PUT endpoint that allows uploading any binary files to a cloud storage location.
This API does not support form-data, only binary. If I use postman, and switch to binary mode in the request body and select a local file, the file is uploaded successfully.
My issue is that I need to upload multiple files so I started looking into running this test using newman with a data file (iterationData). Because the filename and filepath vary for each iteration, I cannot select a binary file in the body, and was hoping that I could use raw body with a JSON with body.mode = “file” and body.src = “filepath/filename”. I can upload successfully, but my issue is that the file uploaded is the body json and not the actual binary file specified in body.src that resides in my local disk.
Has anyone any suggestions for me to try? Again, this API does NOT support form-data.
Thank you!