From 1f5fb1663e142178f8536c62846ac34c9f87551a Mon Sep 17 00:00:00 2001 From: alibw Date: Wed, 28 May 2025 17:47:44 +0330 Subject: [PATCH] Added bulk json insert test --- Rest.http | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/Rest.http b/Rest.http index cc72e01..aec12f3 100644 --- a/Rest.http +++ b/Rest.http @@ -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');