Files
insomnia/packages/insomnia-httpsnippet/test/fixtures/requests/multipart-data.json
2018-03-26 13:50:43 -07:00

22 lines
379 B
JSON
Executable File

{
"method": "POST",
"url": "http://mockbin.com/har",
"headers": [
{
"name": "content-type",
"value": "multipart/form-data"
}
],
"postData": {
"mimeType": "multipart/form-data",
"params": [
{
"name": "foo",
"value": "Hello World",
"fileName": "hello.txt",
"contentType": "text/plain"
}
]
}
}