@boostengine/collections 1.0.0 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,270 @@
1
+ {
2
+ "info": {
3
+ "_postman_id": "dl123456-3333-4abc-def4-567890123456",
4
+ "name": "Delhivery Full Express Logistics API Collection",
5
+ "description": "Exhaustive Enterprise Postman Collection for Delhivery Express (Pincode Serviceability, Waybill Management, Single & Bulk Shipment Manifests, Shipping Labels, Warehouse Pickup Requests, Live Tracking, NDR Actions, and Webhooks Simulator).",
6
+ "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
7
+ },
8
+ "auth": {
9
+ "type": "noauth"
10
+ },
11
+ "item": [
12
+ {
13
+ "name": "1. Serviceability & Rates",
14
+ "description": "Check pin code delivery, COD status, and calculate freight rates.",
15
+ "item": [
16
+ {
17
+ "name": "Check Pincode Serviceability",
18
+ "request": {
19
+ "method": "GET",
20
+ "header": [
21
+ { "key": "Authorization", "value": "Token {{delhivery_api_token}}" }
22
+ ],
23
+ "url": {
24
+ "raw": "{{delhivery_base_url}}/c/api/pin-codes/json/?filter_codes={{check_pincode}}",
25
+ "host": ["{{delhivery_base_url}}"],
26
+ "path": ["c", "api", "pin-codes", "json", ""],
27
+ "query": [
28
+ { "key": "filter_codes", "value": "{{check_pincode}}" }
29
+ ]
30
+ },
31
+ "description": "Checks if the pincode is serviceable for Surface/Express and COD."
32
+ }
33
+ },
34
+ {
35
+ "name": "Calculate Estimated Shipping Rate",
36
+ "request": {
37
+ "method": "GET",
38
+ "header": [
39
+ { "key": "Authorization", "value": "Token {{delhivery_api_token}}" }
40
+ ],
41
+ "url": {
42
+ "raw": "{{delhivery_base_url}}/api/kinko/v1/invoice/charges/.json?md=S&ss=Delivered&d_pin={{check_pincode}}&o_pin=110001&cgm=500&pt=Pre-paid",
43
+ "host": ["{{delhivery_base_url}}"],
44
+ "path": ["api", "kinko", "v1", "invoice", "charges", ".json"],
45
+ "query": [
46
+ { "key": "md", "value": "S", "description": "Mode: S (Surface) or E (Express)" },
47
+ { "key": "ss", "value": "Delivered" },
48
+ { "key": "d_pin", "value": "{{check_pincode}}" },
49
+ { "key": "o_pin", "value": "110001" },
50
+ { "key": "cgm", "value": "500" },
51
+ { "key": "pt", "value": "Pre-paid" }
52
+ ]
53
+ },
54
+ "description": "Calculates shipping charges based on weight, distance, and payment type."
55
+ }
56
+ }
57
+ ]
58
+ },
59
+ {
60
+ "name": "2. Waybill & Shipments API",
61
+ "description": "Generate bulk waybills, create manifest shipments, and update orders.",
62
+ "item": [
63
+ {
64
+ "name": "Fetch Bulk Waybill Numbers",
65
+ "event": [
66
+ {
67
+ "listen": "test",
68
+ "script": {
69
+ "exec": [
70
+ "var jsonData = pm.response.text();",
71
+ "if (jsonData) {",
72
+ " var firstWbn = jsonData.split(',')[0].replace(/\"/g, '').trim();",
73
+ " pm.environment.set('delhivery_waybill', firstWbn);",
74
+ " console.log('Saved Delhivery Waybill: ' + firstWbn);",
75
+ "}"
76
+ ],
77
+ "type": "text/javascript"
78
+ }
79
+ }
80
+ ],
81
+ "request": {
82
+ "method": "GET",
83
+ "header": [
84
+ { "key": "Authorization", "value": "Token {{delhivery_api_token}}" }
85
+ ],
86
+ "url": {
87
+ "raw": "{{delhivery_base_url}}/waybill/api/bulk/json/?count=5",
88
+ "host": ["{{delhivery_base_url}}"],
89
+ "path": ["waybill", "api", "bulk", "json", ""],
90
+ "query": [
91
+ { "key": "count", "value": "5" }
92
+ ]
93
+ },
94
+ "description": "Fetches a pre-allocated pool of waybill tracking numbers."
95
+ }
96
+ },
97
+ {
98
+ "name": "Create Surface / Express Shipment",
99
+ "request": {
100
+ "method": "POST",
101
+ "header": [
102
+ { "key": "Authorization", "value": "Token {{delhivery_api_token}}" },
103
+ { "key": "Content-Type", "value": "application/x-www-form-urlencoded" }
104
+ ],
105
+ "body": {
106
+ "mode": "urlencoded",
107
+ "urlencoded": [
108
+ {
109
+ "key": "format",
110
+ "value": "json",
111
+ "type": "text"
112
+ },
113
+ {
114
+ "key": "data",
115
+ "value": "{\n \"shipments\": [\n {\n \"name\": \"Aman Sharma\",\n \"add\": \"Flat 402, Skyline Residency\",\n \"pin\": \"400053\",\n \"city\": \"Mumbai\",\n \"state\": \"Maharashtra\",\n \"country\": \"India\",\n \"phone\": \"9876543210\",\n \"order\": \"ORD_DEL_{{$timestamp}}\",\n \"payment_mode\": \"Pre-paid\",\n \"products_desc\": \"Boost Apparel\",\n \"cod_amount\": \"0\",\n \"order_date\": \"2026-09-08 18:30:00\",\n \"total_amount\": \"1499\",\n \"seller_add\": \"Warehouse 1, Bhiwandi\",\n \"seller_name\": \"Boost Engine Store\",\n \"seller_inv\": \"INV_9821\",\n \"quantity\": \"1\",\n \"waybill\": \"{{delhivery_waybill}}\",\n \"shipment_width\": 15,\n \"shipment_height\": 5,\n \"weight\": 500\n }\n ],\n \"pickup_location\": {\n \"name\": \"Primary Warehouse\"\n }\n}",
116
+ "type": "text"
117
+ }
118
+ ]
119
+ },
120
+ "url": {
121
+ "raw": "{{delhivery_base_url}}/api/cmu/create.json",
122
+ "host": ["{{delhivery_base_url}}"],
123
+ "path": ["api", "cmu", "create.json"]
124
+ },
125
+ "description": "Manifests an order and books parcel pickup with Delhivery Express."
126
+ }
127
+ },
128
+ {
129
+ "name": "Edit Shipment Customer Address",
130
+ "request": {
131
+ "method": "POST",
132
+ "header": [
133
+ { "key": "Authorization", "value": "Token {{delhivery_api_token}}" },
134
+ { "key": "Content-Type", "value": "application/json" }
135
+ ],
136
+ "body": {
137
+ "mode": "raw",
138
+ "raw": "{\n \"waybill\": \"{{delhivery_waybill}}\",\n \"name\": \"Aman Sharma\",\n \"phone\": \"9876543210\",\n \"add\": \"Plot 12, Tech Park, Andheri East\"\n}"
139
+ },
140
+ "url": {
141
+ "raw": "{{delhivery_base_url}}/api/p/edit",
142
+ "host": ["{{delhivery_base_url}}"],
143
+ "path": ["api", "p", "edit"]
144
+ },
145
+ "description": "Updates receiver contact or delivery address."
146
+ }
147
+ },
148
+ {
149
+ "name": "Cancel Shipment Waybill",
150
+ "request": {
151
+ "method": "POST",
152
+ "header": [
153
+ { "key": "Authorization", "value": "Token {{delhivery_api_token}}" },
154
+ { "key": "Content-Type", "value": "application/json" }
155
+ ],
156
+ "body": {
157
+ "mode": "raw",
158
+ "raw": "{\n \"waybill\": \"{{delhivery_waybill}}\",\n \"cancellation\": \"true\"\n}"
159
+ },
160
+ "url": {
161
+ "raw": "{{delhivery_base_url}}/api/p/edit",
162
+ "host": ["{{delhivery_base_url}}"],
163
+ "path": ["api", "p", "edit"]
164
+ },
165
+ "description": "Cancels a booked waybill."
166
+ }
167
+ }
168
+ ]
169
+ },
170
+ {
171
+ "name": "3. Warehouse & Pickup Request",
172
+ "description": "Schedule rider warehouse pickup.",
173
+ "item": [
174
+ {
175
+ "name": "Create Warehouse Pickup Request",
176
+ "request": {
177
+ "method": "POST",
178
+ "header": [
179
+ { "key": "Authorization", "value": "Token {{delhivery_api_token}}" },
180
+ { "key": "Content-Type", "value": "application/json" }
181
+ ],
182
+ "body": {
183
+ "mode": "raw",
184
+ "raw": "{\n \"pickup_time\": \"14:00:00\",\n \"pickup_date\": \"2026-09-09\",\n \"pickup_location\": \"Primary Warehouse\",\n \"expected_package_count\": 10\n}"
185
+ },
186
+ "url": {
187
+ "raw": "{{delhivery_base_url}}/fm/request/new/",
188
+ "host": ["{{delhivery_base_url}}"],
189
+ "path": ["fm", "request", "new", ""]
190
+ },
191
+ "description": "Requests Delhivery pickup van at your warehouse location."
192
+ }
193
+ }
194
+ ]
195
+ },
196
+ {
197
+ "name": "4. Shipping Label & Barcodes",
198
+ "description": "Generate thermal shipping slips.",
199
+ "item": [
200
+ {
201
+ "name": "Download Shipping Label (PDF / Barcode)",
202
+ "request": {
203
+ "method": "GET",
204
+ "header": [
205
+ { "key": "Authorization", "value": "Token {{delhivery_api_token}}" }
206
+ ],
207
+ "url": {
208
+ "raw": "{{delhivery_base_url}}/api/p/packing_slip?wbns={{delhivery_waybill}}&pdf=true",
209
+ "host": ["{{delhivery_base_url}}"],
210
+ "path": ["api", "p", "packing_slip"],
211
+ "query": [
212
+ { "key": "wbns", "value": "{{delhivery_waybill}}" },
213
+ { "key": "pdf", "value": "true" }
214
+ ]
215
+ },
216
+ "description": "Downloads PDF shipping label with courier routing code and barcode."
217
+ }
218
+ }
219
+ ]
220
+ },
221
+ {
222
+ "name": "5. Live Tracking API",
223
+ "description": "Realtime parcel scan checkpoints and delivery confirmations.",
224
+ "item": [
225
+ {
226
+ "name": "Live Track by Waybill",
227
+ "request": {
228
+ "method": "GET",
229
+ "header": [
230
+ { "key": "Authorization", "value": "Token {{delhivery_api_token}}" }
231
+ ],
232
+ "url": {
233
+ "raw": "{{delhivery_base_url}}/api/v1/packages/json/?waybill={{delhivery_waybill}}",
234
+ "host": ["{{delhivery_base_url}}"],
235
+ "path": ["api", "v1", "packages", "json", ""],
236
+ "query": [
237
+ { "key": "waybill", "value": "{{delhivery_waybill}}" }
238
+ ]
239
+ },
240
+ "description": "Returns full transit scans, current hub, and delivery status."
241
+ }
242
+ }
243
+ ]
244
+ },
245
+ {
246
+ "name": "6. Webhooks Simulator",
247
+ "description": "Simulated Delhivery push event notifications.",
248
+ "item": [
249
+ {
250
+ "name": "Webhook: In-Transit Status",
251
+ "request": {
252
+ "method": "POST",
253
+ "header": [
254
+ { "key": "Content-Type", "value": "application/json" }
255
+ ],
256
+ "body": {
257
+ "mode": "raw",
258
+ "raw": "{\n \"Shipment\": {\n \"AWB\": \"128371928371\",\n \"Status\": {\n \"Status\": \"In Transit\",\n \"StatusDateTime\": \"2026-09-08T22:00:00+05:30\",\n \"StatusType\": \"UD\",\n \"Instructions\": \"Package arrived at Mumbai Central Sort Center\"\n }\n }\n}"
259
+ },
260
+ "url": {
261
+ "raw": "{{local_webhook_url}}",
262
+ "host": ["{{local_webhook_url}}"]
263
+ },
264
+ "description": "Simulates Delhivery push tracking event."
265
+ }
266
+ }
267
+ ]
268
+ }
269
+ ]
270
+ }
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "info": {
3
3
  "_postman_id": "8f21bc90-2134-4b45-9128-b12a83e01290",
4
- "name": "EasyEcom eCommerce & Warehouse API Collection",
5
- "description": "Production-ready Postman Collection for EasyEcom Inventory, Orders, Multi-Warehouse Stock, and Courier Manifest APIs. Maintained by Boost Engine (@boostengine/collections).",
4
+ "name": "EasyEcom Full eCommerce & Warehouse ERP API Collection",
5
+ "description": "Exhaustive Enterprise Postman Collection for EasyEcom (Orders, Batch Dispatches, Multi-Warehouse Stock Sync, Master Catalog SKUs, Inward/Outward Inventory, AWB & Courier Manifests, Returns Reconciliation).",
6
6
  "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
7
7
  },
