-
Notifications
You must be signed in to change notification settings - Fork 860
Closed
Description
Body - raw not filled with data after import
To Reproduce
Steps to reproduce the behavior:
- Go to 'Import > Paste Raw Text cURL'
- Use following curl
curl --location --request POST "https://sample.com" --header "Content-Type: application/json" --data-raw "{ \"details\": { \"id\": \"11\", \"sample\": { \"name\": \"ankit\" } } }"
- Body is not filled (see Screenshot)
Expected behavior
Should be the same as with that curl (see Screenshot)
curl --location --request POST "https://sample.com" --header "Content-Type: application/json" --data "{ \"details\": { \"id\": \"11\", \"sample\": { \"name\": \"ankit\" } } }"
Screenshots
Successfull with -data
Not Successfull with -data-raw
App information (please complete the following information):
- Postman Version 7.14.0
- OS: Windows 10
Context
Generate Code Snippet creats --data-raw
VicKetchup, ivliskot, jeronimusus, atallon, pavelsaman and 8 more