Postman: sending nested JSON object Postman: sending nested JSON object google-chrome google-chrome

Postman: sending nested JSON object


Send it as raw data and set the type to application/json

enter image description here


To post a nested object with the key-value interface you can use a similar method to sending arrays.Pass an object key in square brackets after the object index.

Passing a nested item with Postman

"Items": [      {        "sku": "9257",        "Price": "100"      } ]


I got it working using the Raw data option in postman, as you can see in the screen shot

enter image description here