8
8
  "auth": {
@@ -17,11 +17,11 @@
17
17
  },
18
18
  "item": [
19
19
  {
20
- "name": "Orders",
21
- "description": "APIs to push new storefront orders, fetch pending orders, and manage fulfillment status in EasyEcom.",
20
+ "name": "1. Orders & Dispatches API",
21
+ "description": "Push storefront orders, fetch pending shipments, allocate couriers, and generate manifests.",
22
22
  "item": [
23
23
  {
24
- "name": "1. Fetch Pending Orders",
24
+ "name": "Fetch Pending Orders",
25
25
  "request": {
26
26
  "method": "GET",
27
27
  "header": [],
@@ -30,21 +30,15 @@
30
30
  "host": ["{{easyecom_base_url}}"],
31
31
  "path": ["orders", "v2", "getOrders"],
32
32
  "query": [
33
- {
34
- "key": "status",
35
- "value": "pending"
36
- },
37
- {
38
- "key": "limit",
39
- "value": "20"
40
- }
33
+ { "key": "status", "value": "pending" },
34
+ { "key": "limit", "value": "20" }
41
35
  ]
42
36
  },
43
- "description": "Fetches unfulfilled / pending orders waiting for picklist and invoice generation."
37
+ "description": "Fetches unfulfilled orders."
44
38
  }
45
39
  },
46
40
  {
47
- "name": "2. Create / Push Store Order",
41
+ "name": "Create / Push Store Order",
48
42
  "request": {
49
43
  "method": "POST",
50
44
  "header": [
@@ -55,18 +49,18 @@
55
49
  ],
56
50
  "body": {
57
51
  "mode": "raw",
58
- "raw": "{\n \"order_details\": {\n \"order_reference_id\": \"ORD_BOOST_9821\",\n \"order_date\": \"2026-09-08 18:30:00\",\n \"payment_mode\": \"Prepaid\",\n \"marketplace\": \"CustomStore\",\n \"customer_details\": {\n \"first_name\": \"Rahul\",\n \"last_name\": \"Verma\",\n \"email\": \"rahul.verma@example.com\",\n \"contact_number\": \"9876543210\"\n },\n \"shipping_address\": {\n \"address_line_1\": \"Flat 402, Skyline Residency, Link Road\",\n \"city\": \"Mumbai\",\n \"state\": \"Maharashtra\",\n \"pin_code\": \"400053\",\n \"country\": \"India\"\n },\n \"order_items\": [\n {\n \"sku\": \"TEE-ANIME-BLK-L\",\n \"item_title\": \"Oversized Anime Black T-Shirt (Large)\",\n \"quantity\": 1,\n \"selling_price\": 799,\n \"tax_percentage\": 5,\n \"discount\": 0\n }\n ],\n \"total_amount\": 799,\n \"shipping_charges\": 0\n }\n}"
52
+ "raw": "{\n \"order_details\": {\n \"order_reference_id\": \"ORD_BOOST_{{$timestamp}}\",\n \"order_date\": \"2026-09-08 18:30:00\",\n \"payment_mode\": \"Prepaid\",\n \"marketplace\": \"CustomStore\",\n \"customer_details\": {\n \"first_name\": \"Rahul\",\n \"last_name\": \"Verma\",\n \"email\": \"rahul.verma@example.com\",\n \"contact_number\": \"9876543210\"\n },\n \"shipping_address\": {\n \"address_line_1\": \"Flat 402, Skyline Residency\",\n \"city\": \"Mumbai\",\n \"state\": \"Maharashtra\",\n \"pin_code\": \"400053\",\n \"country\": \"India\"\n },\n \"order_items\": [\n {\n \"sku\": \"TEE-ANIME-BLK-L\",\n \"item_title\": \"Oversized Anime Black T-Shirt (Large)\",\n \"quantity\": 1,\n \"selling_price\": 799,\n \"tax_percentage\": 5,\n \"discount\": 0\n }\n ],\n \"total_amount\": 799,\n \"shipping_charges\": 0\n }\n}"
59
53
  },
60
54
  "url": {
61
55
  "raw": "{{easyecom_base_url}}/orders/v2/createOrder",
62
56
  "host": ["{{easyecom_base_url}}"],
63
57
  "path": ["orders", "v2", "createOrder"]
64
58
  },
65
- "description": "Pushes a new order from your custom eCommerce store or mobile app into EasyEcom ERP."
59
+ "description": "Pushes storefront order into EasyEcom ERP."
66
60
  }
67
61
  },
68
62
  {
69
- "name": "3. Update Order Status",
63
+ "name": "Update Order Status (Shipped / Delivered)",
70
64
  "request": {
71
65
  "method": "POST",
72
66
  "header": [
@@ -84,11 +78,11 @@
84
78
  "host": ["{{easyecom_base_url}}"],
85
79
  "path": ["orders", "v2", "updateOrderStatus"]
86
80
  },
87
- "description": "Updates order fulfillment status (e.g. packed, shipped, delivered, rto)."
81
+ "description": "Updates fulfillment status."
88
82
  }
89
83
  },
90
84
  {
91
- "name": "4. Cancel Order",
85
+ "name": "Cancel Order",
92
86
  "request": {
93
87
  "method": "POST",
94
88
  "header": [
@@ -99,43 +93,63 @@
99
93
  ],
100
94
  "body": {
101
95
  "mode": "raw",
102
- "raw": "{\n \"order_reference_id\": \"ORD_BOOST_9821\",\n \"cancellation_reason\": \"Customer requested cancellation before dispatch\"\n}"
96
+ "raw": "{\n \"order_reference_id\": \"ORD_BOOST_9821\",\n \"cancellation_reason\": \"Customer requested cancellation before pack\"\n}"
103
97
  },
104
98
  "url": {
105
99
  "raw": "{{easyecom_base_url}}/orders/v2/cancelOrder",
106
100
  "host": ["{{easyecom_base_url}}"],
107
101
  "path": ["orders", "v2", "cancelOrder"]
108
102
  },
109
- "description": "Cancels an order before it is dispatched and restores inventory in EasyEcom warehouse."
103
+ "description": "Cancels order in EasyEcom ERP."
104
+ }
105
+ },
106
+ {
107
+ "name": "Generate Dispatch Manifest",
108
+ "request": {
109
+ "method": "POST",
110
+ "header": [
111
+ {
112
+ "key": "Content-Type",
113
+ "value": "application/json"
114
+ }
115
+ ],
116
+ "body": {
117
+ "mode": "raw",
118
+ "raw": "{\n \"carrier_name\": \"Delhivery\",\n \"warehouse_id\": 101,\n \"order_ids\": [\"ORD_BOOST_9821\", \"ORD_BOOST_9822\"]\n}"
119
+ },
120
+ "url": {
121
+ "raw": "{{easyecom_base_url}}/orders/v2/generateManifest",
122
+ "host": ["{{easyecom_base_url}}"],
123
+ "path": ["orders", "v2", "generateManifest"]
124
+ },
125
+ "description": "Generates dispatch handover manifest document."
110
126
  }
111
127
  }
112
128
  ]
113
129
  },
