Alternative to using byte[] in restful API function to ease testing using postman?
I have a restful API post
function build in C# on the ASP.NET framework that expects a request body object with one major parameter being of type byte[]
. The service is designed to take a file’s byte array, and process it.
Alternative to using byte[] in restful API function to ease testing using postman?
I have a restful API post
function build in C# on the ASP.NET framework that expects a request body object with one major parameter being of type byte[]
. The service is designed to take a file’s byte array, and process it.