Data Plane Warning
Data Plane OpenAPI specs
Check for appropriate use of formData parameters.
It can be appropriate to use formData parameters when sending multiple file-type parameters or an array of file-type parameters.
But it is usually unnecessary and can be overly complicated to use formData when all you are doing is sending a single file-type parameter.
Instead, consider defining a body
parameter with type: string, format: binary
and use content-type application/octet-stream
.
June 18, 2022
June 18, 2022
Remove the formdata
parameter and define a body
parameter with type: string, format: binary
and use content-type application/octet-stream
.