114
130
  {
115
- "name": "Inventory & Multi-Warehouse Stock",
116
- "description": "APIs to query and sync live stock levels across central and regional fulfillment centers.",
131
+ "name": "2. Inventory & Warehouses API",
132
+ "description": "Multi-location inventory sync, stock adjustment, and warehouse management.",
117
133
  "item": [
118
134
  {
119
- "name": "1. Get Inventory by SKU",
135
+ "name": "Get Inventory by Warehouse",
120
136
  "request": {
121
137
  "method": "GET",
122
138
  "header": [],
123
139
  "url": {
124
- "raw": "{{easyecom_base_url}}/inventory/v2/getInventoryDetails?sku={{sku}}",
140
+ "raw": "{{easyecom_base_url}}/inventory/v2/getInventory?warehouse_id=101&limit=50",
125
141
  "host": ["{{easyecom_base_url}}"],
126
- "path": ["inventory", "v2", "getInventoryDetails"],
142
+ "path": ["inventory", "v2", "getInventory"],
127
143
  "query": [
128
- {
129
- "key": "sku",
130
- "value": "{{sku}}"
131
- }
144
+ { "key": "warehouse_id", "value": "101" },
145
+ { "key": "limit", "value": "50" }
132
146
  ]
133
147
  },
134
- "description": "Fetches current physical stock, allocated stock, and sellable stock for a specific SKU."
148
+ "description": "Fetches current stock on hand and available to sell."
135
149
  }
136
150
  },
137
151
  {
138
- "name": "2. Update Warehouse Stock",
152
+ "name": "Update Stock (Single SKU)",
139
153
  "request": {
140
154
  "method": "POST",
141
155
  "header": [
@@ -146,60 +160,53 @@
146
160
  ],
147
161
  "body": {
148
162
  "mode": "raw",
149
- "raw": "{\n \"warehouse_id\": \"{{warehouse_id}}\",\n \"sku\": \"TEE-ANIME-BLK-L\",\n \"quantity\": 50,\n \"update_type\": \"absolute\",\n \"remarks\": \"New batch inward stock from manufacturer\"\n}"
163
+ "raw": "{\n \"sku\": \"TEE-ANIME-BLK-L\",\n \"warehouse_id\": 101,\n \"quantity\": 150,\n \"update_type\": \"absolute\"\n}"
150
164
  },
151
165
  "url": {
152
- "raw": "{{easyecom_base_url}}/inventory/v2/updateInventory",
166
+ "raw": "{{easyecom_base_url}}/inventory/v2/updateStock",
153
167
  "host": ["{{easyecom_base_url}}"],
154
- "path": ["inventory", "v2", "updateInventory"]
168
+ "path": ["inventory", "v2", "updateStock"]
155
169
  },
156
- "description": "Updates warehouse inventory. Supports update_type 'absolute' (set exact count) or 'incremental' (add/subtract)."
170
+ "description": "Updates physical inventory for an SKU across sales channels."
157
171
  }
158
172
  },
159
173
  {
160
- "name": "3. Get All Warehouses List",
174
+ "name": "List All Warehouses",
161
175
  "request": {
162
176
  "method": "GET",
163
177
  "header": [],
164
178
  "url": {
165
- "raw": "{{easyecom_base_url}}/inventory/v2/getWarehouses",
179
+ "raw": "{{easyecom_base_url}}/warehouses/v2/getWarehouses",
166
180
  "host": ["{{easyecom_base_url}}"],
167
- "path": ["inventory", "v2", "getWarehouses"]
181
+ "path": ["warehouses", "v2", "getWarehouses"]
168
182
  },
169
- "description": "Retrieves the list of active warehouse locations and fulfillment centers."
183
+ "description": "Lists all fulfillment centers and locations."
170
184
  }
171
185
  }
172
186
  ]
173
187
  },
