I am currently mocking out several endpoints in Paw, including one that would typicaly receive multipart form data as a combination of standard text input as well as a file.
If it were a form, it would look like this:
<form action="/image/save" method="post" enctype="multipart/form-data">
<input name="text-stuff" type="text" />
<input name="image-stuff" type="file" />
<input type="submit" value="Save"/>
</form>
How do I upload a file as part of a multipart request in Paw?