Added bulk json insert test

This commit is contained in:
2025-05-28 17:47:44 +03:30
parent 1ed2f3c836
commit 1f5fb1663e

View File

@@ -68,6 +68,24 @@ Content-Type: application/json
}
?? status == 201
###
POST /products
Content-Type: application/json
[
{
"product_name": "Saffaron"
},
{
"product_name": "Chai"
},
{
"product_name": "sar"
}
]
?? status == 201
###
{{
const axios = require('axios');