174
188
  {
175
- "name": "Master Catalog & SKUs",
176
- "description": "APIs to manage master product catalog, HSN codes, dimensions, and weights.",
189
+ "name": "3. Master Catalog & SKUs",
190
+ "description": "Manage master product catalog, barcodes, and HSN tax codes.",
177
191
  "item": [
178
192
  {
179
- "name": "1. Get Master Products",
193
+ "name": "Get Product Master by SKU",
180
194
  "request": {
181
195
  "method": "GET",
182
196
  "header": [],
183
197
  "url": {
184
- "raw": "{{easyecom_base_url}}/catalog/v2/getMasterProducts?limit=20&page=1",
198
+ "raw": "{{easyecom_base_url}}/products/v2/getProduct?sku=TEE-ANIME-BLK-L",
185
199
  "host": ["{{easyecom_base_url}}"],
186
- "path": ["catalog", "v2", "getMasterProducts"],
200
+ "path": ["products", "v2", "getProduct"],
187
201
  "query": [
188
- {
189
- "key": "limit",
190
- "value": "20"
191
- },
192
- {
193
- "key": "page",
194
- "value": "1"
195
- }
202
+ { "key": "sku", "value": "TEE-ANIME-BLK-L" }
196
203
  ]
197
204
  },
198
- "description": "Fetches master product catalog records with weights, dimensions, and barcodes."
205
+ "description": "Fetches SKU attributes, weight, dimensions, and HSN code."
199
206
  }
200
207
  },
201
208
  {
202
- "name": "2. Create / Update Master SKU",
209
+ "name": "Create / Update Product Master",
203
210
  "request": {
204
211
  "method": "POST",
205
212
  "header": [
@@ -210,46 +217,41 @@
210
217
  ],
211
218
  "body": {
212
219
  "mode": "raw",
213
- "raw": "{\n \"sku\": \"TEE-ANIME-BLK-L\",\n \"product_name\": \"Oversized Anime Black T-Shirt (Large)\",\n \"brand\": \"Boost Wear\",\n \"category\": \"Apparel\",\n \"hsn_code\": \"61091000\",\n \"tax_rate\": 5,\n \"mrp\": 1499,\n \"selling_price\": 799,\n \"weight_in_grams\": 250,\n \"dimensions\": {\n \"length\": 30,\n \"width\": 25,\n \"height\": 3\n }\n}"
220
+ "raw": "{\n \"sku\": \"HOODIE-WINTER-NVY-XL\",\n \"name\": \"Oversized Navy Blue Winter Hoodie (XL)\",\n \"hsn_code\": \"61012000\",\n \"cost_price\": 650,\n \"mrp\": 2499,\n \"tax_rate\": 12,\n \"weight_grams\": 650,\n \"length\": 30,\n \"width\": 25,\n \"height\": 8\n}"
214
221
  },
215
222
  "url": {
216
- "raw": "{{easyecom_base_url}}/catalog/v2/createProduct",
223
+ "raw": "{{easyecom_base_url}}/products/v2/createProduct",
217
224
  "host": ["{{easyecom_base_url}}"],
218
- "path": ["catalog", "v2", "createProduct"]
225
+ "path": ["products", "v2", "createProduct"]
219
226
  },
220
- "description": "Registers or updates a master SKU with dimensions and HSN code in EasyEcom."
227
+ "description": "Creates master product record in ERP."
221
228
  }
222
229
  }
223
230
  ]
224
231
  },
