Postman: sending nested JSON object
Solution 1:
Send it as raw data and set the type to application/json
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.
"Items": [
{
"sku": "9257",
"Price": "100"
}
]