Postman: sending nested JSON object

Solution 1:

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

enter image description here

Solution 2:

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"
      }
 ]