225
232
  {
226
- "name": "Shipping & Manifests",
227
- "description": "APIs to generate Airway Bills (AWB), shipping labels, and handover manifests.",
233
+ "name": "4. Returns & Inward Reconciliation",
234
+ "description": "Process RTO & Customer Returns.",
228
235
  "item": [
229
236
  {
230
- "name": "1. Generate AWB / Shipping Label",
237
+ "name": "List Inward Returns",
231
238
  "request": {
232
- "method": "POST",
233
- "header": [
234
- {
235
- "key": "Content-Type",
236
- "value": "application/json"
237
- }
238
- ],
239
- "body": {
240
- "mode": "raw",
241
- "raw": "{\n \"order_reference_id\": \"ORD_BOOST_9821\",\n \"courier_id\": \"delhivery_surface\",\n \"pickup_warehouse_id\": \"{{warehouse_id}}\"\n}"
242
- },
239
+ "method": "GET",
240
+ "header": [],
243
241
  "url": {
244
- "raw": "{{easyecom_base_url}}/shipping/v2/generateAwb",
242
+ "raw": "{{easyecom_base_url}}/returns/v2/getReturns?status=in_transit&limit=20",
245
243
  "host": ["{{easyecom_base_url}}"],
246
- "path": ["shipping", "v2", "generateAwb"]
244
+ "path": ["returns", "v2", "getReturns"],
245
+ "query": [
246
+ { "key": "status", "value": "in_transit" },
247
+ { "key": "limit", "value": "20" }
248
+ ]
247
249
  },
248
- "description": "Assigns courier and generates shipping label & AWB tracking number for an order."
250
+ "description": "Lists customer returns on their way to warehouse."
249
251
  }
250
252
  },
251
253
  {
252
- "name": "2. Create Courier Handover Manifest",
254
+ "name": "Reconcile Inward Return",
253
255
  "request": {
254
256
  "method": "POST",
255
257
  "header": [
@@ -260,14 +262,14 @@
260
262
  ],
261
263
  "body": {
262
264
  "mode": "raw",
263
- "raw": "{\n \"courier_name\": \"Delhivery\",\n \"warehouse_id\": \"{{warehouse_id}}\",\n \"order_ids\": [\"ORD_BOOST_9821\"]\n}"
265
+ "raw": "{\n \"return_id\": \"RET_109283\",\n \"qc_status\": \"PASSED\",\n \"restock_inventory\": true,\n \"warehouse_id\": 101,\n \"remarks\": \"Item verified in original packaging\"\n}"
264
266
  },
265
267
  "url": {
266
- "raw": "{{easyecom_base_url}}/shipping/v2/createManifest",
268
+ "raw": "{{easyecom_base_url}}/returns/v2/reconcileReturn",
267
269
  "host": ["{{easyecom_base_url}}"],
268
- "path": ["shipping", "v2", "createManifest"]
270
+ "path": ["returns", "v2", "reconcileReturn"]
269
271
  },
270
- "description": "Creates a courier manifest PDF when handing over physical parcels to delivery rider."
272
+ "description": "Runs QC check and restocks returned item back to inventory."
271
273
  }
272
274
  }
273
275
  ]