@gofynd/fdk-client-javascript 1.0.0 → 1.0.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.
Files changed (104) hide show
  1. package/documentation/application/CATALOG.md +371 -371
  2. package/documentation/application/ORDER.md +272 -272
  3. package/documentation/application/PAYMENT.md +269 -269
  4. package/documentation/platform/CATALOG.md +1678 -1664
  5. package/documentation/platform/COMPANYPROFILE.md +201 -201
  6. package/documentation/platform/ORDER.md +1442 -1323
  7. package/documentation/platform/PAYMENT.md +88 -88
  8. package/index.js +7 -1
  9. package/package.json +1 -1
  10. package/sdk/application/Cart/CartApplicationClient.js +302 -0
  11. package/sdk/application/Cart/CartApplicationValidator.js +1 -0
  12. package/sdk/application/Catalog/CatalogApplicationClient.js +378 -0
  13. package/sdk/application/Catalog/CatalogApplicationModel.d.ts +17 -17
  14. package/sdk/application/Catalog/CatalogApplicationModel.js +500 -500
  15. package/sdk/application/Catalog/CatalogApplicationValidator.js +1 -0
  16. package/sdk/application/Common/CommonApplicationClient.js +22 -0
  17. package/sdk/application/Common/CommonApplicationValidator.js +1 -0
  18. package/sdk/application/Communication/CommunicationApplicationClient.js +41 -0
  19. package/sdk/application/Communication/CommunicationApplicationValidator.js +1 -0
  20. package/sdk/application/Configuration/ConfigurationApplicationClient.js +200 -0
  21. package/sdk/application/Configuration/ConfigurationApplicationValidator.js +1 -0
  22. package/sdk/application/Content/ContentApplicationClient.js +215 -0
  23. package/sdk/application/Content/ContentApplicationValidator.js +1 -0
  24. package/sdk/application/FileStorage/FileStorageApplicationClient.js +33 -0
  25. package/sdk/application/FileStorage/FileStorageApplicationValidator.js +1 -0
  26. package/sdk/application/Lead/LeadApplicationClient.js +81 -0
  27. package/sdk/application/Lead/LeadApplicationValidator.js +1 -0
  28. package/sdk/application/Logistic/LogisticApplicationClient.js +44 -0
  29. package/sdk/application/Logistic/LogisticApplicationValidator.js +1 -0
  30. package/sdk/application/Order/OrderApplicationClient.js +146 -0
  31. package/sdk/application/Order/OrderApplicationModel.d.ts +20 -20
  32. package/sdk/application/Order/OrderApplicationModel.js +329 -329
  33. package/sdk/application/Order/OrderApplicationValidator.js +1 -0
  34. package/sdk/application/Payment/PaymentApplicationClient.js +528 -0
  35. package/sdk/application/Payment/PaymentApplicationModel.d.ts +5 -5
  36. package/sdk/application/Payment/PaymentApplicationModel.js +391 -391
  37. package/sdk/application/Payment/PaymentApplicationValidator.js +1 -0
  38. package/sdk/application/PosCart/PosCartApplicationClient.js +329 -0
  39. package/sdk/application/PosCart/PosCartApplicationValidator.js +1 -0
  40. package/sdk/application/Rewards/RewardsApplicationClient.js +81 -0
  41. package/sdk/application/Rewards/RewardsApplicationValidator.js +1 -0
  42. package/sdk/application/Share/ShareApplicationClient.js +87 -0
  43. package/sdk/application/Share/ShareApplicationValidator.js +1 -0
  44. package/sdk/application/Theme/ThemeApplicationClient.js +44 -0
  45. package/sdk/application/Theme/ThemeApplicationValidator.js +1 -0
  46. package/sdk/application/User/UserApplicationClient.js +405 -0
  47. package/sdk/application/User/UserApplicationValidator.js +1 -0
  48. package/sdk/common/AxiosHelper.js +1 -1
  49. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +114 -0
  50. package/sdk/platform/Analytics/AnalyticsPlatformClient.js +58 -0
  51. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +46 -0
  52. package/sdk/platform/Billing/BillingPlatformClient.js +160 -0
  53. package/sdk/platform/Cart/CartPlatformApplicationClient.js +246 -0
  54. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +29 -29
  55. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +839 -48
  56. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +3 -3
  57. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +9 -9
  58. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +54 -54
  59. package/sdk/platform/Catalog/CatalogPlatformClient.js +1149 -96
  60. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +58 -57
  61. package/sdk/platform/Catalog/CatalogPlatformModel.js +1626 -1614
  62. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +6 -6
  63. package/sdk/platform/Catalog/CatalogPlatformValidator.js +20 -20
  64. package/sdk/platform/Common/CommonPlatformClient.js +26 -0
  65. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +587 -0
  66. package/sdk/platform/Communication/CommunicationPlatformClient.js +15 -0
  67. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +179 -0
  68. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +11 -11
  69. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +269 -269
  70. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +382 -0
  71. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +282 -0
  72. package/sdk/platform/Content/ContentPlatformApplicationClient.js +866 -0
  73. package/sdk/platform/Discount/DiscountPlatformClient.js +152 -0
  74. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +54 -0
  75. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +76 -0
  76. package/sdk/platform/Inventory/InventoryPlatformClient.js +161 -0
  77. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +162 -0
  78. package/sdk/platform/Lead/LeadPlatformClient.js +140 -0
  79. package/sdk/platform/Order/OrderPlatformApplicationClient.js +55 -0
  80. package/sdk/platform/Order/OrderPlatformClient.d.ts +15 -6
  81. package/sdk/platform/Order/OrderPlatformClient.js +674 -15
  82. package/sdk/platform/Order/OrderPlatformModel.d.ts +67 -60
  83. package/sdk/platform/Order/OrderPlatformModel.js +1559 -1623
  84. package/sdk/platform/Order/OrderPlatformValidator.d.ts +2 -1
  85. package/sdk/platform/Order/OrderPlatformValidator.js +10 -4
  86. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +26 -0
  87. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +165 -0
  88. package/sdk/platform/Payment/PaymentPlatformClient.js +139 -0
  89. package/sdk/platform/Payment/PaymentPlatformModel.js +137 -137
  90. package/sdk/platform/PlatformApplicationClient.d.ts +2217 -2243
  91. package/sdk/platform/PlatformApplicationClient.js +2514 -2524
  92. package/sdk/platform/PlatformClient.d.ts +2217 -2243
  93. package/sdk/platform/PlatformClient.js +2514 -2524
  94. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +169 -0
  95. package/sdk/platform/Share/SharePlatformApplicationClient.js +53 -0
  96. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +293 -0
  97. package/sdk/platform/User/UserPlatformApplicationClient.js +145 -0
  98. package/sdk/platform/Webhook/WebhookPlatformClient.js +90 -0
  99. package/sdk/public/Configuration/ConfigurationPublicClient.js +25 -0
  100. package/sdk/public/Configuration/ConfigurationPublicValidator.js +3 -1
  101. package/sdk/public/Inventory/InventoryPublicClient.js +75 -0
  102. package/sdk/public/Inventory/InventoryPublicValidator.js +3 -1
  103. package/sdk/public/Webhook/WebhookPublicClient.js +29 -0
  104. package/sdk/public/Webhook/WebhookPublicValidator.js +3 -1
@@ -42,12 +42,13 @@ Handles all platform order and shipment api(s)
42
42
  * [dispatchManifest](#dispatchmanifest)
43
43
  * [getRoleBasedActions](#getrolebasedactions)
44
44
  * [getShipmentHistory](#getshipmenthistory)
45
+ * [postShipmentHistory](#postshipmenthistory)
45
46
  * [sendSmsNinja](#sendsmsninja)
46
47
  * [platformManualAssignDPToShipment](#platformmanualassigndptoshipment)
47
48
  * [updatePackagingDimensions](#updatepackagingdimensions)
48
49
  * [createOrder](#createorder)
49
- * [createChannelConfig](#createchannelconfig)
50
50
  * [getChannelConfig](#getchannelconfig)
51
+ * [createChannelConfig](#createchannelconfig)
51
52
  * [uploadConsent](#uploadconsent)
52
53
  * [orderUpdate](#orderupdate)
53
54
  * [checkOrderStatus](#checkorderstatus)
@@ -4260,17 +4261,17 @@ It shows the journey of the shipment!
4260
4261
  ---
4261
4262
 
4262
4263
 
4263
- ### sendSmsNinja
4264
+ ### postShipmentHistory
4264
4265
 
4265
4266
 
4266
4267
 
4267
4268
 
4268
4269
  ```javascript
4269
4270
  // Promise
4270
- const promise = client.order.sendSmsNinja({ body : value });
4271
+ const promise = client.order.postShipmentHistory({ body : value });
4271
4272
 
4272
4273
  // Async/Await
4273
- const data = await client.order.sendSmsNinja({ body : value });
4274
+ const data = await client.order.postShipmentHistory({ body : value });
4274
4275
  ```
4275
4276
 
4276
4277
 
@@ -4279,7 +4280,7 @@ const data = await client.order.sendSmsNinja({ body : value });
4279
4280
 
4280
4281
  | Argument | Type | Required | Description |
4281
4282
  | --------- | ----- | -------- | ----------- |
4282
- | body | [SendSmsPayload](#SendSmsPayload) | yes | Request body |
4283
+ | body | [PostShipmentHistory](#PostShipmentHistory) | yes | Request body |
4283
4284
 
4284
4285
 
4285
4286
 
@@ -4289,9 +4290,9 @@ const data = await client.order.sendSmsNinja({ body : value });
4289
4290
 
4290
4291
 
4291
4292
 
4292
- [OrderStatusResult](#OrderStatusResult)
4293
+ [ShipmentHistoryResponse](#ShipmentHistoryResponse)
4293
4294
 
4294
- Sms Sent successfully
4295
+ It shows the journey of the shipment!
4295
4296
 
4296
4297
 
4297
4298
 
@@ -4300,7 +4301,46 @@ Sms Sent successfully
4300
4301
  <summary><i>&nbsp; Example:</i></summary>
4301
4302
 
4302
4303
  ```json
4303
-
4304
+ {
4305
+ "activity_history": [
4306
+ {
4307
+ "message": {
4308
+ "message": "Bag status changed to pending",
4309
+ "store_id": 10,
4310
+ "store_code": "SF94",
4311
+ "store_name": "shub",
4312
+ "reason": {},
4313
+ "type": "activity_status"
4314
+ },
4315
+ "createdat": "01 Apr 2022, 17:57:PM",
4316
+ "user": "system",
4317
+ "type": "activity_status",
4318
+ "l1_detail": null,
4319
+ "l2_detail": null,
4320
+ "l3_detail": null,
4321
+ "ticket_id": null,
4322
+ "ticket_url": null
4323
+ },
4324
+ {
4325
+ "message": {
4326
+ "message": "Bag status changed to placed",
4327
+ "store_id": 10,
4328
+ "store_code": "SF94",
4329
+ "store_name": "shub",
4330
+ "reason": {},
4331
+ "type": "activity_status"
4332
+ },
4333
+ "createdat": "01 Apr 2022, 17:57:PM",
4334
+ "user": "system",
4335
+ "type": "activity_status",
4336
+ "l1_detail": null,
4337
+ "l2_detail": null,
4338
+ "l3_detail": null,
4339
+ "ticket_id": null,
4340
+ "ticket_url": null
4341
+ }
4342
+ ]
4343
+ }
4304
4344
  ```
4305
4345
  </details>
4306
4346
 
@@ -4315,17 +4355,17 @@ Sms Sent successfully
4315
4355
  ---
4316
4356
 
4317
4357
 
4318
- ### platformManualAssignDPToShipment
4358
+ ### sendSmsNinja
4319
4359
 
4320
4360
 
4321
4361
 
4322
4362
 
4323
4363
  ```javascript
4324
4364
  // Promise
4325
- const promise = client.order.platformManualAssignDPToShipment({ body : value });
4365
+ const promise = client.order.sendSmsNinja({ body : value });
4326
4366
 
4327
4367
  // Async/Await
4328
- const data = await client.order.platformManualAssignDPToShipment({ body : value });
4368
+ const data = await client.order.sendSmsNinja({ body : value });
4329
4369
  ```
4330
4370
 
4331
4371
 
@@ -4334,7 +4374,7 @@ const data = await client.order.platformManualAssignDPToShipment({ body : value
4334
4374
 
4335
4375
  | Argument | Type | Required | Description |
4336
4376
  | --------- | ----- | -------- | ----------- |
4337
- | body | [ManualAssignDPToShipment](#ManualAssignDPToShipment) | yes | Request body |
4377
+ | body | [SendSmsPayload](#SendSmsPayload) | yes | Request body |
4338
4378
 
4339
4379
 
4340
4380
 
@@ -4344,9 +4384,9 @@ const data = await client.order.platformManualAssignDPToShipment({ body : value
4344
4384
 
4345
4385
 
4346
4386
 
4347
- [ManualAssignDPToShipmentResponse](#ManualAssignDPToShipmentResponse)
4387
+ [OrderStatusResult](#OrderStatusResult)
4348
4388
 
4349
- DP Assigned for the given shipment Ids.
4389
+ Sms Sent successfully
4350
4390
 
4351
4391
 
4352
4392
 
@@ -4370,17 +4410,17 @@ DP Assigned for the given shipment Ids.
4370
4410
  ---
4371
4411
 
4372
4412
 
4373
- ### updatePackagingDimensions
4413
+ ### platformManualAssignDPToShipment
4374
4414
 
4375
4415
 
4376
4416
 
4377
4417
 
4378
4418
  ```javascript
4379
4419
  // Promise
4380
- const promise = client.order.updatePackagingDimensions({ body : value });
4420
+ const promise = client.order.platformManualAssignDPToShipment({ body : value });
4381
4421
 
4382
4422
  // Async/Await
4383
- const data = await client.order.updatePackagingDimensions({ body : value });
4423
+ const data = await client.order.platformManualAssignDPToShipment({ body : value });
4384
4424
  ```
4385
4425
 
4386
4426
 
@@ -4389,7 +4429,7 @@ const data = await client.order.updatePackagingDimensions({ body : value });
4389
4429
 
4390
4430
  | Argument | Type | Required | Description |
4391
4431
  | --------- | ----- | -------- | ----------- |
4392
- | body | [CreateOrderPayload](#CreateOrderPayload) | yes | Request body |
4432
+ | body | [ManualAssignDPToShipment](#ManualAssignDPToShipment) | yes | Request body |
4393
4433
 
4394
4434
 
4395
4435
 
@@ -4399,9 +4439,9 @@ const data = await client.order.updatePackagingDimensions({ body : value });
4399
4439
 
4400
4440
 
4401
4441
 
4402
- [CreateOrderResponse](#CreateOrderResponse)
4442
+ [ManualAssignDPToShipmentResponse](#ManualAssignDPToShipmentResponse)
4403
4443
 
4404
- Manifest will be processed!
4444
+ DP Assigned for the given shipment Ids.
4405
4445
 
4406
4446
 
4407
4447
 
@@ -4425,17 +4465,17 @@ Manifest will be processed!
4425
4465
  ---
4426
4466
 
4427
4467
 
4428
- ### createOrder
4468
+ ### updatePackagingDimensions
4429
4469
 
4430
4470
 
4431
4471
 
4432
4472
 
4433
4473
  ```javascript
4434
4474
  // Promise
4435
- const promise = client.order.createOrder({ body : value });
4475
+ const promise = client.order.updatePackagingDimensions({ body : value });
4436
4476
 
4437
4477
  // Async/Await
4438
- const data = await client.order.createOrder({ body : value });
4478
+ const data = await client.order.updatePackagingDimensions({ body : value });
4439
4479
  ```
4440
4480
 
4441
4481
 
@@ -4444,7 +4484,7 @@ const data = await client.order.createOrder({ body : value });
4444
4484
 
4445
4485
  | Argument | Type | Required | Description |
4446
4486
  | --------- | ----- | -------- | ----------- |
4447
- | body | [CreateOrderAPI](#CreateOrderAPI) | yes | Request body |
4487
+ | body | [CreateOrderPayload](#CreateOrderPayload) | yes | Request body |
4448
4488
 
4449
4489
 
4450
4490
 
@@ -4456,7 +4496,7 @@ const data = await client.order.createOrder({ body : value });
4456
4496
 
4457
4497
  [CreateOrderResponse](#CreateOrderResponse)
4458
4498
 
4459
- Successfully created an order!
4499
+ Manifest will be processed!
4460
4500
 
4461
4501
 
4462
4502
 
@@ -4480,17 +4520,17 @@ Successfully created an order!
4480
4520
  ---
4481
4521
 
4482
4522
 
4483
- ### createChannelConfig
4523
+ ### createOrder
4484
4524
 
4485
4525
 
4486
4526
 
4487
4527
 
4488
4528
  ```javascript
4489
4529
  // Promise
4490
- const promise = client.order.createChannelConfig({ body : value });
4530
+ const promise = client.order.createOrder({ body : value });
4491
4531
 
4492
4532
  // Async/Await
4493
- const data = await client.order.createChannelConfig({ body : value });
4533
+ const data = await client.order.createOrder({ body : value });
4494
4534
  ```
4495
4535
 
4496
4536
 
@@ -4499,19 +4539,19 @@ const data = await client.order.createChannelConfig({ body : value });
4499
4539
 
4500
4540
  | Argument | Type | Required | Description |
4501
4541
  | --------- | ----- | -------- | ----------- |
4502
- | body | [CreateChannelConfigData](#CreateChannelConfigData) | yes | Request body |
4542
+ | body | [CreateOrderAPI](#CreateOrderAPI) | yes | Request body |
4543
+
4503
4544
 
4504
4545
 
4505
- createChannelConfig
4506
4546
 
4507
4547
  *Returned Response:*
4508
4548
 
4509
4549
 
4510
4550
 
4511
4551
 
4512
- [CreateChannelConfigResponse](#CreateChannelConfigResponse)
4552
+ [CreateOrderResponse](#CreateOrderResponse)
4513
4553
 
4514
- Successfully updateShipmentStatus!
4554
+ Successfully created an order!
4515
4555
 
4516
4556
 
4517
4557
 
@@ -4520,13 +4560,7 @@ Successfully updateShipmentStatus!
4520
4560
  <summary><i>&nbsp; Example:</i></summary>
4521
4561
 
4522
4562
  ```json
4523
- {
4524
- "data": {
4525
- "acknowledged": true,
4526
- "is_upserted": false,
4527
- "is_inserted": false
4528
- }
4529
- }
4563
+
4530
4564
  ```
4531
4565
  </details>
4532
4566
 
@@ -4612,6 +4646,67 @@ Successfully created the config data
4612
4646
 
4613
4647
 
4614
4648
 
4649
+ ---
4650
+
4651
+
4652
+ ### createChannelConfig
4653
+
4654
+
4655
+
4656
+
4657
+ ```javascript
4658
+ // Promise
4659
+ const promise = client.order.createChannelConfig({ body : value });
4660
+
4661
+ // Async/Await
4662
+ const data = await client.order.createChannelConfig({ body : value });
4663
+ ```
4664
+
4665
+
4666
+
4667
+
4668
+
4669
+ | Argument | Type | Required | Description |
4670
+ | --------- | ----- | -------- | ----------- |
4671
+ | body | [CreateChannelConfigData](#CreateChannelConfigData) | yes | Request body |
4672
+
4673
+
4674
+ createChannelConfig
4675
+
4676
+ *Returned Response:*
4677
+
4678
+
4679
+
4680
+
4681
+ [CreateChannelConfigResponse](#CreateChannelConfigResponse)
4682
+
4683
+ Successfully updateShipmentStatus!
4684
+
4685
+
4686
+
4687
+
4688
+ <details>
4689
+ <summary><i>&nbsp; Example:</i></summary>
4690
+
4691
+ ```json
4692
+ {
4693
+ "data": {
4694
+ "acknowledged": true,
4695
+ "is_upserted": false,
4696
+ "is_inserted": false
4697
+ }
4698
+ }
4699
+ ```
4700
+ </details>
4701
+
4702
+
4703
+
4704
+
4705
+
4706
+
4707
+
4708
+
4709
+
4615
4710
  ---
4616
4711
 
4617
4712
 
@@ -4840,8 +4935,8 @@ Sms Sent successfully
4840
4935
 
4841
4936
  | Properties | Type | Nullable | Description |
4842
4937
  | ---------- | ---- | -------- | ----------- |
4843
- | text | string | yes | |
4844
4938
  | value | string | no | |
4939
+ | text | string | yes | |
4845
4940
  | name | string | no | |
4846
4941
 
4847
4942
  ---
@@ -4853,37 +4948,29 @@ Sms Sent successfully
4853
4948
 
4854
4949
  | Properties | Type | Nullable | Description |
4855
4950
  | ---------- | ---- | -------- | ----------- |
4951
+ | value | string | yes | |
4856
4952
  | text | string | yes | |
4857
4953
  | options | [[FilterInfoOption](#FilterInfoOption)] | no | |
4858
4954
  | type | string | yes | |
4859
- | value | string | yes | |
4860
-
4861
- ---
4862
-
4863
-
4864
-
4865
-
4866
- #### [ShipmentItemFulFillingStore](#ShipmentItemFulFillingStore)
4867
-
4868
- | Properties | Type | Nullable | Description |
4869
- | ---------- | ---- | -------- | ----------- |
4870
- | code | string | yes | |
4871
- | id | string | yes | |
4872
4955
 
4873
4956
  ---
4874
4957
 
4875
4958
 
4876
4959
 
4877
4960
 
4878
- #### [ShipmentStatus](#ShipmentStatus)
4961
+ #### [UserDataInfo](#UserDataInfo)
4879
4962
 
4880
4963
  | Properties | Type | Nullable | Description |
4881
4964
  | ---------- | ---- | -------- | ----------- |
4882
- | title | string | yes | |
4883
- | status | string | yes | |
4884
- | actual_status | string | yes | |
4885
- | ops_status | string | yes | |
4886
- | hex_code | string | yes | |
4965
+ | email | string | no | |
4966
+ | avis_user_id | string | no | |
4967
+ | is_anonymous_user | boolean | no | |
4968
+ | uid | number | no | |
4969
+ | name | string | no | |
4970
+ | last_name | string | no | |
4971
+ | gender | string | no | |
4972
+ | first_name | string | no | |
4973
+ | mobile | string | no | |
4887
4974
 
4888
4975
  ---
4889
4976
 
@@ -4894,31 +4981,20 @@ Sms Sent successfully
4894
4981
 
4895
4982
  | Properties | Type | Nullable | Description |
4896
4983
  | ---------- | ---- | -------- | ----------- |
4897
- | logo | string | yes | |
4898
4984
  | type | string | yes | |
4985
+ | logo | string | yes | |
4899
4986
 
4900
4987
  ---
4901
4988
 
4902
4989
 
4903
4990
 
4904
4991
 
4905
- #### [PlatformItem](#PlatformItem)
4992
+ #### [ShipmentItemFulFillingStore](#ShipmentItemFulFillingStore)
4906
4993
 
4907
4994
  | Properties | Type | Nullable | Description |
4908
4995
  | ---------- | ---- | -------- | ----------- |
4909
- | can_cancel | boolean | no | |
4910
- | l1_category | [string] | no | |
4911
- | name | string | no | |
4912
- | l3_category_name | string | no | |
4913
- | color | string | no | |
4914
- | size | string | no | |
4915
- | images | [string] | no | |
4916
- | l3_category | number | no | |
4917
- | id | number | no | |
4918
- | image | [string] | no | |
4919
- | can_return | boolean | no | |
4920
- | code | string | no | |
4921
- | department_id | number | no | |
4996
+ | id | string | yes | |
4997
+ | code | string | yes | |
4922
4998
 
4923
4999
  ---
4924
5000
 
@@ -4930,76 +5006,96 @@ Sms Sent successfully
4930
5006
  | Properties | Type | Nullable | Description |
4931
5007
  | ---------- | ---- | -------- | ----------- |
4932
5008
  | cashback | number | no | |
4933
- | coupon_value | number | no | |
4934
- | price_effective | number | no | |
4935
5009
  | amount_paid | number | no | |
4936
- | discount | number | no | |
4937
- | cashback_applied | number | no | |
5010
+ | amount_paid_roundoff | number | no | |
5011
+ | transfer_price | number | no | |
5012
+ | tax_collected_at_source | number | no | |
5013
+ | promotion_effective_discount | number | no | |
5014
+ | refund_amount | number | no | |
4938
5015
  | cod_charges | number | no | |
5016
+ | delivery_charge | number | no | |
5017
+ | price_effective | number | no | |
4939
5018
  | fynd_credits | number | no | |
4940
- | refund_amount | number | no | |
5019
+ | coupon_value | number | no | |
5020
+ | value_of_good | number | no | |
5021
+ | discount | number | no | |
4941
5022
  | price_marked | number | no | |
4942
- | tax_collected_at_source | number | no | |
4943
- | delivery_charge | number | no | |
4944
- | amount_paid_roundoff | number | no | |
4945
- | promotion_effective_discount | number | no | |
4946
5023
  | refund_credit | number | no | |
4947
- | value_of_good | number | no | |
5024
+ | cashback_applied | number | no | |
4948
5025
 
4949
5026
  ---
4950
5027
 
4951
5028
 
4952
5029
 
4953
5030
 
4954
- #### [GSTDetailsData](#GSTDetailsData)
5031
+ #### [ShipmentStatus](#ShipmentStatus)
4955
5032
 
4956
5033
  | Properties | Type | Nullable | Description |
4957
5034
  | ---------- | ---- | -------- | ----------- |
4958
- | gst_fee | number | yes | |
4959
- | tax_collected_at_source | number | yes | |
4960
- | value_of_good | number | yes | |
4961
- | gstin_code | string | yes | |
4962
- | brand_calculated_amount | number | yes | |
5035
+ | title | string | yes | |
5036
+ | status | string | yes | |
5037
+ | hex_code | string | yes | |
5038
+ | actual_status | string | yes | |
5039
+ | ops_status | string | yes | |
4963
5040
 
4964
5041
  ---
4965
5042
 
4966
5043
 
4967
5044
 
4968
5045
 
4969
- #### [BagUnit](#BagUnit)
5046
+ #### [GSTDetailsData](#GSTDetailsData)
4970
5047
 
4971
5048
  | Properties | Type | Nullable | Description |
4972
5049
  | ---------- | ---- | -------- | ----------- |
4973
- | can_cancel | boolean | no | |
4974
- | shipment_id | string | yes | |
4975
- | item | [PlatformItem](#PlatformItem) | no | |
4976
- | status | string | yes | |
4977
- | ordering_channel | string | yes | |
4978
- | total_shipment_bags | number | yes | |
4979
- | item_quantity | number | yes | |
4980
- | can_return | boolean | no | |
4981
- | prices | [Prices](#Prices) | no | |
4982
- | gst | [GSTDetailsData](#GSTDetailsData) | no | |
4983
- | bag_id | number | yes | |
5050
+ | gstin_code | string | yes | |
5051
+ | tax_collected_at_source | number | yes | |
5052
+ | gst_fee | number | yes | |
5053
+ | value_of_good | number | yes | |
5054
+ | brand_calculated_amount | number | yes | |
4984
5055
 
4985
5056
  ---
4986
5057
 
4987
5058
 
4988
5059
 
4989
5060
 
4990
- #### [UserDataInfo](#UserDataInfo)
5061
+ #### [PlatformItem](#PlatformItem)
4991
5062
 
4992
5063
  | Properties | Type | Nullable | Description |
4993
5064
  | ---------- | ---- | -------- | ----------- |
4994
- | last_name | string | no | |
4995
- | mobile | string | no | |
5065
+ | size | string | no | |
5066
+ | images | [string] | no | |
5067
+ | color | string | no | |
4996
5068
  | name | string | no | |
4997
- | is_anonymous_user | boolean | no | |
4998
- | uid | number | no | |
4999
- | avis_user_id | string | no | |
5000
- | email | string | no | |
5001
- | first_name | string | no | |
5002
- | gender | string | no | |
5069
+ | l3_category | number | no | |
5070
+ | id | number | no | |
5071
+ | l3_category_name | string | no | |
5072
+ | can_return | boolean | no | |
5073
+ | department_id | number | no | |
5074
+ | can_cancel | boolean | no | |
5075
+ | image | [string] | no | |
5076
+ | l1_category | [string] | no | |
5077
+ | code | string | no | |
5078
+
5079
+ ---
5080
+
5081
+
5082
+
5083
+
5084
+ #### [BagUnit](#BagUnit)
5085
+
5086
+ | Properties | Type | Nullable | Description |
5087
+ | ---------- | ---- | -------- | ----------- |
5088
+ | shipment_id | string | yes | |
5089
+ | status | string | yes | |
5090
+ | gst | [GSTDetailsData](#GSTDetailsData) | no | |
5091
+ | total_shipment_bags | number | yes | |
5092
+ | can_return | boolean | no | |
5093
+ | prices | [Prices](#Prices) | no | |
5094
+ | can_cancel | boolean | no | |
5095
+ | item | [PlatformItem](#PlatformItem) | no | |
5096
+ | bag_id | number | yes | |
5097
+ | ordering_channel | string | yes | |
5098
+ | item_quantity | number | yes | |
5003
5099
 
5004
5100
  ---
5005
5101
 
@@ -5010,22 +5106,23 @@ Sms Sent successfully
5010
5106
 
5011
5107
  | Properties | Type | Nullable | Description |
5012
5108
  | ---------- | ---- | -------- | ----------- |
5013
- | fulfilling_store | [ShipmentItemFulFillingStore](#ShipmentItemFulFillingStore) | no | |
5014
- | application | string | no | |
5015
- | shipment_status | [ShipmentStatus](#ShipmentStatus) | no | |
5109
+ | user | [UserDataInfo](#UserDataInfo) | no | |
5016
5110
  | payment_mode_info | [PaymentModeInfo](#PaymentModeInfo) | no | |
5017
- | total_bags_count | number | yes | |
5018
- | channel | string | no | |
5019
- | bags | [[BagUnit](#BagUnit)] | no | |
5020
5111
  | created_at | string | yes | |
5021
- | total_shipments_in_order | number | yes | |
5022
- | sla | string | no | |
5023
- | shipment_created_at | number | yes | |
5112
+ | application | string | no | |
5113
+ | shipment_id | string | no | |
5114
+ | fulfilling_store | [ShipmentItemFulFillingStore](#ShipmentItemFulFillingStore) | no | |
5115
+ | shipment_created_at | string | yes | |
5116
+ | total_bags_count | number | yes | |
5024
5117
  | id | string | yes | |
5025
- | user | [UserDataInfo](#UserDataInfo) | no | |
5026
- | fulfilling_centre | string | yes | |
5118
+ | channel | string | no | |
5027
5119
  | prices | [Prices](#Prices) | no | |
5120
+ | fulfilling_centre | string | yes | |
5028
5121
  | payment_methods | string | no | |
5122
+ | total_shipments_in_order | number | yes | |
5123
+ | shipment_status | [ShipmentStatus](#ShipmentStatus) | no | |
5124
+ | bags | [[BagUnit](#BagUnit)] | no | |
5125
+ | sla | string | no | |
5029
5126
 
5030
5127
  ---
5031
5128
 
@@ -5036,10 +5133,10 @@ Sms Sent successfully
5036
5133
 
5037
5134
  | Properties | Type | Nullable | Description |
5038
5135
  | ---------- | ---- | -------- | ----------- |
5039
- | page | string | no | |
5136
+ | applied_filters | string | no | |
5040
5137
  | filters | [[FiltersInfo](#FiltersInfo)] | no | |
5138
+ | page | string | no | |
5041
5139
  | items | [[ShipmentItem](#ShipmentItem)] | no | |
5042
- | applied_filters | string | no | |
5043
5140
 
5044
5141
  ---
5045
5142
 
@@ -5050,150 +5147,157 @@ Sms Sent successfully
5050
5147
 
5051
5148
  | Properties | Type | Nullable | Description |
5052
5149
  | ---------- | ---- | -------- | ----------- |
5053
- | message | string | no | |
5054
5150
  | success | boolean | no | |
5151
+ | message | string | no | |
5055
5152
 
5056
5153
  ---
5057
5154
 
5058
5155
 
5059
5156
 
5060
5157
 
5061
- #### [FulfillingStore](#FulfillingStore)
5158
+ #### [BagStateMapper](#BagStateMapper)
5062
5159
 
5063
5160
  | Properties | Type | Nullable | Description |
5064
5161
  | ---------- | ---- | -------- | ----------- |
5065
- | state | string | yes | |
5066
- | phone | string | yes | |
5067
- | store_name | string | yes | |
5068
- | pincode | string | yes | |
5069
- | fulfillment_channel | string | yes | |
5070
- | city | string | yes | |
5071
- | address | string | yes | |
5072
- | id | number | yes | |
5073
- | meta | string | yes | |
5074
- | contact_person | string | yes | |
5075
- | code | string | yes | |
5076
- | country | string | yes | |
5162
+ | state_type | string | yes | |
5163
+ | is_active | boolean | no | |
5164
+ | app_state_name | string | no | |
5165
+ | name | string | yes | |
5166
+ | bs_id | number | yes | |
5167
+ | display_name | string | yes | |
5168
+ | notify_customer | boolean | no | |
5169
+ | journey_type | string | yes | |
5170
+ | app_facing | boolean | no | |
5171
+ | app_display_name | string | no | |
5077
5172
 
5078
5173
  ---
5079
5174
 
5080
5175
 
5081
5176
 
5082
5177
 
5083
- #### [BagConfigs](#BagConfigs)
5178
+ #### [BagStatusHistory](#BagStatusHistory)
5084
5179
 
5085
5180
  | Properties | Type | Nullable | Description |
5086
5181
  | ---------- | ---- | -------- | ----------- |
5087
- | is_returnable | boolean | yes | |
5088
- | is_active | boolean | yes | |
5089
- | is_customer_return_allowed | boolean | yes | |
5090
- | enable_tracking | boolean | yes | |
5091
- | can_be_cancelled | boolean | yes | |
5092
- | allow_force_return | boolean | yes | |
5182
+ | bag_state_mapper | [BagStateMapper](#BagStateMapper) | no | |
5183
+ | updated_at | string | no | |
5184
+ | state_type | string | no | |
5185
+ | created_at | string | no | |
5186
+ | delivery_partner_id | number | no | |
5187
+ | shipment_id | string | no | |
5188
+ | delivery_awb_number | string | no | |
5189
+ | reasons | [string] | no | |
5190
+ | status | string | yes | |
5191
+ | bsh_id | number | no | |
5192
+ | forward | boolean | no | |
5193
+ | display_name | string | no | |
5194
+ | state_id | number | no | |
5195
+ | store_id | number | no | |
5196
+ | bag_id | number | no | |
5197
+ | kafka_sync | boolean | no | |
5198
+ | app_display_name | string | no | |
5093
5199
 
5094
5200
  ---
5095
5201
 
5096
5202
 
5097
5203
 
5098
5204
 
5099
- #### [DiscountRules](#DiscountRules)
5205
+ #### [TrackingList](#TrackingList)
5100
5206
 
5101
5207
  | Properties | Type | Nullable | Description |
5102
5208
  | ---------- | ---- | -------- | ----------- |
5103
- | type | string | no | |
5104
- | value | number | no | |
5209
+ | text | string | yes | |
5210
+ | status | string | yes | |
5211
+ | time | string | no | |
5212
+ | is_passed | boolean | no | |
5213
+ | is_current | boolean | no | |
5105
5214
 
5106
5215
  ---
5107
5216
 
5108
5217
 
5109
5218
 
5110
5219
 
5111
- #### [ItemCriterias](#ItemCriterias)
5220
+ #### [DPDetailsData](#DPDetailsData)
5112
5221
 
5113
5222
  | Properties | Type | Nullable | Description |
5114
5223
  | ---------- | ---- | -------- | ----------- |
5115
- | item_brand | [number] | no | |
5224
+ | pincode | string | no | |
5225
+ | name | string | no | |
5226
+ | id | number | no | |
5227
+ | gst_tag | string | no | |
5228
+ | country | string | no | |
5229
+ | track_url | string | no | |
5230
+ | eway_bill_id | string | no | |
5231
+ | awb_no | string | no | |
5116
5232
 
5117
5233
  ---
5118
5234
 
5119
5235
 
5120
5236
 
5121
5237
 
5122
- #### [BuyRules](#BuyRules)
5238
+ #### [Dimensions](#Dimensions)
5123
5239
 
5124
5240
  | Properties | Type | Nullable | Description |
5125
5241
  | ---------- | ---- | -------- | ----------- |
5126
- | cart_conditions | string | no | |
5127
- | item_criteria | [ItemCriterias](#ItemCriterias) | no | |
5242
+ | width | number | no | |
5243
+ | length | number | no | |
5244
+ | is_default | boolean | no | |
5245
+ | height | number | no | |
5246
+ | unit | string | no | |
5128
5247
 
5129
5248
  ---
5130
5249
 
5131
5250
 
5132
5251
 
5133
5252
 
5134
- #### [AppliedPromos](#AppliedPromos)
5253
+ #### [Meta](#Meta)
5135
5254
 
5136
5255
  | Properties | Type | Nullable | Description |
5137
5256
  | ---------- | ---- | -------- | ----------- |
5138
- | promotion_name | string | no | |
5139
- | promotion_type | string | no | |
5140
- | amount | number | no | |
5141
- | mrp_promotion | boolean | no | |
5142
- | discount_rules | [[DiscountRules](#DiscountRules)] | no | |
5143
- | promo_id | string | no | |
5144
- | article_quantity | number | no | |
5145
- | buy_rules | [[BuyRules](#BuyRules)] | no | |
5257
+ | dimension | [Dimensions](#Dimensions) | no | |
5146
5258
 
5147
5259
  ---
5148
5260
 
5149
5261
 
5150
5262
 
5151
5263
 
5152
- #### [BagGST](#BagGST)
5264
+ #### [ShipmentPayments](#ShipmentPayments)
5153
5265
 
5154
5266
  | Properties | Type | Nullable | Description |
5155
5267
  | ---------- | ---- | -------- | ----------- |
5156
- | gst_fee | number | no | |
5157
- | is_default_hsn_code | boolean | no | |
5158
- | brand_calculated_amount | number | no | |
5159
- | gst_tag | string | no | |
5160
- | gst_tax_percentage | number | no | |
5161
- | gstin_code | string | no | |
5162
- | hsn_code | string | no | |
5163
- | value_of_good | number | no | |
5268
+ | mode | string | no | |
5269
+ | logo | string | no | |
5270
+ | source | string | no | |
5164
5271
 
5165
5272
  ---
5166
5273
 
5167
5274
 
5168
5275
 
5169
5276
 
5170
- #### [OrderBagArticle](#OrderBagArticle)
5277
+ #### [InvoiceInfo](#InvoiceInfo)
5171
5278
 
5172
5279
  | Properties | Type | Nullable | Description |
5173
5280
  | ---------- | ---- | -------- | ----------- |
5174
- | uid | string | no | |
5175
- | identifiers | string | no | |
5176
- | return_config | string | no | |
5281
+ | updated_date | string | no | |
5282
+ | invoice_url | string | no | |
5283
+ | label_url | string | no | |
5284
+ | credit_note_id | string | no | |
5285
+ | store_invoice_id | string | no | |
5177
5286
 
5178
5287
  ---
5179
5288
 
5180
5289
 
5181
5290
 
5182
5291
 
5183
- #### [BagStateMapper](#BagStateMapper)
5292
+ #### [ShipmentStatusData](#ShipmentStatusData)
5184
5293
 
5185
5294
  | Properties | Type | Nullable | Description |
5186
5295
  | ---------- | ---- | -------- | ----------- |
5187
- | app_display_name | string | no | |
5188
- | name | string | yes | |
5189
- | display_name | string | yes | |
5190
- | app_state_name | string | no | |
5191
- | bs_id | number | yes | |
5192
- | is_active | boolean | no | |
5193
- | app_facing | boolean | no | |
5194
- | state_type | string | yes | |
5195
- | journey_type | string | yes | |
5196
- | notify_customer | boolean | no | |
5296
+ | created_at | string | no | |
5297
+ | shipment_id | string | no | |
5298
+ | status | string | no | |
5299
+ | bag_list | [string] | no | |
5300
+ | id | number | no | |
5197
5301
 
5198
5302
  ---
5199
5303
 
@@ -5204,19 +5308,19 @@ Sms Sent successfully
5204
5308
 
5205
5309
  | Properties | Type | Nullable | Description |
5206
5310
  | ---------- | ---- | -------- | ----------- |
5207
- | current_status_id | number | yes | |
5208
- | store_id | number | no | |
5209
5311
  | bag_state_mapper | [BagStateMapper](#BagStateMapper) | no | |
5210
- | kafka_sync | boolean | no | |
5211
- | shipment_id | string | no | |
5212
- | state_id | number | no | |
5213
- | status | string | no | |
5214
- | delivery_awb_number | string | no | |
5215
5312
  | state_type | string | no | |
5313
+ | created_at | string | no | |
5314
+ | updated_at | string | no | |
5315
+ | delivery_awb_number | string | no | |
5216
5316
  | delivery_partner_id | number | no | |
5217
- | updated_at | number | no | |
5317
+ | shipment_id | string | no | |
5318
+ | status | string | no | |
5319
+ | current_status_id | number | yes | |
5320
+ | state_id | number | no | |
5321
+ | store_id | number | no | |
5218
5322
  | bag_id | number | no | |
5219
- | created_at | string | no | |
5323
+ | kafka_sync | boolean | no | |
5220
5324
 
5221
5325
  ---
5222
5326
 
@@ -5238,32 +5342,32 @@ Sms Sent successfully
5238
5342
 
5239
5343
  | Properties | Type | Nullable | Description |
5240
5344
  | ---------- | ---- | -------- | ----------- |
5241
- | price_effective | number | yes | |
5242
5345
  | item_name | string | yes | |
5243
- | cashback | number | yes | |
5244
- | discount | number | yes | |
5245
- | amount_paid | number | yes | |
5246
- | identifiers | [Identifier](#Identifier) | yes | |
5247
5346
  | cod_charges | number | yes | |
5248
- | promotion_effective_discount | number | yes | |
5249
- | refund_credit | number | yes | |
5250
- | brand_calculated_amount | number | yes | |
5251
- | gst_fee | number | yes | |
5252
- | size | string | yes | |
5253
- | coupon_effective_discount | number | yes | |
5254
- | tax_collected_at_source | number | no | |
5255
- | delivery_charge | number | yes | |
5347
+ | fynd_credits | number | yes | |
5256
5348
  | added_to_fynd_cash | boolean | yes | |
5349
+ | hsn_code | string | yes | |
5350
+ | gst_tax_percentage | number | yes | |
5351
+ | gst_fee | number | yes | |
5352
+ | brand_calculated_amount | number | yes | |
5257
5353
  | coupon_value | number | yes | |
5258
5354
  | cashback_applied | number | yes | |
5259
- | fynd_credits | number | yes | |
5260
- | total_units | number | yes | |
5261
- | price_marked | number | yes | |
5262
- | gst_tag | string | yes | |
5263
- | gst_tax_percentage | number | yes | |
5355
+ | amount_paid | number | yes | |
5264
5356
  | amount_paid_roundoff | number | no | |
5357
+ | promotion_effective_discount | number | yes | |
5358
+ | delivery_charge | number | yes | |
5359
+ | gst_tag | string | yes | |
5360
+ | discount | number | yes | |
5361
+ | price_marked | number | yes | |
5362
+ | refund_credit | number | yes | |
5363
+ | coupon_effective_discount | number | yes | |
5364
+ | size | string | yes | |
5365
+ | cashback | number | yes | |
5265
5366
  | transfer_price | number | yes | |
5266
- | hsn_code | string | yes | |
5367
+ | tax_collected_at_source | number | no | |
5368
+ | identifiers | [Identifier](#Identifier) | yes | |
5369
+ | total_units | number | yes | |
5370
+ | price_effective | number | yes | |
5267
5371
  | value_of_good | number | yes | |
5268
5372
 
5269
5373
  ---
@@ -5271,1276 +5375,1217 @@ Sms Sent successfully
5271
5375
 
5272
5376
 
5273
5377
 
5274
- #### [PlatformDeliveryAddress](#PlatformDeliveryAddress)
5378
+ #### [BagGST](#BagGST)
5275
5379
 
5276
5380
  | Properties | Type | Nullable | Description |
5277
5381
  | ---------- | ---- | -------- | ----------- |
5278
- | address1 | string | no | |
5279
- | landmark | string | no | |
5280
- | state | string | no | |
5281
- | address_type | string | no | |
5282
- | address2 | string | no | |
5283
- | phone | string | no | |
5284
- | longitude | number | no | |
5285
- | area | string | no | |
5286
- | pincode | string | no | |
5287
- | email | string | no | |
5288
- | version | string | no | |
5289
- | city | string | no | |
5290
- | created_at | string | no | |
5291
- | latitude | number | no | |
5292
- | address_category | string | no | |
5293
- | updated_at | string | no | |
5294
- | contact_person | string | no | |
5295
- | country | string | no | |
5382
+ | gstin_code | string | no | |
5383
+ | hsn_code | string | no | |
5384
+ | gst_tax_percentage | number | no | |
5385
+ | gst_fee | number | no | |
5386
+ | gst_tag | string | no | |
5387
+ | value_of_good | number | no | |
5388
+ | brand_calculated_amount | number | no | |
5389
+ | is_default_hsn_code | boolean | no | |
5296
5390
 
5297
5391
  ---
5298
5392
 
5299
5393
 
5300
5394
 
5301
5395
 
5302
- #### [OrderBrandName](#OrderBrandName)
5396
+ #### [OrderBagArticle](#OrderBagArticle)
5303
5397
 
5304
5398
  | Properties | Type | Nullable | Description |
5305
5399
  | ---------- | ---- | -------- | ----------- |
5306
- | logo | string | yes | |
5307
- | modified_on | string | no | |
5308
- | brand_name | string | yes | |
5309
- | id | number | yes | |
5310
- | company | string | no | |
5311
- | created_on | string | yes | |
5400
+ | return_config | string | no | |
5401
+ | uid | string | no | |
5402
+ | identifiers | string | no | |
5312
5403
 
5313
5404
  ---
5314
5405
 
5315
5406
 
5316
5407
 
5317
5408
 
5318
- #### [OrderBags](#OrderBags)
5409
+ #### [PlatformDeliveryAddress](#PlatformDeliveryAddress)
5319
5410
 
5320
5411
  | Properties | Type | Nullable | Description |
5321
5412
  | ---------- | ---- | -------- | ----------- |
5322
- | line_number | number | no | |
5323
- | parent_promo_bags | string | no | |
5324
- | bag_configs | [BagConfigs](#BagConfigs) | no | |
5325
- | identifier | string | no | |
5326
- | seller_identifier | string | no | |
5327
- | applied_promos | [[AppliedPromos](#AppliedPromos)] | no | |
5328
- | quantity | number | no | |
5329
- | bag_id | number | yes | |
5330
- | gst_details | [BagGST](#BagGST) | no | |
5331
- | entity_type | string | no | |
5332
- | display_name | string | no | |
5333
- | article | [OrderBagArticle](#OrderBagArticle) | no | |
5334
- | current_status | [CurrentStatus](#CurrentStatus) | no | |
5335
- | financial_breakup | [FinancialBreakup](#FinancialBreakup) | no | |
5336
- | can_cancel | boolean | no | |
5337
- | item | [PlatformItem](#PlatformItem) | no | |
5338
- | delivery_address | [PlatformDeliveryAddress](#PlatformDeliveryAddress) | no | |
5339
- | can_return | boolean | no | |
5340
- | brand | [OrderBrandName](#OrderBrandName) | no | |
5341
- | prices | [Prices](#Prices) | no | |
5413
+ | latitude | number | no | |
5414
+ | phone | string | no | |
5415
+ | created_at | string | no | |
5416
+ | email | string | no | |
5417
+ | updated_at | string | no | |
5418
+ | pincode | string | no | |
5419
+ | version | string | no | |
5420
+ | address1 | string | no | |
5421
+ | contact_person | string | no | |
5422
+ | landmark | string | no | |
5423
+ | address2 | string | no | |
5424
+ | area | string | no | |
5425
+ | state | string | no | |
5426
+ | country | string | no | |
5427
+ | address_type | string | no | |
5428
+ | longitude | number | no | |
5429
+ | address_category | string | no | |
5430
+ | city | string | no | |
5342
5431
 
5343
5432
  ---
5344
5433
 
5345
5434
 
5346
5435
 
5347
5436
 
5348
- #### [ShipmentPayments](#ShipmentPayments)
5437
+ #### [BagConfigs](#BagConfigs)
5349
5438
 
5350
5439
  | Properties | Type | Nullable | Description |
5351
5440
  | ---------- | ---- | -------- | ----------- |
5352
- | source | string | no | |
5353
- | logo | string | no | |
5354
- | mode | string | no | |
5441
+ | is_active | boolean | yes | |
5442
+ | is_customer_return_allowed | boolean | yes | |
5443
+ | can_be_cancelled | boolean | yes | |
5444
+ | allow_force_return | boolean | yes | |
5445
+ | is_returnable | boolean | yes | |
5446
+ | enable_tracking | boolean | yes | |
5355
5447
 
5356
5448
  ---
5357
5449
 
5358
5450
 
5359
5451
 
5360
5452
 
5361
- #### [UserDetailsData](#UserDetailsData)
5453
+ #### [ItemCriterias](#ItemCriterias)
5362
5454
 
5363
5455
  | Properties | Type | Nullable | Description |
5364
5456
  | ---------- | ---- | -------- | ----------- |
5365
- | state | string | yes | |
5366
- | name | string | yes | |
5367
- | phone | string | yes | |
5368
- | pincode | string | yes | |
5369
- | email | string | no | |
5370
- | city | string | yes | |
5371
- | address | string | yes | |
5372
- | country | string | yes | |
5457
+ | item_brand | [number] | no | |
5373
5458
 
5374
5459
  ---
5375
5460
 
5376
5461
 
5377
5462
 
5378
5463
 
5379
- #### [BagStatusHistory](#BagStatusHistory)
5464
+ #### [BuyRules](#BuyRules)
5380
5465
 
5381
5466
  | Properties | Type | Nullable | Description |
5382
5467
  | ---------- | ---- | -------- | ----------- |
5383
- | app_display_name | string | no | |
5384
- | store_id | number | no | |
5385
- | bag_state_mapper | [BagStateMapper](#BagStateMapper) | no | |
5386
- | forward | boolean | no | |
5387
- | kafka_sync | boolean | no | |
5388
- | shipment_id | string | no | |
5389
- | display_name | string | no | |
5390
- | state_id | number | no | |
5391
- | status | string | yes | |
5392
- | delivery_awb_number | string | no | |
5393
- | reasons | [string] | no | |
5394
- | state_type | string | no | |
5395
- | delivery_partner_id | number | no | |
5396
- | bsh_id | number | no | |
5397
- | updated_at | string | no | |
5398
- | bag_id | number | no | |
5399
- | created_at | string | no | |
5468
+ | item_criteria | [ItemCriterias](#ItemCriterias) | no | |
5469
+ | cart_conditions | string | no | |
5400
5470
 
5401
5471
  ---
5402
5472
 
5403
5473
 
5404
5474
 
5405
5475
 
5406
- #### [OrderDetailsData](#OrderDetailsData)
5476
+ #### [DiscountRules](#DiscountRules)
5407
5477
 
5408
5478
  | Properties | Type | Nullable | Description |
5409
5479
  | ---------- | ---- | -------- | ----------- |
5410
- | fynd_order_id | string | yes | |
5411
- | affiliate_id | string | no | |
5412
- | ordering_channel_logo | string | no | |
5413
- | tax_details | string | no | |
5414
- | cod_charges | string | no | |
5415
- | order_date | string | no | |
5416
- | ordering_channel | string | no | |
5417
- | source | string | no | |
5418
- | order_value | string | no | |
5480
+ | value | number | no | |
5481
+ | type | string | no | |
5419
5482
 
5420
5483
  ---
5421
5484
 
5422
5485
 
5423
5486
 
5424
5487
 
5425
- #### [TrackingList](#TrackingList)
5488
+ #### [AppliedPromos](#AppliedPromos)
5426
5489
 
5427
5490
  | Properties | Type | Nullable | Description |
5428
5491
  | ---------- | ---- | -------- | ----------- |
5429
- | text | string | yes | |
5430
- | is_current | boolean | no | |
5431
- | status | string | yes | |
5432
- | time | string | no | |
5433
- | is_passed | boolean | no | |
5492
+ | promotion_type | string | no | |
5493
+ | promotion_name | string | no | |
5494
+ | promo_id | string | no | |
5495
+ | article_quantity | number | no | |
5496
+ | mrp_promotion | boolean | no | |
5497
+ | amount | number | no | |
5498
+ | buy_rules | [[BuyRules](#BuyRules)] | no | |
5499
+ | discount_rules | [[DiscountRules](#DiscountRules)] | no | |
5434
5500
 
5435
5501
  ---
5436
5502
 
5437
5503
 
5438
5504
 
5439
5505
 
5440
- #### [DPDetailsData](#DPDetailsData)
5506
+ #### [OrderBrandName](#OrderBrandName)
5441
5507
 
5442
5508
  | Properties | Type | Nullable | Description |
5443
5509
  | ---------- | ---- | -------- | ----------- |
5444
- | awb_no | string | no | |
5445
- | name | string | no | |
5446
- | eway_bill_id | string | no | |
5447
- | pincode | string | no | |
5448
- | id | number | no | |
5449
- | track_url | string | no | |
5450
- | gst_tag | string | no | |
5451
- | country | string | no | |
5510
+ | created_on | string | yes | |
5511
+ | modified_on | string | no | |
5512
+ | id | number | yes | |
5513
+ | brand_name | string | yes | |
5514
+ | company | string | yes | |
5515
+ | logo | string | yes | |
5452
5516
 
5453
5517
  ---
5454
5518
 
5455
5519
 
5456
5520
 
5457
5521
 
5458
- #### [ShipmentStatusData](#ShipmentStatusData)
5522
+ #### [OrderBags](#OrderBags)
5459
5523
 
5460
5524
  | Properties | Type | Nullable | Description |
5461
5525
  | ---------- | ---- | -------- | ----------- |
5462
- | shipment_id | string | no | |
5463
- | bag_list | [string] | no | |
5464
- | status | string | no | |
5465
- | id | number | no | |
5466
- | created_at | string | no | |
5526
+ | display_name | string | no | |
5527
+ | current_status | [CurrentStatus](#CurrentStatus) | no | |
5528
+ | financial_breakup | [FinancialBreakup](#FinancialBreakup) | no | |
5529
+ | gst_details | [BagGST](#BagGST) | no | |
5530
+ | seller_identifier | string | no | |
5531
+ | article | [OrderBagArticle](#OrderBagArticle) | no | |
5532
+ | can_return | boolean | no | |
5533
+ | delivery_address | [PlatformDeliveryAddress](#PlatformDeliveryAddress) | no | |
5534
+ | bag_configs | [BagConfigs](#BagConfigs) | no | |
5535
+ | quantity | number | no | |
5536
+ | applied_promos | [[AppliedPromos](#AppliedPromos)] | no | |
5537
+ | parent_promo_bags | string | no | |
5538
+ | can_cancel | boolean | no | |
5539
+ | brand | [OrderBrandName](#OrderBrandName) | no | |
5540
+ | entity_type | string | no | |
5541
+ | prices | [Prices](#Prices) | no | |
5542
+ | line_number | number | no | |
5543
+ | item | [PlatformItem](#PlatformItem) | no | |
5544
+ | bag_id | number | yes | |
5545
+ | identifier | string | no | |
5467
5546
 
5468
5547
  ---
5469
5548
 
5470
5549
 
5471
5550
 
5472
5551
 
5473
- #### [ShipmentInfoResponse](#ShipmentInfoResponse)
5552
+ #### [OrderingStoreDetails](#OrderingStoreDetails)
5474
5553
 
5475
5554
  | Properties | Type | Nullable | Description |
5476
5555
  | ---------- | ---- | -------- | ----------- |
5477
- | pay_button | string | no | |
5478
- | order_status | string | yes | |
5479
- | fulfilling_store | [FulfillingStore](#FulfillingStore) | no | |
5480
- | order_created_time | string | no | |
5481
- | bags | [[OrderBags](#OrderBags)] | no | |
5482
- | is_packaging_order | boolean | yes | |
5483
- | is_not_fynd_source | boolean | yes | |
5484
- | payments | [ShipmentPayments](#ShipmentPayments) | no | |
5485
- | user_id | string | yes | |
5486
- | tracking_url | string | yes | |
5487
- | forward_order_status | [string] | no | |
5488
- | credit_note_id | string | yes | |
5489
- | coupon | string | no | |
5490
- | affiliate_shipment_id | string | yes | |
5491
- | is_fynd_coupon | boolean | yes | |
5492
- | is_invoiced | boolean | yes | |
5493
- | refund_text | string | no | |
5494
- | payment_mode | string | no | |
5495
- | due_date | string | no | |
5496
- | delivery_details | [UserDetailsData](#UserDetailsData) | no | |
5497
- | priority_text | string | no | |
5498
- | gst_details | [GSTDetailsData](#GSTDetailsData) | no | |
5499
- | forward_tracking_list | [string] | no | |
5500
- | platform_logo | boolean | yes | |
5501
- | forward_shipment_status | [string] | no | |
5502
- | lock_status | string | yes | |
5503
- | shipment_status | string | no | |
5504
- | bag_status_history | [[BagStatusHistory](#BagStatusHistory)] | no | |
5505
- | picked_date | string | no | |
5506
- | order | [OrderDetailsData](#OrderDetailsData) | no | |
5507
- | secured_delivery_flag | string | no | |
5508
- | current_shipment_status | string | yes | |
5509
- | user_agent | string | no | |
5510
- | email_id | string | yes | |
5511
- | billing_details | [UserDetailsData](#UserDetailsData) | no | |
5512
- | escalation | string | no | |
5513
- | ordering_store | string | yes | |
5514
- | enable_dp_tracking | boolean | no | |
5515
- | can_cancel | boolean | no | |
5516
- | is_fynd_store | string | no | |
5517
- | status_progress | number | yes | |
5518
- | packaging_type | string | no | |
5519
- | refund_details | string | no | |
5520
- | delivery_slot | string | no | |
5521
- | vertical | string | no | |
5522
- | shipment_images | [string] | no | |
5523
- | can_break | string | yes | |
5524
- | mid | string | no | |
5525
- | items | [string] | yes | |
5526
- | enable_tracking | boolean | no | |
5527
- | tracking_list | [[TrackingList](#TrackingList)] | no | |
5528
- | shipment_quantity | number | no | |
5529
- | order_type | string | yes | |
5530
- | can_return | boolean | no | |
5531
- | is_pdsr | string | no | |
5532
- | invoice | string | yes | |
5533
- | bank_data | string | no | |
5534
- | fyndstore_emp | string | yes | |
5535
- | kirana_store_id | string | no | |
5536
- | total_items | number | no | |
5537
- | shipment_id | string | yes | |
5538
- | delivery_status | [string] | yes | |
5539
- | beneficiary_details | boolean | no | |
5540
- | user_info | string | no | |
5541
- | child_nodes | [string] | no | |
5542
- | custom_meta | [string] | no | |
5543
- | dp_details | [DPDetailsData](#DPDetailsData) | no | |
5544
- | status | [ShipmentStatusData](#ShipmentStatusData) | no | |
5545
- | total_bags | number | no | |
5546
- | company | string | yes | |
5547
- | journey_type | string | no | |
5548
- | go_green | boolean | no | |
5549
- | replacement_details | string | no | |
5550
- | prices | [Prices](#Prices) | no | |
5551
- | operational_status | string | no | |
5556
+ | phone | string | yes | |
5557
+ | meta | string | yes | |
5558
+ | pincode | string | yes | |
5559
+ | address | string | yes | |
5560
+ | contact_person | string | yes | |
5561
+ | ordering_store_id | number | yes | |
5562
+ | country | string | yes | |
5563
+ | state | string | yes | |
5564
+ | store_name | string | yes | |
5565
+ | city | string | yes | |
5566
+ | code | string | yes | |
5552
5567
 
5553
5568
  ---
5554
5569
 
5555
5570
 
5556
5571
 
5557
5572
 
5558
- #### [OrderingStoreDetails](#OrderingStoreDetails)
5573
+ #### [UserDetailsData](#UserDetailsData)
5559
5574
 
5560
5575
  | Properties | Type | Nullable | Description |
5561
5576
  | ---------- | ---- | -------- | ----------- |
5562
- | state | string | yes | |
5563
5577
  | phone | string | yes | |
5564
- | code | string | yes | |
5565
- | store_name | string | yes | |
5578
+ | email | string | no | |
5566
5579
  | pincode | string | yes | |
5567
- | city | string | yes | |
5568
5580
  | address | string | yes | |
5581
+ | name | string | yes | |
5582
+ | country | string | yes | |
5583
+ | state | string | yes | |
5584
+ | city | string | yes | |
5585
+
5586
+ ---
5587
+
5588
+
5589
+
5590
+
5591
+ #### [FulfillingStore](#FulfillingStore)
5592
+
5593
+ | Properties | Type | Nullable | Description |
5594
+ | ---------- | ---- | -------- | ----------- |
5595
+ | phone | string | yes | |
5569
5596
  | meta | string | yes | |
5597
+ | pincode | string | yes | |
5598
+ | fulfillment_channel | string | yes | |
5599
+ | address | string | yes | |
5570
5600
  | contact_person | string | yes | |
5571
- | ordering_store_id | number | yes | |
5601
+ | id | number | yes | |
5572
5602
  | country | string | yes | |
5603
+ | state | string | yes | |
5604
+ | store_name | string | yes | |
5605
+ | city | string | yes | |
5606
+ | code | string | yes | |
5573
5607
 
5574
5608
  ---
5575
5609
 
5576
5610
 
5577
5611
 
5578
5612
 
5579
- #### [PlatformShipment](#PlatformShipment)
5613
+ #### [ShipmentTimeStamp](#ShipmentTimeStamp)
5580
5614
 
5581
5615
  | Properties | Type | Nullable | Description |
5582
5616
  | ---------- | ---- | -------- | ----------- |
5583
- | fulfilling_store | [FulfillingStore](#FulfillingStore) | no | |
5584
- | bags | [[OrderBags](#OrderBags)] | no | |
5585
- | payments | [ShipmentPayments](#ShipmentPayments) | no | |
5586
- | coupon | string | no | |
5587
- | payment_mode | string | no | |
5588
- | delivery_details | [UserDetailsData](#UserDetailsData) | no | |
5589
- | priority_text | string | no | |
5590
- | gst_details | [GSTDetailsData](#GSTDetailsData) | no | |
5591
- | platform_logo | string | no | |
5592
- | shipment_status | string | no | |
5593
- | bag_status_history | [[BagStatusHistory](#BagStatusHistory)] | no | |
5594
- | picked_date | string | no | |
5595
- | order | [OrderDetailsData](#OrderDetailsData) | no | |
5596
- | user_agent | string | no | |
5597
- | billing_details | [UserDetailsData](#UserDetailsData) | no | |
5598
- | ordering_store | [OrderingStoreDetails](#OrderingStoreDetails) | no | |
5599
- | enable_dp_tracking | boolean | no | |
5600
- | packaging_type | string | no | |
5601
- | delivery_slot | string | no | |
5602
- | vertical | string | no | |
5603
- | shipment_images | [string] | no | |
5604
- | tracking_list | [[TrackingList](#TrackingList)] | no | |
5605
- | shipment_quantity | number | no | |
5606
- | total_items | number | no | |
5607
- | shipment_id | string | yes | |
5608
- | custom_meta | [string] | no | |
5609
- | dp_details | [DPDetailsData](#DPDetailsData) | no | |
5610
- | status | [ShipmentStatusData](#ShipmentStatusData) | no | |
5611
- | total_bags | number | no | |
5612
- | journey_type | string | no | |
5613
- | prices | [Prices](#Prices) | no | |
5614
- | operational_status | string | no | |
5617
+ | t_min | string | no | |
5618
+ | t_max | string | no | |
5615
5619
 
5616
5620
  ---
5617
5621
 
5618
5622
 
5619
5623
 
5620
5624
 
5621
- #### [OrderMeta](#OrderMeta)
5625
+ #### [LockData](#LockData)
5622
5626
 
5623
5627
  | Properties | Type | Nullable | Description |
5624
5628
  | ---------- | ---- | -------- | ----------- |
5625
- | comment | string | no | |
5626
- | ordering_store | number | no | |
5627
- | mongo_cart_id | number | no | |
5628
- | order_child_entities | [string] | no | |
5629
- | customer_note | string | no | |
5630
- | order_tags | [string] | no | |
5631
- | staff | string | no | |
5632
- | order_platform | string | no | |
5633
- | currency_symbol | string | no | |
5634
- | files | [string] | no | |
5635
- | employee_id | number | no | |
5636
- | payment_type | string | no | |
5637
- | order_type | string | no | |
5638
- | cart_id | number | no | |
5639
- | extra_meta | string | no | |
5629
+ | locked | boolean | no | |
5630
+ | lock_message | string | no | |
5631
+ | mto | boolean | no | |
5640
5632
 
5641
5633
  ---
5642
5634
 
5643
5635
 
5644
5636
 
5645
5637
 
5646
- #### [OrderDict](#OrderDict)
5638
+ #### [DebugInfo](#DebugInfo)
5647
5639
 
5648
5640
  | Properties | Type | Nullable | Description |
5649
5641
  | ---------- | ---- | -------- | ----------- |
5650
- | fynd_order_id | string | yes | |
5651
- | tax_details | string | no | |
5652
- | order_date | string | yes | |
5653
- | meta | [OrderMeta](#OrderMeta) | no | |
5654
- | prices | [Prices](#Prices) | no | |
5655
- | payment_methods | string | no | |
5642
+ | stormbreaker_uuid | string | no | |
5656
5643
 
5657
5644
  ---
5658
5645
 
5659
5646
 
5660
5647
 
5661
5648
 
5662
- #### [ShipmentDetailsResponse](#ShipmentDetailsResponse)
5649
+ #### [EInvoice](#EInvoice)
5663
5650
 
5664
5651
  | Properties | Type | Nullable | Description |
5665
5652
  | ---------- | ---- | -------- | ----------- |
5666
- | shipments | [[PlatformShipment](#PlatformShipment)] | no | |
5667
- | success | boolean | yes | |
5668
- | order | [OrderDict](#OrderDict) | no | |
5653
+ | error_code | string | no | |
5654
+ | irn | string | no | |
5655
+ | acknowledge_no | number | no | |
5656
+ | error_message | string | no | |
5657
+ | acknowledge_date | string | no | |
5658
+ | signed_invoice | string | no | |
5659
+ | signed_qr_code | string | no | |
5669
5660
 
5670
5661
  ---
5671
5662
 
5672
5663
 
5673
5664
 
5674
5665
 
5675
- #### [SubLane](#SubLane)
5666
+ #### [EinvoiceInfo](#EinvoiceInfo)
5676
5667
 
5677
5668
  | Properties | Type | Nullable | Description |
5678
5669
  | ---------- | ---- | -------- | ----------- |
5679
- | text | string | no | |
5680
- | total_items | number | no | |
5681
- | value | string | no | |
5682
- | index | number | no | |
5683
- | actions | [string] | no | |
5670
+ | credit_note | [EInvoice](#EInvoice) | no | |
5671
+ | invoice | [EInvoice](#EInvoice) | no | |
5684
5672
 
5685
5673
  ---
5686
5674
 
5687
5675
 
5688
5676
 
5689
5677
 
5690
- #### [SuperLane](#SuperLane)
5678
+ #### [BuyerDetails](#BuyerDetails)
5691
5679
 
5692
5680
  | Properties | Type | Nullable | Description |
5693
5681
  | ---------- | ---- | -------- | ----------- |
5694
- | text | string | yes | |
5695
- | options | [[SubLane](#SubLane)] | no | |
5696
- | total_items | number | no | |
5697
- | value | string | yes | |
5682
+ | pincode | number | yes | |
5683
+ | address | string | yes | |
5684
+ | name | string | yes | |
5685
+ | ajio_site_id | string | no | |
5686
+ | gstin | string | yes | |
5687
+ | state | string | yes | |
5688
+ | city | string | yes | |
5689
+
5690
+ ---
5691
+
5692
+
5693
+
5694
+
5695
+ #### [Formatted](#Formatted)
5696
+
5697
+ | Properties | Type | Nullable | Description |
5698
+ | ---------- | ---- | -------- | ----------- |
5699
+ | f_min | string | no | |
5700
+ | f_max | string | no | |
5698
5701
 
5699
5702
  ---
5700
5703
 
5701
5704
 
5702
5705
 
5703
5706
 
5704
- #### [LaneConfigResponse](#LaneConfigResponse)
5707
+ #### [ShipmentMeta](#ShipmentMeta)
5705
5708
 
5706
5709
  | Properties | Type | Nullable | Description |
5707
5710
  | ---------- | ---- | -------- | ----------- |
5708
- | super_lanes | [[SuperLane](#SuperLane)] | no | |
5711
+ | dp_name | string | no | |
5712
+ | order_type | string | no | |
5713
+ | return_awb_number | string | no | |
5714
+ | ewaybill_info | string | no | |
5715
+ | packaging_name | string | no | |
5716
+ | return_details | string | no | |
5717
+ | same_store_available | boolean | yes | |
5718
+ | due_date | string | no | |
5719
+ | marketplace_store_id | string | no | |
5720
+ | return_affiliate_shipment_id | string | no | |
5721
+ | dp_options | string | no | |
5722
+ | timestamp | [ShipmentTimeStamp](#ShipmentTimeStamp) | no | |
5723
+ | auto_trigger_dp_assignment_acf | boolean | yes | |
5724
+ | forward_affiliate_order_id | string | no | |
5725
+ | dp_id | string | no | |
5726
+ | shipment_weight | number | no | |
5727
+ | box_type | string | no | |
5728
+ | return_affiliate_order_id | string | no | |
5729
+ | assign_dp_from_sb | boolean | no | |
5730
+ | weight | number | yes | |
5731
+ | bag_weight | string | no | |
5732
+ | lock_data | [LockData](#LockData) | no | |
5733
+ | b2c_buyer_details | string | no | |
5734
+ | debug_info | [DebugInfo](#DebugInfo) | no | |
5735
+ | awb_number | string | no | |
5736
+ | po_number | string | no | |
5737
+ | return_store_node | number | no | |
5738
+ | store_invoice_updated_date | string | no | |
5739
+ | shipment_volumetric_weight | number | no | |
5740
+ | einvoice_info | [EinvoiceInfo](#EinvoiceInfo) | no | |
5741
+ | b2b_buyer_details | [BuyerDetails](#BuyerDetails) | no | |
5742
+ | forward_affiliate_shipment_id | string | no | |
5743
+ | external | string | no | |
5744
+ | formatted | [Formatted](#Formatted) | no | |
5745
+ | fulfilment_priority_text | string | no | |
5746
+ | dp_sort_key | string | no | |
5709
5747
 
5710
5748
  ---
5711
5749
 
5712
5750
 
5713
5751
 
5714
5752
 
5715
- #### [Page](#Page)
5753
+ #### [PDFLinks](#PDFLinks)
5716
5754
 
5717
5755
  | Properties | Type | Nullable | Description |
5718
5756
  | ---------- | ---- | -------- | ----------- |
5719
- | has_previous | boolean | no | |
5720
- | size | number | no | |
5721
- | type | string | no | |
5722
- | total | number | no | |
5723
- | has_next | boolean | no | |
5724
- | current | number | no | |
5757
+ | label_a4 | string | no | |
5758
+ | invoice | string | no | |
5759
+ | b2b | string | no | |
5760
+ | label | string | no | |
5761
+ | invoice_type | string | yes | |
5762
+ | po_invoice | string | no | |
5763
+ | label_a6 | string | no | |
5764
+ | credit_note_url | string | no | |
5765
+ | delivery_challan_a4 | string | no | |
5766
+ | invoice_pos | string | no | |
5767
+ | label_type | string | yes | |
5768
+ | label_pos | string | no | |
5769
+ | invoice_a4 | string | no | |
5770
+ | invoice_a6 | string | no | |
5725
5771
 
5726
5772
  ---
5727
5773
 
5728
5774
 
5729
5775
 
5730
5776
 
5731
- #### [PlatformChannel](#PlatformChannel)
5777
+ #### [AffiliateMeta](#AffiliateMeta)
5732
5778
 
5733
5779
  | Properties | Type | Nullable | Description |
5734
5780
  | ---------- | ---- | -------- | ----------- |
5735
- | logo | string | no | |
5736
- | name | string | no | |
5781
+ | size_level_total_qty | number | no | |
5782
+ | order_item_id | string | no | |
5783
+ | loyalty_discount | number | no | |
5784
+ | is_priority | boolean | no | |
5785
+ | quantity | number | no | |
5786
+ | box_type | string | no | |
5787
+ | employee_discount | number | no | |
5788
+ | channel_shipment_id | string | no | |
5789
+ | due_date | string | no | |
5790
+ | channel_order_id | string | no | |
5791
+ | coupon_code | string | no | |
5737
5792
 
5738
5793
  ---
5739
5794
 
5740
5795
 
5741
5796
 
5742
5797
 
5743
- #### [PlatformBreakupValues](#PlatformBreakupValues)
5798
+ #### [AffiliateDetails](#AffiliateDetails)
5744
5799
 
5745
5800
  | Properties | Type | Nullable | Description |
5746
5801
  | ---------- | ---- | -------- | ----------- |
5747
- | display | string | no | |
5748
- | value | string | no | |
5749
- | name | string | no | |
5802
+ | affiliate_store_id | string | yes | |
5803
+ | ad_id | string | no | |
5804
+ | company_affiliate_tag | string | no | |
5805
+ | shipment_meta | [ShipmentMeta](#ShipmentMeta) | yes | |
5806
+ | affiliate_bag_id | string | yes | |
5807
+ | pdf_links | [PDFLinks](#PDFLinks) | no | |
5808
+ | affiliate_meta | [AffiliateMeta](#AffiliateMeta) | yes | |
5809
+ | affiliate_id | string | no | |
5810
+ | affiliate_order_id | string | yes | |
5811
+ | affiliate_shipment_id | string | yes | |
5750
5812
 
5751
5813
  ---
5752
5814
 
5753
5815
 
5754
5816
 
5755
5817
 
5756
- #### [PlatformOrderItems](#PlatformOrderItems)
5818
+ #### [OrderDetailsData](#OrderDetailsData)
5757
5819
 
5758
5820
  | Properties | Type | Nullable | Description |
5759
5821
  | ---------- | ---- | -------- | ----------- |
5760
- | payment_mode | string | no | |
5761
- | shipments | [[PlatformShipment](#PlatformShipment)] | no | |
5762
- | user_info | [UserDataInfo](#UserDataInfo) | no | |
5763
- | order_created_time | string | no | |
5764
- | channel | [PlatformChannel](#PlatformChannel) | no | |
5765
- | total_order_value | number | no | |
5766
- | order_id | string | no | |
5767
- | breakup_values | [[PlatformBreakupValues](#PlatformBreakupValues)] | no | |
5768
- | meta | string | no | |
5769
- | order_value | number | no | |
5822
+ | order_date | string | no | |
5823
+ | order_value | string | no | |
5824
+ | cod_charges | string | no | |
5825
+ | ordering_channel_logo | string | no | |
5826
+ | affiliate_id | string | no | |
5827
+ | source | string | no | |
5828
+ | tax_details | string | no | |
5829
+ | fynd_order_id | string | yes | |
5830
+ | ordering_channel | string | no | |
5770
5831
 
5771
5832
  ---
5772
5833
 
5773
5834
 
5774
5835
 
5775
5836
 
5776
- #### [OrderListingResponse](#OrderListingResponse)
5837
+ #### [PlatformShipment](#PlatformShipment)
5777
5838
 
5778
5839
  | Properties | Type | Nullable | Description |
5779
5840
  | ---------- | ---- | -------- | ----------- |
5780
- | lane | string | no | |
5781
- | page | [Page](#Page) | no | |
5782
- | total_count | number | no | |
5783
- | success | boolean | no | |
5784
- | message | string | no | |
5785
- | items | [[PlatformOrderItems](#PlatformOrderItems)] | no | |
5841
+ | shipment_id | string | yes | |
5842
+ | custom_meta | [string] | no | |
5843
+ | shipment_quantity | number | no | |
5844
+ | bag_status_history | [[BagStatusHistory](#BagStatusHistory)] | no | |
5845
+ | tracking_list | [[TrackingList](#TrackingList)] | no | |
5846
+ | dp_details | [DPDetailsData](#DPDetailsData) | no | |
5847
+ | vertical | string | no | |
5848
+ | priority_text | string | no | |
5849
+ | gst_details | [GSTDetailsData](#GSTDetailsData) | no | |
5850
+ | meta | [Meta](#Meta) | no | |
5851
+ | payments | [ShipmentPayments](#ShipmentPayments) | no | |
5852
+ | delivery_slot | string | no | |
5853
+ | invoice | [InvoiceInfo](#InvoiceInfo) | no | |
5854
+ | picked_date | string | no | |
5855
+ | status | [ShipmentStatusData](#ShipmentStatusData) | no | |
5856
+ | platform_logo | string | no | |
5857
+ | shipment_status | string | no | |
5858
+ | bags | [[OrderBags](#OrderBags)] | no | |
5859
+ | ordering_store | [OrderingStoreDetails](#OrderingStoreDetails) | no | |
5860
+ | delivery_details | [UserDetailsData](#UserDetailsData) | no | |
5861
+ | shipment_images | [string] | no | |
5862
+ | user_agent | string | no | |
5863
+ | fulfilling_store | [FulfillingStore](#FulfillingStore) | no | |
5864
+ | lock_status | boolean | no | |
5865
+ | operational_status | string | no | |
5866
+ | affiliate_details | [AffiliateDetails](#AffiliateDetails) | no | |
5867
+ | packaging_type | string | no | |
5868
+ | payment_methods | string | no | |
5869
+ | journey_type | string | no | |
5870
+ | payment_mode | string | no | |
5871
+ | total_items | number | no | |
5872
+ | forward_shipment_id | string | no | |
5873
+ | order | [OrderDetailsData](#OrderDetailsData) | no | |
5874
+ | total_bags | number | no | |
5875
+ | enable_dp_tracking | boolean | no | |
5876
+ | prices | [Prices](#Prices) | no | |
5877
+ | billing_details | [UserDetailsData](#UserDetailsData) | no | |
5878
+ | fulfilment_priority | number | no | |
5879
+ | invoice_id | string | no | |
5880
+ | coupon | string | no | |
5786
5881
 
5787
5882
  ---
5788
5883
 
5789
5884
 
5790
5885
 
5791
5886
 
5792
- #### [Options](#Options)
5887
+ #### [ShipmentInfoResponse](#ShipmentInfoResponse)
5793
5888
 
5794
5889
  | Properties | Type | Nullable | Description |
5795
5890
  | ---------- | ---- | -------- | ----------- |
5796
- | text | string | no | |
5797
- | value | number | no | |
5891
+ | shipments | [[PlatformShipment](#PlatformShipment)] | no | |
5892
+ | success | boolean | yes | |
5893
+ | message | string | no | |
5798
5894
 
5799
5895
  ---
5800
5896
 
5801
5897
 
5802
5898
 
5803
5899
 
5804
- #### [MetricsCount](#MetricsCount)
5900
+ #### [OrderMeta](#OrderMeta)
5805
5901
 
5806
5902
  | Properties | Type | Nullable | Description |
5807
5903
  | ---------- | ---- | -------- | ----------- |
5808
- | options | [[Options](#Options)] | no | |
5809
- | value | number | yes | |
5810
- | key | string | yes | |
5811
- | text | string | yes | |
5904
+ | customer_note | string | no | |
5905
+ | files | [string] | no | |
5906
+ | payment_type | string | no | |
5907
+ | order_child_entities | [string] | no | |
5908
+ | currency_symbol | string | no | |
5909
+ | order_platform | string | no | |
5910
+ | order_tags | [string] | no | |
5911
+ | order_type | string | no | |
5912
+ | ordering_store | number | no | |
5913
+ | comment | string | no | |
5914
+ | cart_id | number | no | |
5915
+ | extra_meta | string | no | |
5916
+ | employee_id | number | no | |
5917
+ | staff | string | no | |
5918
+ | mongo_cart_id | number | no | |
5812
5919
 
5813
5920
  ---
5814
5921
 
5815
5922
 
5816
5923
 
5817
5924
 
5818
- #### [MetricCountResponse](#MetricCountResponse)
5925
+ #### [OrderDict](#OrderDict)
5819
5926
 
5820
5927
  | Properties | Type | Nullable | Description |
5821
5928
  | ---------- | ---- | -------- | ----------- |
5822
- | items | [[MetricsCount](#MetricsCount)] | no | |
5929
+ | meta | [OrderMeta](#OrderMeta) | no | |
5930
+ | fynd_order_id | string | yes | |
5931
+ | prices | [Prices](#Prices) | no | |
5932
+ | payment_methods | string | no | |
5933
+ | tax_details | string | no | |
5934
+ | order_date | string | yes | |
5823
5935
 
5824
5936
  ---
5825
5937
 
5826
5938
 
5827
5939
 
5828
5940
 
5829
- #### [PlatformTrack](#PlatformTrack)
5941
+ #### [ShipmentDetailsResponse](#ShipmentDetailsResponse)
5830
5942
 
5831
5943
  | Properties | Type | Nullable | Description |
5832
5944
  | ---------- | ---- | -------- | ----------- |
5833
- | awb | string | no | |
5834
- | updated_time | string | no | |
5835
- | account_name | string | no | |
5836
- | status | string | no | |
5837
- | last_location_recieved_at | string | no | |
5838
- | raw_status | string | no | |
5839
- | meta | string | no | |
5840
- | reason | string | no | |
5841
- | updated_at | string | no | |
5842
- | shipment_type | string | no | |
5945
+ | success | boolean | yes | |
5946
+ | shipments | [[PlatformShipment](#PlatformShipment)] | no | |
5947
+ | order | [OrderDict](#OrderDict) | no | |
5843
5948
 
5844
5949
  ---
5845
5950
 
5846
5951
 
5847
5952
 
5848
5953
 
5849
- #### [PlatformShipmentTrack](#PlatformShipmentTrack)
5954
+ #### [SubLane](#SubLane)
5850
5955
 
5851
5956
  | Properties | Type | Nullable | Description |
5852
5957
  | ---------- | ---- | -------- | ----------- |
5853
- | meta | string | no | |
5854
- | results | [[PlatformTrack](#PlatformTrack)] | no | |
5958
+ | text | string | no | |
5959
+ | index | number | no | |
5960
+ | total_items | number | no | |
5961
+ | actions | [string] | no | |
5962
+ | value | string | no | |
5855
5963
 
5856
5964
  ---
5857
5965
 
5858
5966
 
5859
5967
 
5860
5968
 
5861
- #### [FiltersResponse](#FiltersResponse)
5969
+ #### [SuperLane](#SuperLane)
5862
5970
 
5863
5971
  | Properties | Type | Nullable | Description |
5864
5972
  | ---------- | ---- | -------- | ----------- |
5865
- | advance | [string] | no | |
5973
+ | value | string | yes | |
5974
+ | text | string | yes | |
5975
+ | options | [[SubLane](#SubLane)] | no | |
5976
+ | total_items | number | no | |
5866
5977
 
5867
5978
  ---
5868
5979
 
5869
5980
 
5870
5981
 
5871
5982
 
5872
- #### [Success](#Success)
5983
+ #### [LaneConfigResponse](#LaneConfigResponse)
5873
5984
 
5874
5985
  | Properties | Type | Nullable | Description |
5875
5986
  | ---------- | ---- | -------- | ----------- |
5876
- | message | string | no | |
5877
- | success | boolean | no | |
5987
+ | super_lanes | [[SuperLane](#SuperLane)] | no | |
5878
5988
 
5879
5989
  ---
5880
5990
 
5881
5991
 
5882
5992
 
5883
5993
 
5884
- #### [OmsReports](#OmsReports)
5994
+ #### [Page](#Page)
5885
5995
 
5886
5996
  | Properties | Type | Nullable | Description |
5887
5997
  | ---------- | ---- | -------- | ----------- |
5888
- | request_details | string | no | |
5889
- | display_name | string | no | |
5890
- | report_id | string | no | |
5891
- | status | string | no | |
5892
- | s3_key | string | no | |
5893
- | report_name | string | no | |
5894
- | report_type | string | no | |
5895
- | report_created_at | string | no | |
5896
- | report_requested_at | string | no | |
5998
+ | has_previous | boolean | no | |
5999
+ | total | number | no | |
6000
+ | current | number | no | |
6001
+ | type | string | no | |
6002
+ | has_next | boolean | no | |
6003
+ | size | number | no | |
5897
6004
 
5898
6005
  ---
5899
6006
 
5900
6007
 
5901
6008
 
5902
6009
 
5903
- #### [JioCodeUpsertDataSet](#JioCodeUpsertDataSet)
6010
+ #### [PlatformBreakupValues](#PlatformBreakupValues)
5904
6011
 
5905
- | Properties | Type | Nullable | Description |
5906
- | ---------- | ---- | -------- | ----------- |
5907
- | article_id | string | no | |
5908
- | item_id | string | no | |
5909
- | jio_code | string | no | |
5910
- | company_id | string | no | |
6012
+ | Properties | Type | Nullable | Description |
6013
+ | ---------- | ---- | -------- | ----------- |
6014
+ | value | string | no | |
6015
+ | name | string | no | |
6016
+ | display | string | no | |
5911
6017
 
5912
6018
  ---
5913
6019
 
5914
6020
 
5915
6021
 
5916
6022
 
5917
- #### [JioCodeUpsertPayload](#JioCodeUpsertPayload)
6023
+ #### [PlatformChannel](#PlatformChannel)
5918
6024
 
5919
6025
  | Properties | Type | Nullable | Description |
5920
6026
  | ---------- | ---- | -------- | ----------- |
5921
- | data | [[JioCodeUpsertDataSet](#JioCodeUpsertDataSet)] | no | |
6027
+ | name | string | no | |
6028
+ | logo | string | no | |
5922
6029
 
5923
6030
  ---
5924
6031
 
5925
6032
 
5926
6033
 
5927
6034
 
5928
- #### [NestedErrorSchemaDataSet](#NestedErrorSchemaDataSet)
6035
+ #### [PlatformOrderItems](#PlatformOrderItems)
5929
6036
 
5930
6037
  | Properties | Type | Nullable | Description |
5931
6038
  | ---------- | ---- | -------- | ----------- |
5932
- | message | string | no | |
5933
- | type | string | no | |
5934
- | value | string | no | |
6039
+ | meta | string | no | |
6040
+ | payment_mode | string | no | |
6041
+ | shipments | [[PlatformShipment](#PlatformShipment)] | no | |
6042
+ | breakup_values | [[PlatformBreakupValues](#PlatformBreakupValues)] | no | |
6043
+ | order_created_time | string | no | |
6044
+ | order_value | number | no | |
6045
+ | channel | [PlatformChannel](#PlatformChannel) | no | |
6046
+ | total_order_value | number | no | |
6047
+ | user_info | [UserDataInfo](#UserDataInfo) | no | |
6048
+ | order_id | string | no | |
5935
6049
 
5936
6050
  ---
5937
6051
 
5938
6052
 
5939
6053
 
5940
6054
 
5941
- #### [JioCodeUpsertResponse](#JioCodeUpsertResponse)
6055
+ #### [OrderListingResponse](#OrderListingResponse)
5942
6056
 
5943
6057
  | Properties | Type | Nullable | Description |
5944
6058
  | ---------- | ---- | -------- | ----------- |
5945
- | trace_id | string | no | |
5946
- | identifier | string | no | |
6059
+ | total_count | number | no | |
6060
+ | page | [Page](#Page) | no | |
6061
+ | message | string | no | |
5947
6062
  | success | boolean | no | |
5948
- | error | [[NestedErrorSchemaDataSet](#NestedErrorSchemaDataSet)] | no | |
5949
- | data | [string] | no | |
6063
+ | lane | string | no | |
6064
+ | items | [[PlatformOrderItems](#PlatformOrderItems)] | no | |
5950
6065
 
5951
6066
  ---
5952
6067
 
5953
6068
 
5954
6069
 
5955
6070
 
5956
- #### [BulkInvoicingResponse](#BulkInvoicingResponse)
6071
+ #### [Options](#Options)
5957
6072
 
5958
6073
  | Properties | Type | Nullable | Description |
5959
6074
  | ---------- | ---- | -------- | ----------- |
5960
- | message | string | no | |
5961
- | success | boolean | yes | |
6075
+ | value | number | no | |
6076
+ | text | string | no | |
5962
6077
 
5963
6078
  ---
5964
6079
 
5965
6080
 
5966
6081
 
5967
6082
 
5968
- #### [BulkInvoiceLabelResponse](#BulkInvoiceLabelResponse)
6083
+ #### [MetricsCount](#MetricsCount)
5969
6084
 
5970
6085
  | Properties | Type | Nullable | Description |
5971
6086
  | ---------- | ---- | -------- | ----------- |
5972
- | batch_id | string | yes | |
5973
- | store_id | string | no | |
5974
- | store_code | string | no | |
5975
- | invoice_status | string | no | |
5976
- | store_name | string | no | |
5977
- | company_id | string | no | |
5978
- | data | string | no | |
5979
- | invoice | string | no | |
5980
- | label | string | no | |
5981
- | do_invoice_label_generated | boolean | yes | |
6087
+ | value | number | yes | |
6088
+ | text | string | yes | |
6089
+ | options | [[Options](#Options)] | no | |
6090
+ | key | string | yes | |
5982
6091
 
5983
6092
  ---
5984
6093
 
5985
6094
 
5986
6095
 
5987
6096
 
5988
- #### [URL](#URL)
6097
+ #### [MetricCountResponse](#MetricCountResponse)
5989
6098
 
5990
6099
  | Properties | Type | Nullable | Description |
5991
6100
  | ---------- | ---- | -------- | ----------- |
5992
- | url | string | no | |
6101
+ | items | [[MetricsCount](#MetricsCount)] | no | |
5993
6102
 
5994
6103
  ---
5995
6104
 
5996
6105
 
5997
6106
 
5998
6107
 
5999
- #### [FileUploadResponse](#FileUploadResponse)
6108
+ #### [PlatformTrack](#PlatformTrack)
6000
6109
 
6001
6110
  | Properties | Type | Nullable | Description |
6002
6111
  | ---------- | ---- | -------- | ----------- |
6003
- | expiry | number | no | |
6004
- | url | string | no | |
6112
+ | meta | string | no | |
6113
+ | updated_at | string | no | |
6114
+ | status | string | no | |
6115
+ | last_location_recieved_at | string | no | |
6116
+ | raw_status | string | no | |
6117
+ | updated_time | string | no | |
6118
+ | account_name | string | no | |
6119
+ | awb | string | no | |
6120
+ | reason | string | no | |
6121
+ | shipment_type | string | no | |
6005
6122
 
6006
6123
  ---
6007
6124
 
6008
6125
 
6009
6126
 
6010
6127
 
6011
- #### [FileResponse](#FileResponse)
6128
+ #### [PlatformShipmentTrack](#PlatformShipmentTrack)
6012
6129
 
6013
6130
  | Properties | Type | Nullable | Description |
6014
6131
  | ---------- | ---- | -------- | ----------- |
6015
- | operation | string | no | |
6016
- | method | string | no | |
6017
- | cdn | [URL](#URL) | no | |
6018
- | size | number | no | |
6019
- | file_path | string | no | |
6020
- | tags | [string] | no | |
6021
- | content_type | string | no | |
6022
- | upload | [FileUploadResponse](#FileUploadResponse) | no | |
6023
- | namespace | string | no | |
6024
- | file_name | string | no | |
6132
+ | meta | string | no | |
6133
+ | results | [[PlatformTrack](#PlatformTrack)] | no | |
6025
6134
 
6026
6135
  ---
6027
6136
 
6028
6137
 
6029
6138
 
6030
6139
 
6031
- #### [BulkListingPage](#BulkListingPage)
6140
+ #### [FiltersResponse](#FiltersResponse)
6032
6141
 
6033
6142
  | Properties | Type | Nullable | Description |
6034
6143
  | ---------- | ---- | -------- | ----------- |
6035
- | has_previous | boolean | no | |
6036
- | size | number | no | |
6037
- | type | string | no | |
6038
- | total | number | no | |
6039
- | has_next | boolean | no | |
6040
- | current | number | no | |
6144
+ | advance | [string] | no | |
6041
6145
 
6042
6146
  ---
6043
6147
 
6044
6148
 
6045
6149
 
6046
6150
 
6047
- #### [bulkListingData](#bulkListingData)
6151
+ #### [Success](#Success)
6048
6152
 
6049
6153
  | Properties | Type | Nullable | Description |
6050
6154
  | ---------- | ---- | -------- | ----------- |
6051
- | batch_id | string | no | |
6052
- | store_id | number | no | |
6053
- | store_code | string | no | |
6054
- | failed | number | no | |
6055
- | store_name | string | no | |
6056
- | user_id | string | no | |
6057
- | excel_url | string | no | |
6058
- | file_name | string | no | |
6059
- | processing_shipments | [string] | no | |
6060
- | successful | number | no | |
6061
- | id | string | no | |
6062
- | user_name | string | no | |
6063
- | successful_shipments | [string] | no | |
6064
- | uploaded_on | string | no | |
6065
- | company_id | number | no | |
6066
- | status | string | no | |
6067
- | total | number | no | |
6068
- | failed_shipments | [string] | no | |
6069
- | processing | number | no | |
6155
+ | success | boolean | no | |
6156
+ | message | string | no | |
6070
6157
 
6071
6158
  ---
6072
6159
 
6073
6160
 
6074
6161
 
6075
6162
 
6076
- #### [BulkListingResponse](#BulkListingResponse)
6163
+ #### [OmsReports](#OmsReports)
6077
6164
 
6078
6165
  | Properties | Type | Nullable | Description |
6079
6166
  | ---------- | ---- | -------- | ----------- |
6080
- | error | string | no | |
6081
- | page | [BulkListingPage](#BulkListingPage) | no | |
6082
- | success | boolean | no | |
6083
- | data | [[bulkListingData](#bulkListingData)] | no | |
6167
+ | report_created_at | string | no | |
6168
+ | status | string | no | |
6169
+ | report_name | string | no | |
6170
+ | request_details | string | no | |
6171
+ | report_id | string | no | |
6172
+ | display_name | string | no | |
6173
+ | report_requested_at | string | no | |
6174
+ | s3_key | string | no | |
6175
+ | report_type | string | no | |
6084
6176
 
6085
6177
  ---
6086
6178
 
6087
6179
 
6088
6180
 
6089
6181
 
6090
- #### [QuestionSet](#QuestionSet)
6182
+ #### [JioCodeUpsertDataSet](#JioCodeUpsertDataSet)
6091
6183
 
6092
6184
  | Properties | Type | Nullable | Description |
6093
6185
  | ---------- | ---- | -------- | ----------- |
6094
- | display_name | string | no | |
6095
- | id | number | no | |
6186
+ | company_id | string | no | |
6187
+ | item_id | string | no | |
6188
+ | article_id | string | no | |
6189
+ | jio_code | string | no | |
6096
6190
 
6097
6191
  ---
6098
6192
 
6099
6193
 
6100
6194
 
6101
6195
 
6102
- #### [Reason](#Reason)
6196
+ #### [JioCodeUpsertPayload](#JioCodeUpsertPayload)
6103
6197
 
6104
6198
  | Properties | Type | Nullable | Description |
6105
6199
  | ---------- | ---- | -------- | ----------- |
6106
- | display_name | string | no | |
6107
- | qc_type | [string] | no | |
6108
- | question_set | [[QuestionSet](#QuestionSet)] | no | |
6109
- | id | number | no | |
6200
+ | data | [[JioCodeUpsertDataSet](#JioCodeUpsertDataSet)] | no | |
6110
6201
 
6111
6202
  ---
6112
6203
 
6113
6204
 
6114
6205
 
6115
6206
 
6116
- #### [PlatformShipmentReasonsResponse](#PlatformShipmentReasonsResponse)
6207
+ #### [NestedErrorSchemaDataSet](#NestedErrorSchemaDataSet)
6117
6208
 
6118
6209
  | Properties | Type | Nullable | Description |
6119
6210
  | ---------- | ---- | -------- | ----------- |
6120
- | reasons | [[Reason](#Reason)] | no | |
6121
- | success | boolean | no | |
6211
+ | value | string | no | |
6212
+ | type | string | no | |
6213
+ | message | string | no | |
6122
6214
 
6123
6215
  ---
6124
6216
 
6125
6217
 
6126
6218
 
6127
6219
 
6128
- #### [BulkActionPayload](#BulkActionPayload)
6220
+ #### [JioCodeUpsertResponse](#JioCodeUpsertResponse)
6129
6221
 
6130
6222
  | Properties | Type | Nullable | Description |
6131
6223
  | ---------- | ---- | -------- | ----------- |
6132
- | url | string | yes | |
6224
+ | data | [string] | no | |
6225
+ | success | boolean | no | |
6226
+ | trace_id | string | no | |
6227
+ | identifier | string | no | |
6228
+ | error | [[NestedErrorSchemaDataSet](#NestedErrorSchemaDataSet)] | no | |
6133
6229
 
6134
6230
  ---
6135
6231
 
6136
6232
 
6137
6233
 
6138
6234
 
6139
- #### [BulkActionResponse](#BulkActionResponse)
6235
+ #### [BulkInvoicingResponse](#BulkInvoicingResponse)
6140
6236
 
6141
6237
  | Properties | Type | Nullable | Description |
6142
6238
  | ---------- | ---- | -------- | ----------- |
6239
+ | success | boolean | yes | |
6143
6240
  | message | string | no | |
6144
- | status | boolean | no | |
6145
6241
 
6146
6242
  ---
6147
6243
 
6148
6244
 
6149
6245
 
6150
6246
 
6151
- #### [BulkActionDetailsDataField](#BulkActionDetailsDataField)
6247
+ #### [BulkInvoiceLabelResponse](#BulkInvoiceLabelResponse)
6152
6248
 
6153
6249
  | Properties | Type | Nullable | Description |
6154
6250
  | ---------- | ---- | -------- | ----------- |
6155
- | total_shipments_count | number | no | |
6156
- | batch_id | string | no | |
6157
- | successful_shipment_ids | [string] | no | |
6251
+ | invoice | string | no | |
6252
+ | data | string | no | |
6253
+ | label | string | no | |
6158
6254
  | company_id | string | no | |
6159
- | successful_shipments_count | number | no | |
6160
- | failed_shipments_count | number | no | |
6161
- | processing_shipments_count | number | no | |
6255
+ | store_id | string | no | |
6256
+ | store_code | string | no | |
6257
+ | do_invoice_label_generated | boolean | yes | |
6258
+ | store_name | string | no | |
6259
+ | batch_id | string | yes | |
6260
+ | invoice_status | string | no | |
6162
6261
 
6163
6262
  ---
6164
6263
 
6165
6264
 
6166
6265
 
6167
6266
 
6168
- #### [BulkActionDetailsResponse](#BulkActionDetailsResponse)
6267
+ #### [FileUploadResponse](#FileUploadResponse)
6169
6268
 
6170
6269
  | Properties | Type | Nullable | Description |
6171
6270
  | ---------- | ---- | -------- | ----------- |
6172
- | failed_records | [string] | no | |
6173
- | uploaded_on | string | no | |
6174
- | success | string | no | |
6175
- | status | boolean | no | |
6176
- | error | [string] | no | |
6177
- | uploaded_by | string | no | |
6178
- | user_id | string | no | |
6179
- | data | [[BulkActionDetailsDataField](#BulkActionDetailsDataField)] | no | |
6180
- | message | string | no | |
6271
+ | url | string | no | |
6272
+ | expiry | number | no | |
6181
6273
 
6182
6274
  ---
6183
6275
 
6184
6276
 
6185
6277
 
6186
6278
 
6187
- #### [AffiliateMeta](#AffiliateMeta)
6279
+ #### [URL](#URL)
6188
6280
 
6189
6281
  | Properties | Type | Nullable | Description |
6190
6282
  | ---------- | ---- | -------- | ----------- |
6191
- | box_type | string | no | |
6192
- | order_item_id | string | no | |
6193
- | coupon_code | string | no | |
6194
- | employee_discount | number | no | |
6195
- | channel_shipment_id | string | no | |
6196
- | is_priority | boolean | no | |
6197
- | channel_order_id | string | no | |
6198
- | loyalty_discount | number | no | |
6199
- | quantity | number | no | |
6200
- | due_date | string | no | |
6201
- | size_level_total_qty | number | no | |
6283
+ | url | string | no | |
6202
6284
 
6203
6285
  ---
6204
6286
 
6205
6287
 
6206
6288
 
6207
6289
 
6208
- #### [AffiliateBagDetails](#AffiliateBagDetails)
6290
+ #### [FileResponse](#FileResponse)
6209
6291
 
6210
6292
  | Properties | Type | Nullable | Description |
6211
6293
  | ---------- | ---- | -------- | ----------- |
6212
- | affiliate_order_id | string | yes | |
6213
- | employee_discount | number | no | |
6214
- | loyalty_discount | number | no | |
6215
- | affiliate_bag_id | string | yes | |
6216
- | affiliate_meta | [AffiliateMeta](#AffiliateMeta) | yes | |
6294
+ | upload | [FileUploadResponse](#FileUploadResponse) | no | |
6295
+ | method | string | no | |
6296
+ | tags | [string] | no | |
6297
+ | file_path | string | no | |
6298
+ | file_name | string | no | |
6299
+ | operation | string | no | |
6300
+ | cdn | [URL](#URL) | no | |
6301
+ | namespace | string | no | |
6302
+ | content_type | string | no | |
6303
+ | size | number | no | |
6217
6304
 
6218
6305
  ---
6219
6306
 
6220
6307
 
6221
6308
 
6222
6309
 
6223
- #### [BagGSTDetails](#BagGSTDetails)
6310
+ #### [BulkListingPage](#BulkListingPage)
6224
6311
 
6225
6312
  | Properties | Type | Nullable | Description |
6226
6313
  | ---------- | ---- | -------- | ----------- |
6227
- | gst_fee | number | yes | |
6228
- | igst_tax_percentage | number | yes | |
6229
- | hsn_code_id | string | yes | |
6230
- | cgst_gst_fee | string | yes | |
6231
- | is_default_hsn_code | boolean | no | |
6232
- | brand_calculated_amount | number | yes | |
6233
- | sgst_tax_percentage | number | yes | |
6234
- | sgst_gst_fee | string | yes | |
6235
- | igst_gst_fee | string | yes | |
6236
- | gst_tag | string | yes | |
6237
- | gst_tax_percentage | number | yes | |
6238
- | tax_collected_at_source | number | yes | |
6239
- | cgst_tax_percentage | number | yes | |
6240
- | gstin_code | string | no | |
6241
- | hsn_code | string | yes | |
6242
- | value_of_good | number | yes | |
6314
+ | has_previous | boolean | no | |
6315
+ | total | number | no | |
6316
+ | current | number | no | |
6317
+ | type | string | no | |
6318
+ | has_next | boolean | no | |
6319
+ | size | number | no | |
6243
6320
 
6244
6321
  ---
6245
6322
 
6246
6323
 
6247
6324
 
6248
6325
 
6249
- #### [ReturnConfig](#ReturnConfig)
6326
+ #### [bulkListingData](#bulkListingData)
6250
6327
 
6251
6328
  | Properties | Type | Nullable | Description |
6252
6329
  | ---------- | ---- | -------- | ----------- |
6253
- | time | number | no | |
6254
- | returnable | boolean | no | |
6255
- | unit | string | no | |
6330
+ | failed_shipments | [string] | no | |
6331
+ | successful_shipments | [string] | no | |
6332
+ | file_name | string | no | |
6333
+ | total | number | no | |
6334
+ | store_code | string | no | |
6335
+ | user_id | string | no | |
6336
+ | processing | number | no | |
6337
+ | excel_url | string | no | |
6338
+ | status | string | no | |
6339
+ | id | string | no | |
6340
+ | uploaded_on | string | no | |
6341
+ | failed | number | no | |
6342
+ | store_id | number | no | |
6343
+ | batch_id | string | no | |
6344
+ | user_name | string | no | |
6345
+ | company_id | number | no | |
6346
+ | successful | number | no | |
6347
+ | store_name | string | no | |
6348
+ | processing_shipments | [string] | no | |
6256
6349
 
6257
6350
  ---
6258
6351
 
6259
6352
 
6260
6353
 
6261
6354
 
6262
- #### [Dimensions](#Dimensions)
6355
+ #### [BulkListingResponse](#BulkListingResponse)
6263
6356
 
6264
6357
  | Properties | Type | Nullable | Description |
6265
6358
  | ---------- | ---- | -------- | ----------- |
6266
- | length | number | no | |
6267
- | unit | string | no | |
6268
- | width | number | no | |
6269
- | height | number | no | |
6270
- | is_default | boolean | no | |
6359
+ | success | boolean | no | |
6360
+ | error | string | no | |
6361
+ | page | [BulkListingPage](#BulkListingPage) | no | |
6362
+ | data | [[bulkListingData](#bulkListingData)] | no | |
6271
6363
 
6272
6364
  ---
6273
6365
 
6274
6366
 
6275
6367
 
6276
6368
 
6277
- #### [Weight](#Weight)
6369
+ #### [QuestionSet](#QuestionSet)
6278
6370
 
6279
6371
  | Properties | Type | Nullable | Description |
6280
6372
  | ---------- | ---- | -------- | ----------- |
6281
- | shipping | number | no | |
6282
- | unit | string | no | |
6283
- | is_default | boolean | no | |
6373
+ | display_name | string | no | |
6374
+ | id | number | no | |
6284
6375
 
6285
6376
  ---
6286
6377
 
6287
6378
 
6288
6379
 
6289
6380
 
6290
- #### [Article](#Article)
6381
+ #### [Reason](#Reason)
6291
6382
 
6292
6383
  | Properties | Type | Nullable | Description |
6293
6384
  | ---------- | ---- | -------- | ----------- |
6294
- | raw_meta | any | no | |
6295
- | child_details | string | no | |
6296
- | uid | string | yes | |
6297
- | identifiers | [Identifier](#Identifier) | yes | |
6298
- | size | string | yes | |
6299
- | _id | string | yes | |
6300
- | seller_identifier | string | yes | |
6301
- | a_set | string | no | |
6302
- | return_config | [ReturnConfig](#ReturnConfig) | no | |
6303
- | dimensions | [Dimensions](#Dimensions) | no | |
6304
- | weight | [Weight](#Weight) | no | |
6305
- | esp_modified | any | no | |
6306
- | code | string | no | |
6307
- | is_set | boolean | no | |
6385
+ | question_set | [[QuestionSet](#QuestionSet)] | no | |
6386
+ | display_name | string | no | |
6387
+ | id | number | no | |
6388
+ | qc_type | [string] | no | |
6308
6389
 
6309
6390
  ---
6310
6391
 
6311
6392
 
6312
6393
 
6313
6394
 
6314
- #### [ArticleDetails](#ArticleDetails)
6395
+ #### [PlatformShipmentReasonsResponse](#PlatformShipmentReasonsResponse)
6315
6396
 
6316
6397
  | Properties | Type | Nullable | Description |
6317
6398
  | ---------- | ---- | -------- | ----------- |
6318
- | status | string | no | |
6399
+ | success | boolean | no | |
6400
+ | reasons | [[Reason](#Reason)] | no | |
6319
6401
 
6320
6402
  ---
6321
6403
 
6322
6404
 
6323
6405
 
6324
6406
 
6325
- #### [EInvoice](#EInvoice)
6407
+ #### [BulkActionPayload](#BulkActionPayload)
6326
6408
 
6327
6409
  | Properties | Type | Nullable | Description |
6328
6410
  | ---------- | ---- | -------- | ----------- |
6329
- | signed_invoice | string | no | |
6330
- | acknowledge_date | string | no | |
6331
- | acknowledge_no | number | no | |
6332
- | error_message | string | no | |
6333
- | irn | string | no | |
6334
- | error_code | string | no | |
6335
- | signed_qr_code | string | no | |
6411
+ | url | string | yes | |
6336
6412
 
6337
6413
  ---
6338
6414
 
6339
6415
 
6340
6416
 
6341
6417
 
6342
- #### [EinvoiceInfo](#EinvoiceInfo)
6418
+ #### [BulkActionResponse](#BulkActionResponse)
6343
6419
 
6344
6420
  | Properties | Type | Nullable | Description |
6345
6421
  | ---------- | ---- | -------- | ----------- |
6346
- | invoice | [EInvoice](#EInvoice) | no | |
6347
- | credit_note | [EInvoice](#EInvoice) | no | |
6422
+ | status | boolean | no | |
6423
+ | message | string | no | |
6348
6424
 
6349
6425
  ---
6350
6426
 
6351
6427
 
6352
6428
 
6353
6429
 
6354
- #### [LockData](#LockData)
6430
+ #### [BulkActionDetailsDataField](#BulkActionDetailsDataField)
6355
6431
 
6356
6432
  | Properties | Type | Nullable | Description |
6357
6433
  | ---------- | ---- | -------- | ----------- |
6358
- | mto | boolean | no | |
6359
- | locked | boolean | no | |
6360
- | lock_message | string | no | |
6434
+ | failed_shipments_count | number | no | |
6435
+ | successful_shipment_ids | [string] | no | |
6436
+ | processing_shipments_count | number | no | |
6437
+ | company_id | string | no | |
6438
+ | successful_shipments_count | number | no | |
6439
+ | batch_id | string | no | |
6440
+ | total_shipments_count | number | no | |
6361
6441
 
6362
6442
  ---
6363
6443
 
6364
6444
 
6365
6445
 
6366
6446
 
6367
- #### [ShipmentTimeStamp](#ShipmentTimeStamp)
6447
+ #### [BulkActionDetailsResponse](#BulkActionDetailsResponse)
6368
6448
 
6369
6449
  | Properties | Type | Nullable | Description |
6370
6450
  | ---------- | ---- | -------- | ----------- |
6371
- | t_min | string | no | |
6372
- | t_max | string | no | |
6451
+ | uploaded_by | string | no | |
6452
+ | user_id | string | no | |
6453
+ | data | [[BulkActionDetailsDataField](#BulkActionDetailsDataField)] | no | |
6454
+ | status | boolean | no | |
6455
+ | failed_records | [string] | no | |
6456
+ | message | string | no | |
6457
+ | success | string | no | |
6458
+ | error | [string] | no | |
6459
+ | uploaded_on | string | no | |
6373
6460
 
6374
6461
  ---
6375
6462
 
6376
6463
 
6377
6464
 
6378
6465
 
6379
- #### [BuyerDetails](#BuyerDetails)
6466
+ #### [BagGSTDetails](#BagGSTDetails)
6380
6467
 
6381
6468
  | Properties | Type | Nullable | Description |
6382
6469
  | ---------- | ---- | -------- | ----------- |
6383
- | state | string | yes | |
6384
- | gstin | string | yes | |
6385
- | name | string | yes | |
6386
- | pincode | number | yes | |
6387
- | ajio_site_id | string | no | |
6388
- | city | string | yes | |
6389
- | address | string | yes | |
6470
+ | gstin_code | string | no | |
6471
+ | hsn_code | string | yes | |
6472
+ | gst_tax_percentage | number | yes | |
6473
+ | igst_gst_fee | string | yes | |
6474
+ | tax_collected_at_source | number | yes | |
6475
+ | gst_fee | number | yes | |
6476
+ | igst_tax_percentage | number | yes | |
6477
+ | gst_tag | string | yes | |
6478
+ | value_of_good | number | yes | |
6479
+ | brand_calculated_amount | number | yes | |
6480
+ | sgst_tax_percentage | number | yes | |
6481
+ | hsn_code_id | string | yes | |
6482
+ | cgst_tax_percentage | number | yes | |
6483
+ | sgst_gst_fee | string | yes | |
6484
+ | is_default_hsn_code | boolean | no | |
6485
+ | cgst_gst_fee | string | yes | |
6390
6486
 
6391
6487
  ---
6392
6488
 
6393
6489
 
6394
6490
 
6395
6491
 
6396
- #### [DebugInfo](#DebugInfo)
6492
+ #### [B2BPODetails](#B2BPODetails)
6397
6493
 
6398
6494
  | Properties | Type | Nullable | Description |
6399
6495
  | ---------- | ---- | -------- | ----------- |
6400
- | stormbreaker_uuid | string | no | |
6496
+ | po_tax_amount | number | no | |
6497
+ | docker_number | string | no | |
6498
+ | total_gst_percentage | number | no | |
6499
+ | po_line_amount | number | no | |
6500
+ | item_base_price | number | no | |
6501
+ | partial_can_ret | boolean | no | |
6401
6502
 
6402
6503
  ---
6403
6504
 
6404
6505
 
6405
6506
 
6406
6507
 
6407
- #### [Formatted](#Formatted)
6508
+ #### [BagMeta](#BagMeta)
6408
6509
 
6409
6510
  | Properties | Type | Nullable | Description |
6410
6511
  | ---------- | ---- | -------- | ----------- |
6411
- | f_min | string | no | |
6412
- | f_max | string | no | |
6512
+ | b2b_po_details | [B2BPODetails](#B2BPODetails) | no | |
6413
6513
 
6414
6514
  ---
6415
6515
 
6416
6516
 
6417
6517
 
6418
6518
 
6419
- #### [ShipmentMeta](#ShipmentMeta)
6519
+ #### [ReturnConfig](#ReturnConfig)
6420
6520
 
6421
6521
  | Properties | Type | Nullable | Description |
6422
6522
  | ---------- | ---- | -------- | ----------- |
6423
- | ewaybill_info | string | no | |
6424
- | einvoice_info | [EinvoiceInfo](#EinvoiceInfo) | no | |
6425
- | return_affiliate_shipment_id | string | no | |
6426
- | lock_data | [LockData](#LockData) | no | |
6427
- | bag_weight | string | no | |
6428
- | forward_affiliate_shipment_id | string | no | |
6429
- | timestamp | [ShipmentTimeStamp](#ShipmentTimeStamp) | no | |
6430
- | dp_name | string | no | |
6431
- | due_date | string | no | |
6432
- | forward_affiliate_order_id | string | no | |
6433
- | shipment_volumetric_weight | number | no | |
6434
- | assign_dp_from_sb | boolean | no | |
6435
- | fulfilment_priority_text | string | no | |
6436
- | auto_trigger_dp_assignment_acf | boolean | yes | |
6437
- | weight | number | yes | |
6438
- | awb_number | string | no | |
6439
- | same_store_available | boolean | yes | |
6440
- | return_awb_number | string | no | |
6441
- | box_type | string | no | |
6442
- | store_invoice_updated_date | string | no | |
6443
- | return_store_node | number | no | |
6444
- | shipment_weight | number | no | |
6445
- | order_type | string | no | |
6446
- | external | string | no | |
6447
- | return_details | string | no | |
6448
- | b2b_buyer_details | [BuyerDetails](#BuyerDetails) | no | |
6449
- | dp_sort_key | string | no | |
6450
- | po_number | string | no | |
6451
- | packaging_name | string | no | |
6452
- | dp_id | string | no | |
6453
- | dp_options | string | no | |
6454
- | debug_info | [DebugInfo](#DebugInfo) | no | |
6455
- | formatted | [Formatted](#Formatted) | no | |
6456
- | b2c_buyer_details | string | no | |
6457
- | return_affiliate_order_id | string | no | |
6458
- | marketplace_store_id | string | no | |
6523
+ | time | number | no | |
6524
+ | returnable | boolean | no | |
6525
+ | unit | string | no | |
6459
6526
 
6460
6527
  ---
6461
6528
 
6462
6529
 
6463
6530
 
6464
6531
 
6465
- #### [PDFLinks](#PDFLinks)
6532
+ #### [Weight](#Weight)
6466
6533
 
6467
6534
  | Properties | Type | Nullable | Description |
6468
6535
  | ---------- | ---- | -------- | ----------- |
6469
- | label_type | string | yes | |
6470
- | label_a6 | string | no | |
6471
- | po_invoice | string | no | |
6472
- | label_a4 | string | no | |
6473
- | invoice_a6 | string | no | |
6474
- | label_pos | string | no | |
6475
- | invoice_a4 | string | no | |
6476
- | credit_note_url | string | no | |
6477
- | invoice_pos | string | no | |
6478
- | b2b | string | no | |
6479
- | invoice | string | no | |
6480
- | label | string | no | |
6481
- | invoice_type | string | yes | |
6536
+ | is_default | boolean | no | |
6537
+ | shipping | number | no | |
6538
+ | unit | string | no | |
6482
6539
 
6483
6540
  ---
6484
6541
 
6485
6542
 
6486
6543
 
6487
6544
 
6488
- #### [AffiliateDetails](#AffiliateDetails)
6545
+ #### [Article](#Article)
6489
6546
 
6490
6547
  | Properties | Type | Nullable | Description |
6491
6548
  | ---------- | ---- | -------- | ----------- |
6492
- | affiliate_order_id | string | yes | |
6493
- | affiliate_id | string | no | |
6494
- | affiliate_store_id | string | yes | |
6495
- | shipment_meta | [ShipmentMeta](#ShipmentMeta) | yes | |
6496
- | company_affiliate_tag | string | no | |
6497
- | affiliate_shipment_id | string | yes | |
6498
- | affiliate_bag_id | string | yes | |
6499
- | affiliate_meta | [AffiliateMeta](#AffiliateMeta) | yes | |
6500
- | ad_id | string | no | |
6501
- | pdf_links | [PDFLinks](#PDFLinks) | no | |
6549
+ | a_set | string | no | |
6550
+ | _id | string | yes | |
6551
+ | raw_meta | any | no | |
6552
+ | identifiers | [Identifier](#Identifier) | yes | |
6553
+ | seller_identifier | string | yes | |
6554
+ | uid | string | yes | |
6555
+ | child_details | string | no | |
6556
+ | return_config | [ReturnConfig](#ReturnConfig) | no | |
6557
+ | dimensions | [Dimensions](#Dimensions) | no | |
6558
+ | weight | [Weight](#Weight) | no | |
6559
+ | esp_modified | any | no | |
6560
+ | is_set | boolean | no | |
6561
+ | size | string | yes | |
6562
+ | code | string | no | |
6502
6563
 
6503
6564
  ---
6504
6565
 
6505
6566
 
6506
6567
 
6507
6568
 
6508
- #### [StoreAddress](#StoreAddress)
6509
-
6510
- | Properties | Type | Nullable | Description |
6511
- | ---------- | ---- | -------- | ----------- |
6512
- | country_code | string | yes | |
6513
- | address_category | string | yes | |
6514
- | pincode | number | yes | |
6515
- | country | string | yes | |
6516
- | phone | string | yes | |
6517
- | area | string | no | |
6518
- | version | string | no | |
6519
- | city | string | yes | |
6520
- | contact_person | string | yes | |
6521
- | created_at | string | yes | |
6522
- | landmark | string | no | |
6523
- | state | string | yes | |
6524
- | longitude | number | yes | |
6525
- | latitude | number | yes | |
6526
- | address1 | string | yes | |
6527
- | address_type | string | yes | |
6528
- | address2 | string | no | |
6529
- | email | string | no | |
6530
- | updated_at | string | yes | |
6569
+ #### [BagReturnableCancelableStatus](#BagReturnableCancelableStatus)
6570
+
6571
+ | Properties | Type | Nullable | Description |
6572
+ | ---------- | ---- | -------- | ----------- |
6573
+ | is_active | boolean | yes | |
6574
+ | is_customer_return_allowed | boolean | yes | |
6575
+ | can_be_cancelled | boolean | yes | |
6576
+ | is_returnable | boolean | yes | |
6577
+ | enable_tracking | boolean | yes | |
6531
6578
 
6532
6579
  ---
6533
6580
 
6534
6581
 
6535
6582
 
6536
6583
 
6537
- #### [EInvoicePortalDetails](#EInvoicePortalDetails)
6584
+ #### [ArticleDetails](#ArticleDetails)
6538
6585
 
6539
6586
  | Properties | Type | Nullable | Description |
6540
6587
  | ---------- | ---- | -------- | ----------- |
6541
- | user | string | no | |
6542
- | username | string | no | |
6543
- | password | string | no | |
6588
+ | status | string | no | |
6544
6589
 
6545
6590
  ---
6546
6591
 
@@ -6552,10 +6597,10 @@ Sms Sent successfully
6552
6597
  | Properties | Type | Nullable | Description |
6553
6598
  | ---------- | ---- | -------- | ----------- |
6554
6599
  | ds_type | string | yes | |
6600
+ | legal_name | string | yes | |
6555
6601
  | url | string | no | |
6556
- | value | string | yes | |
6557
6602
  | verified | boolean | yes | |
6558
- | legal_name | string | yes | |
6603
+ | value | string | yes | |
6559
6604
 
6560
6605
  ---
6561
6606
 
@@ -6573,14 +6618,13 @@ Sms Sent successfully
6573
6618
 
6574
6619
 
6575
6620
 
6576
- #### [StoreEinvoice](#StoreEinvoice)
6621
+ #### [EInvoicePortalDetails](#EInvoicePortalDetails)
6577
6622
 
6578
6623
  | Properties | Type | Nullable | Description |
6579
6624
  | ---------- | ---- | -------- | ----------- |
6625
+ | user | string | no | |
6580
6626
  | password | string | no | |
6581
- | enabled | boolean | yes | |
6582
6627
  | username | string | no | |
6583
- | user | string | no | |
6584
6628
 
6585
6629
  ---
6586
6630
 
@@ -6598,12 +6642,26 @@ Sms Sent successfully
6598
6642
 
6599
6643
 
6600
6644
 
6645
+ #### [StoreEinvoice](#StoreEinvoice)
6646
+
6647
+ | Properties | Type | Nullable | Description |
6648
+ | ---------- | ---- | -------- | ----------- |
6649
+ | user | string | no | |
6650
+ | password | string | no | |
6651
+ | enabled | boolean | yes | |
6652
+ | username | string | no | |
6653
+
6654
+ ---
6655
+
6656
+
6657
+
6658
+
6601
6659
  #### [StoreGstCredentials](#StoreGstCredentials)
6602
6660
 
6603
6661
  | Properties | Type | Nullable | Description |
6604
6662
  | ---------- | ---- | -------- | ----------- |
6605
- | e_invoice | [StoreEinvoice](#StoreEinvoice) | no | |
6606
6663
  | e_waybill | [StoreEwaybill](#StoreEwaybill) | no | |
6664
+ | e_invoice | [StoreEinvoice](#StoreEinvoice) | no | |
6607
6665
 
6608
6666
  ---
6609
6667
 
@@ -6614,142 +6672,106 @@ Sms Sent successfully
6614
6672
 
6615
6673
  | Properties | Type | Nullable | Description |
6616
6674
  | ---------- | ---- | -------- | ----------- |
6675
+ | documents | [StoreDocuments](#StoreDocuments) | no | |
6617
6676
  | einvoice_portal_details | [EInvoicePortalDetails](#EInvoicePortalDetails) | no | |
6677
+ | timing | [string] | no | |
6618
6678
  | notification_emails | [string] | no | |
6619
- | display_name | string | yes | |
6620
6679
  | additional_contact_details | string | no | |
6621
- | documents | [StoreDocuments](#StoreDocuments) | no | |
6622
- | stage | string | yes | |
6623
- | gst_credentials | [StoreGstCredentials](#StoreGstCredentials) | yes | |
6624
- | ewaybill_portal_details | string | no | |
6625
- | timing | [string] | no | |
6626
- | product_return_config | string | no | |
6627
6680
  | gst_number | string | no | |
6681
+ | product_return_config | string | no | |
6682
+ | ewaybill_portal_details | string | no | |
6683
+ | display_name | string | yes | |
6684
+ | gst_credentials | [StoreGstCredentials](#StoreGstCredentials) | yes | |
6685
+ | stage | string | yes | |
6628
6686
 
6629
6687
  ---
6630
6688
 
6631
6689
 
6632
6690
 
6633
6691
 
6634
- #### [Store](#Store)
6692
+ #### [StoreAddress](#StoreAddress)
6635
6693
 
6636
6694
  | Properties | Type | Nullable | Description |
6637
6695
  | ---------- | ---- | -------- | ----------- |
6638
- | brand_store_tags | [string] | no | |
6639
- | store_address_json | [StoreAddress](#StoreAddress) | no | |
6640
- | order_integration_id | string | no | |
6641
- | pincode | string | yes | |
6642
- | parent_store_id | number | no | |
6643
- | code | string | no | |
6644
- | country | string | yes | |
6645
- | login_username | string | yes | |
6646
- | mall_name | string | no | |
6647
- | phone | number | yes | |
6648
- | is_archived | boolean | no | |
6649
- | alohomora_user_id | number | no | |
6650
- | is_active | boolean | no | |
6651
- | city | string | yes | |
6652
- | mall_area | string | no | |
6653
- | packaging_material_count | number | no | |
6654
- | vat_no | string | no | |
6655
- | brand_id | any | no | |
6696
+ | phone | string | yes | |
6697
+ | email | string | no | |
6698
+ | pincode | number | yes | |
6699
+ | country_code | string | yes | |
6700
+ | updated_at | string | yes | |
6701
+ | version | string | no | |
6656
6702
  | contact_person | string | yes | |
6657
- | created_at | string | yes | |
6703
+ | area | string | no | |
6704
+ | address_type | string | yes | |
6658
6705
  | state | string | yes | |
6659
- | is_enabled_for_recon | boolean | no | |
6660
- | store_email | string | yes | |
6661
- | location_type | string | yes | |
6662
- | longitude | number | yes | |
6663
- | latitude | number | yes | |
6664
- | meta | [StoreMeta](#StoreMeta) | yes | |
6706
+ | address_category | string | yes | |
6665
6707
  | address1 | string | yes | |
6666
6708
  | address2 | string | no | |
6667
- | s_id | string | yes | |
6668
- | name | string | yes | |
6669
- | company_id | number | yes | |
6670
- | fulfillment_channel | string | yes | |
6671
- | store_active_from | string | no | |
6672
- | updated_at | string | no | |
6673
-
6674
- ---
6675
-
6676
-
6677
-
6678
-
6679
- #### [Attributes](#Attributes)
6680
-
6681
- | Properties | Type | Nullable | Description |
6682
- | ---------- | ---- | -------- | ----------- |
6683
- | primary_color_hex | string | no | |
6684
- | name | string | no | |
6685
- | primary_color | string | no | |
6686
- | brand_name | string | no | |
6687
- | marketer_name | string | no | |
6688
- | primary_material | string | no | |
6689
- | gender | [string] | no | |
6690
- | essential | string | no | |
6691
- | marketer_address | string | no | |
6709
+ | longitude | number | yes | |
6710
+ | city | string | yes | |
6711
+ | latitude | number | yes | |
6712
+ | created_at | string | yes | |
6713
+ | landmark | string | no | |
6714
+ | country | string | yes | |
6692
6715
 
6693
6716
  ---
6694
6717
 
6695
6718
 
6696
6719
 
6697
6720
 
6698
- #### [Item](#Item)
6721
+ #### [Store](#Store)
6699
6722
 
6700
6723
  | Properties | Type | Nullable | Description |
6701
6724
  | ---------- | ---- | -------- | ----------- |
6702
- | l2_category | [string] | no | |
6703
- | webstore_product_url | string | no | |
6704
- | gender | string | no | |
6705
- | code | string | no | |
6706
- | attributes | [Attributes](#Attributes) | yes | |
6707
- | l1_category_id | number | no | |
6708
- | l1_category | [string] | no | |
6709
- | slug_key | string | yes | |
6710
- | brand_id | number | yes | |
6711
- | item_id | number | yes | |
6712
- | l3_category | number | no | |
6713
- | branch_url | string | no | |
6714
- | can_cancel | boolean | no | |
6715
- | size | string | yes | |
6716
- | l2_category_id | number | no | |
6717
- | meta | string | no | |
6718
- | can_return | boolean | no | |
6719
- | last_updated_at | string | no | |
6720
- | department_id | number | no | |
6721
- | color | string | no | |
6725
+ | phone | number | yes | |
6726
+ | pincode | string | yes | |
6722
6727
  | name | string | yes | |
6723
- | l3_category_name | string | no | |
6724
- | brand | string | yes | |
6725
- | image | [string] | yes | |
6726
-
6727
- ---
6728
-
6729
-
6730
-
6731
-
6732
- #### [B2BPODetails](#B2BPODetails)
6733
-
6734
- | Properties | Type | Nullable | Description |
6735
- | ---------- | ---- | -------- | ----------- |
6736
- | po_line_amount | number | no | |
6737
- | docker_number | string | no | |
6738
- | partial_can_ret | boolean | no | |
6739
- | po_tax_amount | number | no | |
6740
- | total_gst_percentage | number | no | |
6741
- | item_base_price | number | no | |
6728
+ | meta | [StoreMeta](#StoreMeta) | yes | |
6729
+ | updated_at | string | no | |
6730
+ | fulfillment_channel | string | yes | |
6731
+ | order_integration_id | string | no | |
6732
+ | contact_person | string | yes | |
6733
+ | parent_store_id | number | no | |
6734
+ | store_address_json | [StoreAddress](#StoreAddress) | no | |
6735
+ | state | string | yes | |
6736
+ | alohomora_user_id | number | no | |
6737
+ | is_archived | boolean | no | |
6738
+ | is_active | boolean | no | |
6739
+ | address1 | string | yes | |
6740
+ | address2 | string | no | |
6741
+ | brand_store_tags | [string] | no | |
6742
+ | s_id | string | yes | |
6743
+ | longitude | number | yes | |
6744
+ | packaging_material_count | number | no | |
6745
+ | city | string | yes | |
6746
+ | code | string | no | |
6747
+ | is_enabled_for_recon | boolean | no | |
6748
+ | latitude | number | yes | |
6749
+ | created_at | string | yes | |
6750
+ | login_username | string | yes | |
6751
+ | location_type | string | yes | |
6752
+ | mall_name | string | no | |
6753
+ | company_id | number | yes | |
6754
+ | country | string | yes | |
6755
+ | mall_area | string | no | |
6756
+ | brand_id | any | no | |
6757
+ | store_active_from | string | no | |
6758
+ | store_email | string | yes | |
6759
+ | vat_no | string | no | |
6742
6760
 
6743
6761
  ---
6744
6762
 
6745
6763
 
6746
6764
 
6747
6765
 
6748
- #### [BagMeta](#BagMeta)
6766
+ #### [AffiliateBagDetails](#AffiliateBagDetails)
6749
6767
 
6750
6768
  | Properties | Type | Nullable | Description |
6751
6769
  | ---------- | ---- | -------- | ----------- |
6752
- | b2b_po_details | [B2BPODetails](#B2BPODetails) | no | |
6770
+ | affiliate_bag_id | string | yes | |
6771
+ | loyalty_discount | number | no | |
6772
+ | affiliate_meta | [AffiliateMeta](#AffiliateMeta) | yes | |
6773
+ | employee_discount | number | no | |
6774
+ | affiliate_order_id | string | yes | |
6753
6775
 
6754
6776
  ---
6755
6777
 
@@ -6772,34 +6794,72 @@ Sms Sent successfully
6772
6794
 
6773
6795
  | Properties | Type | Nullable | Description |
6774
6796
  | ---------- | ---- | -------- | ----------- |
6775
- | credit_note_allowed | boolean | no | |
6776
- | is_virtual_invoice | boolean | no | |
6777
- | script_last_ran | string | no | |
6778
- | logo | string | no | |
6779
6797
  | created_on | number | no | |
6798
+ | credit_note_expiry_days | number | no | |
6799
+ | script_last_ran | string | no | |
6800
+ | invoice_prefix | string | no | |
6780
6801
  | modified_on | number | no | |
6781
6802
  | pickup_location | string | no | |
6782
6803
  | start_date | string | no | |
6783
6804
  | brand_name | string | yes | |
6784
6805
  | company | string | yes | |
6806
+ | logo | string | no | |
6785
6807
  | brand_id | number | yes | |
6786
- | credit_note_expiry_days | number | no | |
6787
- | invoice_prefix | string | no | |
6808
+ | credit_note_allowed | boolean | no | |
6809
+ | is_virtual_invoice | boolean | no | |
6788
6810
 
6789
6811
  ---
6790
6812
 
6791
6813
 
6792
6814
 
6793
6815
 
6794
- #### [BagReturnableCancelableStatus](#BagReturnableCancelableStatus)
6816
+ #### [Attributes](#Attributes)
6795
6817
 
6796
6818
  | Properties | Type | Nullable | Description |
6797
6819
  | ---------- | ---- | -------- | ----------- |
6798
- | is_returnable | boolean | yes | |
6799
- | is_active | boolean | yes | |
6800
- | is_customer_return_allowed | boolean | yes | |
6801
- | enable_tracking | boolean | yes | |
6802
- | can_be_cancelled | boolean | yes | |
6820
+ | name | string | no | |
6821
+ | marketer_address | string | no | |
6822
+ | gender | [string] | no | |
6823
+ | primary_color | string | no | |
6824
+ | brand_name | string | no | |
6825
+ | marketer_name | string | no | |
6826
+ | primary_material | string | no | |
6827
+ | essential | string | no | |
6828
+ | primary_color_hex | string | no | |
6829
+
6830
+ ---
6831
+
6832
+
6833
+
6834
+
6835
+ #### [Item](#Item)
6836
+
6837
+ | Properties | Type | Nullable | Description |
6838
+ | ---------- | ---- | -------- | ----------- |
6839
+ | color | string | no | |
6840
+ | name | string | yes | |
6841
+ | last_updated_at | string | no | |
6842
+ | department_id | number | no | |
6843
+ | l2_category | [string] | no | |
6844
+ | webstore_product_url | string | no | |
6845
+ | l1_category_id | number | no | |
6846
+ | meta | string | no | |
6847
+ | gender | string | no | |
6848
+ | can_return | boolean | no | |
6849
+ | attributes | [Attributes](#Attributes) | yes | |
6850
+ | item_id | number | yes | |
6851
+ | can_cancel | boolean | no | |
6852
+ | image | [string] | yes | |
6853
+ | l3_category | number | no | |
6854
+ | brand | string | yes | |
6855
+ | code | string | no | |
6856
+ | size | string | yes | |
6857
+ | branch_url | string | no | |
6858
+ | l3_category_name | string | no | |
6859
+ | l2_category_id | number | no | |
6860
+ | slug_key | string | yes | |
6861
+ | brand_id | number | yes | |
6862
+ | l1_category | [string] | no | |
6803
6863
 
6804
6864
  ---
6805
6865
 
@@ -6810,45 +6870,45 @@ Sms Sent successfully
6810
6870
 
6811
6871
  | Properties | Type | Nullable | Description |
6812
6872
  | ---------- | ---- | -------- | ----------- |
6813
- | line_number | number | no | |
6814
- | parent_promo_bags | string | no | |
6815
- | identifier | string | no | |
6816
- | affiliate_bag_details | [AffiliateBagDetails](#AffiliateBagDetails) | yes | |
6817
- | qc_required | any | no | |
6818
- | order_integration_id | string | no | |
6873
+ | shipment_id | string | no | |
6874
+ | b_id | number | yes | |
6875
+ | bag_status_history | [BagStatusHistory](#BagStatusHistory) | no | |
6876
+ | display_name | string | no | |
6877
+ | current_status | [BagStatusHistory](#BagStatusHistory) | yes | |
6878
+ | financial_breakup | [[FinancialBreakup](#FinancialBreakup)] | yes | |
6879
+ | gst_details | [BagGSTDetails](#BagGSTDetails) | yes | |
6880
+ | meta | [BagMeta](#BagMeta) | no | |
6881
+ | bag_status | [[BagStatusHistory](#BagStatusHistory)] | yes | |
6882
+ | reasons | [string] | no | |
6819
6883
  | seller_identifier | string | no | |
6820
- | applied_promos | [string] | no | |
6884
+ | order_integration_id | string | no | |
6885
+ | article | [Article](#Article) | yes | |
6886
+ | status | [BagReturnableCancelableStatus](#BagReturnableCancelableStatus) | yes | |
6887
+ | article_details | [ArticleDetails](#ArticleDetails) | no | |
6888
+ | bag_update_time | number | no | |
6821
6889
  | quantity | number | no | |
6822
- | reasons | [string] | no | |
6890
+ | restore_coupon | boolean | no | |
6823
6891
  | no_of_bags_order | number | no | |
6892
+ | restore_promos | string | no | |
6824
6893
  | b_type | string | no | |
6825
- | gst_details | [BagGSTDetails](#BagGSTDetails) | yes | |
6826
- | entity_type | string | no | |
6827
- | display_name | string | no | |
6828
- | article | [Article](#Article) | yes | |
6829
- | article_details | [ArticleDetails](#ArticleDetails) | no | |
6894
+ | applied_promos | [string] | no | |
6895
+ | ordering_store | [Store](#Store) | no | |
6896
+ | affiliate_bag_details | [AffiliateBagDetails](#AffiliateBagDetails) | yes | |
6897
+ | parent_promo_bags | string | no | |
6898
+ | tags | [string] | no | |
6899
+ | operational_status | string | no | |
6830
6900
  | affiliate_details | [AffiliateDetails](#AffiliateDetails) | no | |
6831
- | bag_status_history | [BagStatusHistory](#BagStatusHistory) | no | |
6832
- | b_id | number | yes | |
6833
- | restore_promos | string | no | |
6834
6901
  | current_operational_status | [BagStatusHistory](#BagStatusHistory) | yes | |
6835
- | bag_update_time | number | no | |
6836
- | current_status | [BagStatusHistory](#BagStatusHistory) | yes | |
6837
- | financial_breakup | [[FinancialBreakup](#FinancialBreakup)] | yes | |
6838
- | ordering_store | [Store](#Store) | no | |
6839
- | item | [Item](#Item) | yes | |
6840
- | meta | [BagMeta](#BagMeta) | no | |
6841
- | bag_status | [[BagStatusHistory](#BagStatusHistory)] | yes | |
6902
+ | journey_type | string | yes | |
6842
6903
  | dates | [Dates](#Dates) | no | |
6843
- | restore_coupon | boolean | no | |
6844
- | shipment_id | string | no | |
6845
6904
  | brand | [Brand](#Brand) | yes | |
6846
- | tags | [string] | no | |
6847
- | status | [BagReturnableCancelableStatus](#BagReturnableCancelableStatus) | yes | |
6848
6905
  | original_bag_list | [number] | no | |
6849
- | journey_type | string | yes | |
6906
+ | qc_required | any | no | |
6907
+ | entity_type | string | no | |
6850
6908
  | prices | [Prices](#Prices) | yes | |
6851
- | operational_status | string | no | |
6909
+ | line_number | number | no | |
6910
+ | item | [Item](#Item) | yes | |
6911
+ | identifier | string | no | |
6852
6912
 
6853
6913
  ---
6854
6914
 
@@ -6872,10 +6932,10 @@ Sms Sent successfully
6872
6932
  | Properties | Type | Nullable | Description |
6873
6933
  | ---------- | ---- | -------- | ----------- |
6874
6934
  | page_type | string | yes | |
6875
- | size | number | yes | |
6876
- | has_next | boolean | yes | |
6877
- | item_total | number | yes | |
6878
6935
  | current | number | yes | |
6936
+ | item_total | number | yes | |
6937
+ | has_next | boolean | yes | |
6938
+ | size | number | yes | |
6879
6939
 
6880
6940
  ---
6881
6941
 
@@ -6910,8 +6970,8 @@ Sms Sent successfully
6910
6970
  | Properties | Type | Nullable | Description |
6911
6971
  | ---------- | ---- | -------- | ----------- |
6912
6972
  | message | string | no | |
6913
- | status | number | no | |
6914
6973
  | shipment_id | string | no | |
6974
+ | status | number | no | |
6915
6975
  | error | string | no | |
6916
6976
 
6917
6977
  ---
@@ -6935,8 +6995,8 @@ Sms Sent successfully
6935
6995
  | Properties | Type | Nullable | Description |
6936
6996
  | ---------- | ---- | -------- | ----------- |
6937
6997
  | message | string | yes | |
6938
- | status | number | yes | |
6939
6998
  | error_trace | string | no | |
6999
+ | status | number | yes | |
6940
7000
 
6941
7001
  ---
6942
7002
 
@@ -6947,16 +7007,16 @@ Sms Sent successfully
6947
7007
 
6948
7008
  | Properties | Type | Nullable | Description |
6949
7009
  | ---------- | ---- | -------- | ----------- |
6950
- | store_id | number | yes | |
6951
- | fynd_order_id | string | no | |
6952
- | affiliate_bag_id | string | no | |
6953
- | item_id | string | no | |
7010
+ | set_id | string | no | |
6954
7011
  | reason_ids | [number] | no | |
7012
+ | affiliate_order_id | string | no | |
6955
7013
  | affiliate_id | string | no | |
6956
7014
  | bag_id | number | no | |
6957
- | set_id | string | no | |
7015
+ | fynd_order_id | string | no | |
7016
+ | item_id | string | no | |
6958
7017
  | mongo_article_id | string | no | |
6959
- | affiliate_order_id | string | no | |
7018
+ | store_id | number | yes | |
7019
+ | affiliate_bag_id | string | no | |
6960
7020
 
6961
7021
  ---
6962
7022
 
@@ -6980,11 +7040,11 @@ Sms Sent successfully
6980
7040
  | Properties | Type | Nullable | Description |
6981
7041
  | ---------- | ---- | -------- | ----------- |
6982
7042
  | reason_text | string | yes | |
6983
- | affiliate_bag_id | string | no | |
6984
- | affiliate_shipment_id | string | no | |
7043
+ | affiliate_order_id | string | no | |
6985
7044
  | affiliate_id | string | no | |
7045
+ | affiliate_shipment_id | string | no | |
6986
7046
  | id | string | no | |
6987
- | affiliate_order_id | string | no | |
7047
+ | affiliate_bag_id | string | no | |
6988
7048
 
6989
7049
  ---
6990
7050
 
@@ -6996,8 +7056,8 @@ Sms Sent successfully
6996
7056
  | Properties | Type | Nullable | Description |
6997
7057
  | ---------- | ---- | -------- | ----------- |
6998
7058
  | entities | [[Entities](#Entities)] | yes | |
6999
- | entity_type | string | yes | |
7000
7059
  | action | string | yes | |
7060
+ | entity_type | string | yes | |
7001
7061
  | action_type | string | yes | |
7002
7062
 
7003
7063
  ---
@@ -7005,26 +7065,26 @@ Sms Sent successfully
7005
7065
 
7006
7066
 
7007
7067
 
7008
- #### [Bags](#Bags)
7068
+ #### [OriginalFilter](#OriginalFilter)
7009
7069
 
7010
7070
  | Properties | Type | Nullable | Description |
7011
7071
  | ---------- | ---- | -------- | ----------- |
7012
- | affiliate_bag_id | string | no | |
7013
- | is_locked | boolean | no | |
7014
- | bag_id | number | no | |
7015
- | affiliate_order_id | string | no | |
7072
+ | affiliate_id | string | no | |
7073
+ | affiliate_shipment_id | string | no | |
7016
7074
 
7017
7075
  ---
7018
7076
 
7019
7077
 
7020
7078
 
7021
7079
 
7022
- #### [OriginalFilter](#OriginalFilter)
7080
+ #### [Bags](#Bags)
7023
7081
 
7024
7082
  | Properties | Type | Nullable | Description |
7025
7083
  | ---------- | ---- | -------- | ----------- |
7026
- | affiliate_id | string | no | |
7027
- | affiliate_shipment_id | string | no | |
7084
+ | is_locked | boolean | no | |
7085
+ | bag_id | number | no | |
7086
+ | affiliate_bag_id | string | no | |
7087
+ | affiliate_order_id | string | no | |
7028
7088
 
7029
7089
  ---
7030
7090
 
@@ -7035,15 +7095,15 @@ Sms Sent successfully
7035
7095
 
7036
7096
  | Properties | Type | Nullable | Description |
7037
7097
  | ---------- | ---- | -------- | ----------- |
7038
- | status | string | no | |
7039
- | affiliate_shipment_id | string | no | |
7040
- | bags | [[Bags](#Bags)] | no | |
7041
- | affiliate_id | string | no | |
7042
- | original_filter | [OriginalFilter](#OriginalFilter) | no | |
7043
7098
  | shipment_id | string | no | |
7044
7099
  | is_bag_locked | boolean | no | |
7045
- | lock_status | boolean | no | |
7100
+ | affiliate_id | string | no | |
7101
+ | affiliate_shipment_id | string | no | |
7046
7102
  | is_shipment_locked | boolean | no | |
7103
+ | original_filter | [OriginalFilter](#OriginalFilter) | no | |
7104
+ | bags | [[Bags](#Bags)] | no | |
7105
+ | status | string | no | |
7106
+ | lock_status | boolean | no | |
7047
7107
 
7048
7108
  ---
7049
7109
 
@@ -7067,16 +7127,16 @@ Sms Sent successfully
7067
7127
 
7068
7128
  | Properties | Type | Nullable | Description |
7069
7129
  | ---------- | ---- | -------- | ----------- |
7130
+ | from_datetime | string | no | |
7070
7131
  | logo_url | string | no | |
7132
+ | title | string | no | |
7133
+ | created_at | string | no | |
7071
7134
  | platform_id | string | no | |
7072
7135
  | company_id | number | no | |
7073
- | title | string | no | |
7136
+ | id | number | yes | |
7137
+ | platform_name | string | no | |
7074
7138
  | to_datetime | string | no | |
7075
7139
  | description | string | no | |
7076
- | platform_name | string | no | |
7077
- | id | number | yes | |
7078
- | from_datetime | string | no | |
7079
- | created_at | string | no | |
7080
7140
 
7081
7141
  ---
7082
7142
 
@@ -7110,44 +7170,44 @@ Sms Sent successfully
7110
7170
 
7111
7171
  | Properties | Type | Nullable | Description |
7112
7172
  | ---------- | ---- | -------- | ----------- |
7113
- | status | boolean | yes | |
7114
7173
  | call_id | string | yes | |
7174
+ | status | boolean | yes | |
7115
7175
 
7116
7176
  ---
7117
7177
 
7118
7178
 
7119
7179
 
7120
7180
 
7121
- #### [EntitiesDataUpdates](#EntitiesDataUpdates)
7181
+ #### [ProductsDataUpdatesFilters](#ProductsDataUpdatesFilters)
7122
7182
 
7123
7183
  | Properties | Type | Nullable | Description |
7124
7184
  | ---------- | ---- | -------- | ----------- |
7125
- | filters | [string] | no | |
7126
- | data | string | no | |
7185
+ | line_number | number | no | |
7186
+ | identifier | string | no | |
7127
7187
 
7128
7188
  ---
7129
7189
 
7130
7190
 
7131
7191
 
7132
7192
 
7133
- #### [ProductsDataUpdatesFilters](#ProductsDataUpdatesFilters)
7193
+ #### [ProductsDataUpdates](#ProductsDataUpdates)
7134
7194
 
7135
7195
  | Properties | Type | Nullable | Description |
7136
7196
  | ---------- | ---- | -------- | ----------- |
7137
- | line_number | number | no | |
7138
- | identifier | string | no | |
7197
+ | data | string | no | |
7198
+ | filters | [[ProductsDataUpdatesFilters](#ProductsDataUpdatesFilters)] | no | |
7139
7199
 
7140
7200
  ---
7141
7201
 
7142
7202
 
7143
7203
 
7144
7204
 
7145
- #### [ProductsDataUpdates](#ProductsDataUpdates)
7205
+ #### [EntitiesDataUpdates](#EntitiesDataUpdates)
7146
7206
 
7147
7207
  | Properties | Type | Nullable | Description |
7148
7208
  | ---------- | ---- | -------- | ----------- |
7149
- | filters | [[ProductsDataUpdatesFilters](#ProductsDataUpdatesFilters)] | no | |
7150
7209
  | data | string | no | |
7210
+ | filters | [string] | no | |
7151
7211
 
7152
7212
  ---
7153
7213
 
@@ -7158,32 +7218,33 @@ Sms Sent successfully
7158
7218
 
7159
7219
  | Properties | Type | Nullable | Description |
7160
7220
  | ---------- | ---- | -------- | ----------- |
7161
- | entities | [[EntitiesDataUpdates](#EntitiesDataUpdates)] | no | |
7162
7221
  | products | [[ProductsDataUpdates](#ProductsDataUpdates)] | no | |
7222
+ | entities | [[EntitiesDataUpdates](#EntitiesDataUpdates)] | no | |
7163
7223
 
7164
7224
  ---
7165
7225
 
7166
7226
 
7167
7227
 
7168
7228
 
7169
- #### [EntityReasonData](#EntityReasonData)
7229
+ #### [Products](#Products)
7170
7230
 
7171
7231
  | Properties | Type | Nullable | Description |
7172
7232
  | ---------- | ---- | -------- | ----------- |
7173
- | reason_id | number | no | |
7174
- | reason_text | string | no | |
7233
+ | line_number | number | no | |
7234
+ | quantity | number | no | |
7235
+ | identifier | string | no | |
7175
7236
 
7176
7237
  ---
7177
7238
 
7178
7239
 
7179
7240
 
7180
7241
 
7181
- #### [EntitiesReasons](#EntitiesReasons)
7242
+ #### [ProductsReasonsData](#ProductsReasonsData)
7182
7243
 
7183
7244
  | Properties | Type | Nullable | Description |
7184
7245
  | ---------- | ---- | -------- | ----------- |
7185
- | filters | [string] | no | |
7186
- | data | [EntityReasonData](#EntityReasonData) | no | |
7246
+ | reason_text | string | no | |
7247
+ | reason_id | number | no | |
7187
7248
 
7188
7249
  ---
7189
7250
 
@@ -7195,57 +7256,56 @@ Sms Sent successfully
7195
7256
  | Properties | Type | Nullable | Description |
7196
7257
  | ---------- | ---- | -------- | ----------- |
7197
7258
  | line_number | number | no | |
7198
- | identifier | string | no | |
7199
7259
  | quantity | number | no | |
7260
+ | identifier | string | no | |
7200
7261
 
7201
7262
  ---
7202
7263
 
7203
7264
 
7204
7265
 
7205
7266
 
7206
- #### [ProductsReasonsData](#ProductsReasonsData)
7267
+ #### [ProductsReasons](#ProductsReasons)
7207
7268
 
7208
7269
  | Properties | Type | Nullable | Description |
7209
7270
  | ---------- | ---- | -------- | ----------- |
7210
- | reason_id | number | no | |
7211
- | reason_text | string | no | |
7271
+ | data | [ProductsReasonsData](#ProductsReasonsData) | no | |
7272
+ | filters | [[ProductsReasonsFilters](#ProductsReasonsFilters)] | no | |
7212
7273
 
7213
7274
  ---
7214
7275
 
7215
7276
 
7216
7277
 
7217
7278
 
7218
- #### [ProductsReasons](#ProductsReasons)
7279
+ #### [EntityReasonData](#EntityReasonData)
7219
7280
 
7220
7281
  | Properties | Type | Nullable | Description |
7221
7282
  | ---------- | ---- | -------- | ----------- |
7222
- | filters | [[ProductsReasonsFilters](#ProductsReasonsFilters)] | no | |
7223
- | data | [ProductsReasonsData](#ProductsReasonsData) | no | |
7283
+ | reason_text | string | no | |
7284
+ | reason_id | number | no | |
7224
7285
 
7225
7286
  ---
7226
7287
 
7227
7288
 
7228
7289
 
7229
7290
 
7230
- #### [ReasonsData](#ReasonsData)
7291
+ #### [EntitiesReasons](#EntitiesReasons)
7231
7292
 
7232
7293
  | Properties | Type | Nullable | Description |
7233
7294
  | ---------- | ---- | -------- | ----------- |
7234
- | entities | [[EntitiesReasons](#EntitiesReasons)] | no | |
7235
- | products | [[ProductsReasons](#ProductsReasons)] | no | |
7295
+ | data | [EntityReasonData](#EntityReasonData) | no | |
7296
+ | filters | [string] | no | |
7236
7297
 
7237
7298
  ---
7238
7299
 
7239
7300
 
7240
7301
 
7241
7302
 
7242
- #### [Products](#Products)
7303
+ #### [ReasonsData](#ReasonsData)
7243
7304
 
7244
7305
  | Properties | Type | Nullable | Description |
7245
7306
  | ---------- | ---- | -------- | ----------- |
7246
- | line_number | number | no | |
7247
- | identifier | string | no | |
7248
- | quantity | number | no | |
7307
+ | products | [[ProductsReasons](#ProductsReasons)] | no | |
7308
+ | entities | [[EntitiesReasons](#EntitiesReasons)] | no | |
7249
7309
 
7250
7310
  ---
7251
7311
 
@@ -7257,9 +7317,9 @@ Sms Sent successfully
7257
7317
  | Properties | Type | Nullable | Description |
7258
7318
  | ---------- | ---- | -------- | ----------- |
7259
7319
  | data_updates | [DataUpdates](#DataUpdates) | no | |
7260
- | identifier | string | yes | |
7261
- | reasons | [ReasonsData](#ReasonsData) | no | |
7262
7320
  | products | [[Products](#Products)] | no | |
7321
+ | reasons | [ReasonsData](#ReasonsData) | no | |
7322
+ | identifier | string | yes | |
7263
7323
 
7264
7324
  ---
7265
7325
 
@@ -7270,8 +7330,8 @@ Sms Sent successfully
7270
7330
 
7271
7331
  | Properties | Type | Nullable | Description |
7272
7332
  | ---------- | ---- | -------- | ----------- |
7273
- | status | string | no | |
7274
7333
  | shipments | [[ShipmentsRequest](#ShipmentsRequest)] | no | |
7334
+ | status | string | no | |
7275
7335
  | exclude_bags_next_state | string | no | |
7276
7336
 
7277
7337
  ---
@@ -7283,11 +7343,11 @@ Sms Sent successfully
7283
7343
 
7284
7344
  | Properties | Type | Nullable | Description |
7285
7345
  | ---------- | ---- | -------- | ----------- |
7286
- | task | boolean | no | |
7287
- | force_transition | boolean | no | |
7288
- | statuses | [[StatuesRequest](#StatuesRequest)] | no | |
7289
7346
  | unlock_before_transition | boolean | no | |
7290
7347
  | lock_after_transition | boolean | no | |
7348
+ | force_transition | boolean | no | |
7349
+ | task | boolean | no | |
7350
+ | statuses | [[StatuesRequest](#StatuesRequest)] | no | |
7291
7351
 
7292
7352
  ---
7293
7353
 
@@ -7299,13 +7359,13 @@ Sms Sent successfully
7299
7359
  | Properties | Type | Nullable | Description |
7300
7360
  | ---------- | ---- | -------- | ----------- |
7301
7361
  | final_state | string | no | |
7302
- | status | number | no | |
7303
- | meta | string | no | |
7304
7362
  | identifier | string | no | |
7305
- | code | string | no | |
7363
+ | exception | string | no | |
7364
+ | meta | string | no | |
7306
7365
  | message | string | no | |
7366
+ | status | number | no | |
7367
+ | code | string | no | |
7307
7368
  | stack_trace | string | no | |
7308
- | exception | string | no | |
7309
7369
 
7310
7370
  ---
7311
7371
 
@@ -7334,102 +7394,102 @@ Sms Sent successfully
7334
7394
 
7335
7395
 
7336
7396
 
7337
- #### [AffiliateInventoryArticleAssignmentConfig](#AffiliateInventoryArticleAssignmentConfig)
7397
+ #### [AffiliateAppConfigMeta](#AffiliateAppConfigMeta)
7338
7398
 
7339
7399
  | Properties | Type | Nullable | Description |
7340
7400
  | ---------- | ---- | -------- | ----------- |
7341
- | post_order_reassignment | boolean | no | |
7401
+ | name | string | yes | |
7402
+ | value | string | yes | |
7342
7403
 
7343
7404
  ---
7344
7405
 
7345
7406
 
7346
7407
 
7347
7408
 
7348
- #### [AffiliateInventoryLogisticsConfig](#AffiliateInventoryLogisticsConfig)
7409
+ #### [AffiliateAppConfig](#AffiliateAppConfig)
7349
7410
 
7350
7411
  | Properties | Type | Nullable | Description |
7351
7412
  | ---------- | ---- | -------- | ----------- |
7352
- | dp_assignment | boolean | no | |
7413
+ | updated_at | string | yes | |
7414
+ | meta | [[AffiliateAppConfigMeta](#AffiliateAppConfigMeta)] | no | |
7415
+ | owner | string | yes | |
7416
+ | created_at | string | yes | |
7417
+ | token | string | yes | |
7418
+ | name | string | yes | |
7419
+ | id | string | yes | |
7420
+ | secret | string | yes | |
7421
+ | description | string | no | |
7353
7422
 
7354
7423
  ---
7355
7424
 
7356
7425
 
7357
7426
 
7358
7427
 
7359
- #### [AffiliateInventoryPaymentConfig](#AffiliateInventoryPaymentConfig)
7428
+ #### [AffiliateInventoryArticleAssignmentConfig](#AffiliateInventoryArticleAssignmentConfig)
7360
7429
 
7361
7430
  | Properties | Type | Nullable | Description |
7362
7431
  | ---------- | ---- | -------- | ----------- |
7363
- | mode_of_payment | string | no | |
7364
- | source | string | no | |
7432
+ | post_order_reassignment | boolean | no | |
7365
7433
 
7366
7434
  ---
7367
7435
 
7368
7436
 
7369
7437
 
7370
7438
 
7371
- #### [AffiliateInventoryStoreConfig](#AffiliateInventoryStoreConfig)
7439
+ #### [AffiliateInventoryPaymentConfig](#AffiliateInventoryPaymentConfig)
7372
7440
 
7373
7441
  | Properties | Type | Nullable | Description |
7374
7442
  | ---------- | ---- | -------- | ----------- |
7375
- | store | string | no | |
7443
+ | mode_of_payment | string | no | |
7444
+ | source | string | no | |
7376
7445
 
7377
7446
  ---
7378
7447
 
7379
7448
 
7380
7449
 
7381
7450
 
7382
- #### [AffiliateInventoryOrderConfig](#AffiliateInventoryOrderConfig)
7451
+ #### [AffiliateInventoryStoreConfig](#AffiliateInventoryStoreConfig)
7383
7452
 
7384
7453
  | Properties | Type | Nullable | Description |
7385
7454
  | ---------- | ---- | -------- | ----------- |
7386
- | force_reassignment | boolean | no | |
7455
+ | store | string | no | |
7387
7456
 
7388
7457
  ---
7389
7458
 
7390
7459
 
7391
7460
 
7392
7461
 
7393
- #### [AffiliateInventoryConfig](#AffiliateInventoryConfig)
7394
-
7395
- | Properties | Type | Nullable | Description |
7396
- | ---------- | ---- | -------- | ----------- |
7397
- | article_assignment | [AffiliateInventoryArticleAssignmentConfig](#AffiliateInventoryArticleAssignmentConfig) | no | |
7398
- | logistics | [AffiliateInventoryLogisticsConfig](#AffiliateInventoryLogisticsConfig) | no | |
7399
- | payment | [AffiliateInventoryPaymentConfig](#AffiliateInventoryPaymentConfig) | no | |
7400
- | inventory | [AffiliateInventoryStoreConfig](#AffiliateInventoryStoreConfig) | no | |
7401
- | order | [AffiliateInventoryOrderConfig](#AffiliateInventoryOrderConfig) | no | |
7462
+ #### [AffiliateInventoryOrderConfig](#AffiliateInventoryOrderConfig)
7463
+
7464
+ | Properties | Type | Nullable | Description |
7465
+ | ---------- | ---- | -------- | ----------- |
7466
+ | force_reassignment | boolean | no | |
7402
7467
 
7403
7468
  ---
7404
7469
 
7405
7470
 
7406
7471
 
7407
7472
 
7408
- #### [AffiliateAppConfigMeta](#AffiliateAppConfigMeta)
7473
+ #### [AffiliateInventoryLogisticsConfig](#AffiliateInventoryLogisticsConfig)
7409
7474
 
7410
7475
  | Properties | Type | Nullable | Description |
7411
7476
  | ---------- | ---- | -------- | ----------- |
7412
- | name | string | yes | |
7413
- | value | string | yes | |
7477
+ | dp_assignment | boolean | no | |
7414
7478
 
7415
7479
  ---
7416
7480
 
7417
7481
 
7418
7482
 
7419
7483
 
7420
- #### [AffiliateAppConfig](#AffiliateAppConfig)
7484
+ #### [AffiliateInventoryConfig](#AffiliateInventoryConfig)
7421
7485
 
7422
7486
  | Properties | Type | Nullable | Description |
7423
7487
  | ---------- | ---- | -------- | ----------- |
7424
- | secret | string | yes | |
7425
- | meta | [[AffiliateAppConfigMeta](#AffiliateAppConfigMeta)] | no | |
7426
- | name | string | yes | |
7427
- | updated_at | string | yes | |
7428
- | description | string | no | |
7429
- | owner | string | yes | |
7430
- | id | string | yes | |
7431
- | token | string | yes | |
7432
- | created_at | string | yes | |
7488
+ | article_assignment | [AffiliateInventoryArticleAssignmentConfig](#AffiliateInventoryArticleAssignmentConfig) | no | |
7489
+ | payment | [AffiliateInventoryPaymentConfig](#AffiliateInventoryPaymentConfig) | no | |
7490
+ | inventory | [AffiliateInventoryStoreConfig](#AffiliateInventoryStoreConfig) | no | |
7491
+ | order | [AffiliateInventoryOrderConfig](#AffiliateInventoryOrderConfig) | no | |
7492
+ | logistics | [AffiliateInventoryLogisticsConfig](#AffiliateInventoryLogisticsConfig) | no | |
7433
7493
 
7434
7494
  ---
7435
7495
 
@@ -7440,8 +7500,8 @@ Sms Sent successfully
7440
7500
 
7441
7501
  | Properties | Type | Nullable | Description |
7442
7502
  | ---------- | ---- | -------- | ----------- |
7443
- | inventory | [AffiliateInventoryConfig](#AffiliateInventoryConfig) | no | |
7444
7503
  | app | [AffiliateAppConfig](#AffiliateAppConfig) | no | |
7504
+ | inventory | [AffiliateInventoryConfig](#AffiliateInventoryConfig) | no | |
7445
7505
 
7446
7506
  ---
7447
7507
 
@@ -7452,9 +7512,9 @@ Sms Sent successfully
7452
7512
 
7453
7513
  | Properties | Type | Nullable | Description |
7454
7514
  | ---------- | ---- | -------- | ----------- |
7455
- | token | string | yes | |
7456
7515
  | config | [AffiliateConfig](#AffiliateConfig) | no | |
7457
7516
  | id | string | yes | |
7517
+ | token | string | yes | |
7458
7518
 
7459
7519
  ---
7460
7520
 
@@ -7478,11 +7538,11 @@ Sms Sent successfully
7478
7538
  | Properties | Type | Nullable | Description |
7479
7539
  | ---------- | ---- | -------- | ----------- |
7480
7540
  | affiliate | [Affiliate](#Affiliate) | yes | |
7481
- | create_user | boolean | no | |
7482
7541
  | bag_end_state | string | no | |
7483
- | store_lookup | string | no | |
7484
- | article_lookup | string | no | |
7485
7542
  | affiliate_store_id_mapping | [[AffiliateStoreIdMapping](#AffiliateStoreIdMapping)] | yes | |
7543
+ | article_lookup | string | no | |
7544
+ | create_user | boolean | no | |
7545
+ | store_lookup | string | no | |
7486
7546
 
7487
7547
  ---
7488
7548
 
@@ -7493,17 +7553,17 @@ Sms Sent successfully
7493
7553
 
7494
7554
  | Properties | Type | Nullable | Description |
7495
7555
  | ---------- | ---- | -------- | ----------- |
7496
- | phone | number | yes | |
7497
7556
  | city | string | yes | |
7498
- | state | string | yes | |
7499
- | last_name | string | yes | |
7500
7557
  | mobile | number | yes | |
7501
- | email | string | yes | |
7558
+ | last_name | string | yes | |
7559
+ | pincode | string | yes | |
7560
+ | phone | number | yes | |
7561
+ | state | string | yes | |
7502
7562
  | address1 | string | no | |
7563
+ | first_name | string | yes | |
7503
7564
  | address2 | string | no | |
7565
+ | email | string | yes | |
7504
7566
  | country | string | yes | |
7505
- | pincode | string | yes | |
7506
- | first_name | string | yes | |
7507
7567
 
7508
7568
  ---
7509
7569
 
@@ -7514,142 +7574,142 @@ Sms Sent successfully
7514
7574
 
7515
7575
  | Properties | Type | Nullable | Description |
7516
7576
  | ---------- | ---- | -------- | ----------- |
7517
- | billing_user | [OrderUser](#OrderUser) | no | |
7518
7577
  | shipping_user | [OrderUser](#OrderUser) | no | |
7578
+ | billing_user | [OrderUser](#OrderUser) | no | |
7519
7579
 
7520
7580
  ---
7521
7581
 
7522
7582
 
7523
7583
 
7524
7584
 
7525
- #### [OrderPriority](#OrderPriority)
7585
+ #### [ArticleDetails1](#ArticleDetails1)
7526
7586
 
7527
7587
  | Properties | Type | Nullable | Description |
7528
7588
  | ---------- | ---- | -------- | ----------- |
7529
- | fulfilment_priority_text | string | no | |
7530
- | fulfilment_priority | number | no | |
7531
- | affiliate_priority_code | string | no | |
7589
+ | category | string | yes | |
7590
+ | _id | string | yes | |
7591
+ | quantity | number | yes | |
7592
+ | dimension | string | yes | |
7593
+ | weight | string | yes | |
7594
+ | attributes | string | yes | |
7595
+ | brand_id | number | yes | |
7532
7596
 
7533
7597
  ---
7534
7598
 
7535
7599
 
7536
7600
 
7537
7601
 
7538
- #### [MarketPlacePdf](#MarketPlacePdf)
7602
+ #### [LocationDetails](#LocationDetails)
7539
7603
 
7540
7604
  | Properties | Type | Nullable | Description |
7541
7605
  | ---------- | ---- | -------- | ----------- |
7542
- | invoice | string | no | |
7543
- | label | string | no | |
7606
+ | fulfillment_id | number | yes | |
7607
+ | fulfillment_type | string | yes | |
7608
+ | articles | [[ArticleDetails1](#ArticleDetails1)] | yes | |
7544
7609
 
7545
7610
  ---
7546
7611
 
7547
7612
 
7548
7613
 
7549
7614
 
7550
- #### [AffiliateBag](#AffiliateBag)
7615
+ #### [ShipmentDetails](#ShipmentDetails)
7551
7616
 
7552
7617
  | Properties | Type | Nullable | Description |
7553
7618
  | ---------- | ---- | -------- | ----------- |
7554
- | avl_qty | number | yes | |
7555
- | store_id | number | yes | |
7556
- | fynd_store_id | string | yes | |
7557
- | unit_price | number | yes | |
7558
- | identifier | string | yes | |
7559
- | affiliate_store_id | string | yes | |
7560
- | amount_paid | number | yes | |
7561
- | affiliate_meta | string | yes | |
7562
- | price_effective | number | yes | |
7563
- | item_id | number | yes | |
7564
- | seller_identifier | string | yes | |
7565
- | modified_on | string | yes | |
7566
- | delivery_charge | number | yes | |
7567
- | discount | number | yes | |
7568
- | pdf_links | [MarketPlacePdf](#MarketPlacePdf) | no | |
7569
- | price_marked | number | yes | |
7570
- | company_id | number | yes | |
7571
- | transfer_price | number | yes | |
7572
- | quantity | number | yes | |
7573
- | hsn_code_id | string | yes | |
7574
- | item_size | string | yes | |
7575
- | sku | string | yes | |
7576
- | _id | string | yes | |
7619
+ | fulfillment_id | number | yes | |
7620
+ | dp_id | number | no | |
7621
+ | affiliate_shipment_id | string | yes | |
7622
+ | meta | string | no | |
7623
+ | articles | [[ArticleDetails1](#ArticleDetails1)] | yes | |
7624
+ | shipments | number | yes | |
7625
+ | box_type | string | no | |
7577
7626
 
7578
7627
  ---
7579
7628
 
7580
7629
 
7581
7630
 
7582
7631
 
7583
- #### [ArticleDetails1](#ArticleDetails1)
7632
+ #### [ShipmentConfig](#ShipmentConfig)
7584
7633
 
7585
7634
  | Properties | Type | Nullable | Description |
7586
7635
  | ---------- | ---- | -------- | ----------- |
7587
- | brand_id | number | yes | |
7588
- | attributes | string | yes | |
7589
- | category | string | yes | |
7590
- | quantity | number | yes | |
7591
- | dimension | string | yes | |
7592
- | weight | string | yes | |
7593
- | _id | string | yes | |
7636
+ | location_details | [LocationDetails](#LocationDetails) | no | |
7637
+ | action | string | yes | |
7638
+ | identifier | string | yes | |
7639
+ | shipment | [[ShipmentDetails](#ShipmentDetails)] | yes | |
7640
+ | source | string | yes | |
7641
+ | payment_mode | string | yes | |
7642
+ | journey | string | yes | |
7643
+ | to_pincode | string | yes | |
7594
7644
 
7595
7645
  ---
7596
7646
 
7597
7647
 
7598
7648
 
7599
7649
 
7600
- #### [ShipmentDetails](#ShipmentDetails)
7650
+ #### [ShipmentData](#ShipmentData)
7601
7651
 
7602
7652
  | Properties | Type | Nullable | Description |
7603
7653
  | ---------- | ---- | -------- | ----------- |
7604
- | dp_id | number | no | |
7605
- | meta | string | no | |
7606
- | affiliate_shipment_id | string | yes | |
7607
- | fulfillment_id | number | yes | |
7608
- | articles | [[ArticleDetails1](#ArticleDetails1)] | yes | |
7609
- | shipments | number | yes | |
7610
- | box_type | string | no | |
7654
+ | shipment_data | [ShipmentConfig](#ShipmentConfig) | yes | |
7611
7655
 
7612
7656
  ---
7613
7657
 
7614
7658
 
7615
7659
 
7616
7660
 
7617
- #### [LocationDetails](#LocationDetails)
7661
+ #### [MarketPlacePdf](#MarketPlacePdf)
7618
7662
 
7619
7663
  | Properties | Type | Nullable | Description |
7620
7664
  | ---------- | ---- | -------- | ----------- |
7621
- | articles | [[ArticleDetails1](#ArticleDetails1)] | yes | |
7622
- | fulfillment_type | string | yes | |
7623
- | fulfillment_id | number | yes | |
7665
+ | label | string | no | |
7666
+ | invoice | string | no | |
7624
7667
 
7625
7668
  ---
7626
7669
 
7627
7670
 
7628
7671
 
7629
7672
 
7630
- #### [ShipmentConfig](#ShipmentConfig)
7673
+ #### [AffiliateBag](#AffiliateBag)
7631
7674
 
7632
7675
  | Properties | Type | Nullable | Description |
7633
7676
  | ---------- | ---- | -------- | ----------- |
7634
- | action | string | yes | |
7635
- | to_pincode | string | yes | |
7636
- | shipment | [[ShipmentDetails](#ShipmentDetails)] | yes | |
7637
- | payment_mode | string | yes | |
7677
+ | avl_qty | number | yes | |
7678
+ | quantity | number | yes | |
7679
+ | amount_paid | number | yes | |
7680
+ | discount | number | yes | |
7681
+ | affiliate_store_id | string | yes | |
7682
+ | seller_identifier | string | yes | |
7683
+ | store_id | number | yes | |
7684
+ | fynd_store_id | string | yes | |
7685
+ | transfer_price | number | yes | |
7686
+ | item_size | string | yes | |
7687
+ | price_effective | number | yes | |
7688
+ | modified_on | string | yes | |
7689
+ | affiliate_meta | string | yes | |
7690
+ | hsn_code_id | string | yes | |
7691
+ | _id | string | yes | |
7692
+ | price_marked | number | yes | |
7693
+ | company_id | number | yes | |
7694
+ | delivery_charge | number | yes | |
7695
+ | item_id | number | yes | |
7696
+ | sku | string | yes | |
7638
7697
  | identifier | string | yes | |
7639
- | journey | string | yes | |
7640
- | location_details | [LocationDetails](#LocationDetails) | no | |
7641
- | source | string | yes | |
7698
+ | pdf_links | [MarketPlacePdf](#MarketPlacePdf) | no | |
7699
+ | unit_price | number | yes | |
7642
7700
 
7643
7701
  ---
7644
7702
 
7645
7703
 
7646
7704
 
7647
7705
 
7648
- #### [ShipmentData](#ShipmentData)
7706
+ #### [OrderPriority](#OrderPriority)
7649
7707
 
7650
7708
  | Properties | Type | Nullable | Description |
7651
7709
  | ---------- | ---- | -------- | ----------- |
7652
- | shipment_data | [ShipmentConfig](#ShipmentConfig) | yes | |
7710
+ | fulfilment_priority_text | string | no | |
7711
+ | fulfilment_priority | number | no | |
7712
+ | affiliate_priority_code | string | no | |
7653
7713
 
7654
7714
  ---
7655
7715
 
@@ -7660,21 +7720,21 @@ Sms Sent successfully
7660
7720
 
7661
7721
  | Properties | Type | Nullable | Description |
7662
7722
  | ---------- | ---- | -------- | ----------- |
7663
- | cod_charges | number | yes | |
7664
- | coupon | string | no | |
7665
- | discount | number | yes | |
7723
+ | payment | string | no | |
7724
+ | affiliate_order_id | string | no | |
7666
7725
  | user | [UserData](#UserData) | yes | |
7667
- | delivery_charges | number | yes | |
7668
- | order_priority | [OrderPriority](#OrderPriority) | no | |
7669
- | bags | [[AffiliateBag](#AffiliateBag)] | yes | |
7726
+ | shipping_address | [OrderUser](#OrderUser) | yes | |
7727
+ | billing_address | [OrderUser](#OrderUser) | yes | |
7670
7728
  | shipment | [ShipmentData](#ShipmentData) | no | |
7729
+ | discount | number | yes | |
7671
7730
  | payment_mode | string | yes | |
7672
- | billing_address | [OrderUser](#OrderUser) | yes | |
7673
- | payment | string | no | |
7674
- | shipping_address | [OrderUser](#OrderUser) | yes | |
7675
- | items | string | yes | |
7731
+ | bags | [[AffiliateBag](#AffiliateBag)] | yes | |
7732
+ | coupon | string | no | |
7733
+ | cod_charges | number | yes | |
7734
+ | delivery_charges | number | yes | |
7676
7735
  | order_value | number | yes | |
7677
- | affiliate_order_id | string | no | |
7736
+ | items | string | yes | |
7737
+ | order_priority | [OrderPriority](#OrderPriority) | no | |
7678
7738
 
7679
7739
  ---
7680
7740
 
@@ -7733,8 +7793,8 @@ Sms Sent successfully
7733
7793
  | Properties | Type | Nullable | Description |
7734
7794
  | ---------- | ---- | -------- | ----------- |
7735
7795
  | display_text | string | yes | |
7736
- | id | number | yes | |
7737
7796
  | slug | string | yes | |
7797
+ | id | number | yes | |
7738
7798
  | description | string | yes | |
7739
7799
 
7740
7800
  ---
@@ -7742,54 +7802,113 @@ Sms Sent successfully
7742
7802
 
7743
7803
 
7744
7804
 
7745
- #### [GetActionsResponse](#GetActionsResponse)
7805
+ #### [GetActionsResponse](#GetActionsResponse)
7806
+
7807
+ | Properties | Type | Nullable | Description |
7808
+ | ---------- | ---- | -------- | ----------- |
7809
+ | permissions | [ActionInfo](#ActionInfo) | yes | |
7810
+
7811
+ ---
7812
+
7813
+
7814
+
7815
+
7816
+ #### [HistoryDict](#HistoryDict)
7817
+
7818
+ | Properties | Type | Nullable | Description |
7819
+ | ---------- | ---- | -------- | ----------- |
7820
+ | type | string | yes | |
7821
+ | user | string | yes | |
7822
+ | l2_detail | string | no | |
7823
+ | bag_id | number | no | |
7824
+ | ticket_id | string | no | |
7825
+ | message | string | yes | |
7826
+ | createdat | string | yes | |
7827
+ | ticket_url | string | no | |
7828
+ | l1_detail | string | no | |
7829
+ | l3_detail | string | no | |
7830
+
7831
+ ---
7832
+
7833
+
7834
+
7835
+
7836
+ #### [ShipmentHistoryResponse](#ShipmentHistoryResponse)
7837
+
7838
+ | Properties | Type | Nullable | Description |
7839
+ | ---------- | ---- | -------- | ----------- |
7840
+ | activity_history | [[HistoryDict](#HistoryDict)] | yes | |
7841
+
7842
+ ---
7843
+
7844
+
7845
+
7846
+
7847
+ #### [ErrorDetail](#ErrorDetail)
7848
+
7849
+ | Properties | Type | Nullable | Description |
7850
+ | ---------- | ---- | -------- | ----------- |
7851
+ | message | string | no | |
7852
+ | success | boolean | no | |
7853
+
7854
+ ---
7855
+
7856
+
7857
+
7858
+
7859
+ #### [PostHistoryData](#PostHistoryData)
7860
+
7861
+ | Properties | Type | Nullable | Description |
7862
+ | ---------- | ---- | -------- | ----------- |
7863
+ | message | string | yes | |
7864
+ | user_name | string | yes | |
7865
+
7866
+ ---
7867
+
7868
+
7869
+
7870
+
7871
+ #### [PostHistoryFilters](#PostHistoryFilters)
7746
7872
 
7747
7873
  | Properties | Type | Nullable | Description |
7748
7874
  | ---------- | ---- | -------- | ----------- |
7749
- | permissions | [ActionInfo](#ActionInfo) | yes | |
7875
+ | shipment_id | string | yes | |
7876
+ | line_number | string | no | |
7877
+ | identifier | string | no | |
7750
7878
 
7751
7879
  ---
7752
7880
 
7753
7881
 
7754
7882
 
7755
7883
 
7756
- #### [HistoryDict](#HistoryDict)
7884
+ #### [PostActivityHistory](#PostActivityHistory)
7757
7885
 
7758
7886
  | Properties | Type | Nullable | Description |
7759
7887
  | ---------- | ---- | -------- | ----------- |
7760
- | ticket_id | string | no | |
7761
- | ticket_url | string | no | |
7762
- | user | string | yes | |
7763
- | type | string | yes | |
7764
- | createdat | string | yes | |
7765
- | bag_id | number | no | |
7766
- | l2_detail | string | no | |
7767
- | l1_detail | string | no | |
7768
- | message | string | yes | |
7769
- | l3_detail | string | no | |
7888
+ | data | [PostHistoryData](#PostHistoryData) | yes | |
7889
+ | filters | [[PostHistoryFilters](#PostHistoryFilters)] | yes | |
7770
7890
 
7771
7891
  ---
7772
7892
 
7773
7893
 
7774
7894
 
7775
7895
 
7776
- #### [ShipmentHistoryResponse](#ShipmentHistoryResponse)
7896
+ #### [PostHistoryDict](#PostHistoryDict)
7777
7897
 
7778
7898
  | Properties | Type | Nullable | Description |
7779
7899
  | ---------- | ---- | -------- | ----------- |
7780
- | activity_history | [[HistoryDict](#HistoryDict)] | no | |
7900
+ | activity_history | [PostActivityHistory](#PostActivityHistory) | yes | |
7781
7901
 
7782
7902
  ---
7783
7903
 
7784
7904
 
7785
7905
 
7786
7906
 
7787
- #### [ErrorDetail](#ErrorDetail)
7907
+ #### [PostShipmentHistory](#PostShipmentHistory)
7788
7908
 
7789
7909
  | Properties | Type | Nullable | Description |
7790
7910
  | ---------- | ---- | -------- | ----------- |
7791
- | message | string | no | |
7792
- | success | boolean | no | |
7911
+ | activity_history | [[PostHistoryDict](#PostHistoryDict)] | no | |
7793
7912
 
7794
7913
  ---
7795
7914
 
@@ -7801,14 +7920,14 @@ Sms Sent successfully
7801
7920
  | Properties | Type | Nullable | Description |
7802
7921
  | ---------- | ---- | -------- | ----------- |
7803
7922
  | order_id | string | yes | |
7804
- | customer_name | string | yes | |
7805
- | phone_number | number | yes | |
7806
- | payment_mode | string | yes | |
7807
7923
  | shipment_id | number | yes | |
7808
- | brand_name | string | yes | |
7809
- | message | string | yes | |
7810
7924
  | amount_paid | number | yes | |
7925
+ | payment_mode | string | yes | |
7926
+ | phone_number | number | yes | |
7927
+ | message | string | yes | |
7928
+ | customer_name | string | yes | |
7811
7929
  | country_code | string | yes | |
7930
+ | brand_name | string | yes | |
7812
7931
 
7813
7932
  ---
7814
7933
 
@@ -7819,9 +7938,9 @@ Sms Sent successfully
7819
7938
 
7820
7939
  | Properties | Type | Nullable | Description |
7821
7940
  | ---------- | ---- | -------- | ----------- |
7822
- | data | [SmsDataPayload](#SmsDataPayload) | no | |
7823
- | bag_id | number | yes | |
7824
7941
  | slug | string | yes | |
7942
+ | bag_id | number | yes | |
7943
+ | data | [SmsDataPayload](#SmsDataPayload) | no | |
7825
7944
 
7826
7945
  ---
7827
7946
 
@@ -7840,7 +7959,7 @@ Sms Sent successfully
7840
7959
 
7841
7960
 
7842
7961
 
7843
- #### [Meta](#Meta)
7962
+ #### [Meta1](#Meta1)
7844
7963
 
7845
7964
  | Properties | Type | Nullable | Description |
7846
7965
  | ---------- | ---- | -------- | ----------- |
@@ -7856,11 +7975,11 @@ Sms Sent successfully
7856
7975
 
7857
7976
  | Properties | Type | Nullable | Description |
7858
7977
  | ---------- | ---- | -------- | ----------- |
7978
+ | shipment_id | string | no | |
7979
+ | remarks | string | no | |
7859
7980
  | bag_list | [number] | no | |
7981
+ | meta | [Meta1](#Meta1) | yes | |
7860
7982
  | status | string | no | |
7861
- | meta | [Meta](#Meta) | yes | |
7862
- | remarks | string | no | |
7863
- | shipment_id | string | no | |
7864
7983
  | id | number | yes | |
7865
7984
 
7866
7985
  ---
@@ -7872,8 +7991,8 @@ Sms Sent successfully
7872
7991
 
7873
7992
  | Properties | Type | Nullable | Description |
7874
7993
  | ---------- | ---- | -------- | ----------- |
7875
- | order_details | [OrderDetails](#OrderDetails) | yes | |
7876
7994
  | errors | [string] | no | |
7995
+ | order_details | [OrderDetails](#OrderDetails) | yes | |
7877
7996
  | shipment_details | [[ShipmentDetail](#ShipmentDetail)] | no | |
7878
7997
 
7879
7998
  ---
@@ -7897,10 +8016,10 @@ Sms Sent successfully
7897
8016
 
7898
8017
  | Properties | Type | Nullable | Description |
7899
8018
  | ---------- | ---- | -------- | ----------- |
7900
- | qc_required | string | yes | |
7901
- | dp_id | number | yes | |
7902
8019
  | shipment_ids | [string] | no | |
8020
+ | dp_id | number | yes | |
7903
8021
  | order_type | string | yes | |
8022
+ | qc_required | string | yes | |
7904
8023
 
7905
8024
  ---
7906
8025
 
@@ -7923,181 +8042,181 @@ Sms Sent successfully
7923
8042
 
7924
8043
  | Properties | Type | Nullable | Description |
7925
8044
  | ---------- | ---- | -------- | ----------- |
7926
- | b2b_gstin_number | string | no | |
7927
8045
  | gstin | string | no | |
8046
+ | b2b_gstin_number | string | no | |
7928
8047
 
7929
8048
  ---
7930
8049
 
7931
8050
 
7932
8051
 
7933
8052
 
7934
- #### [ShippingInfo](#ShippingInfo)
8053
+ #### [BillingInfo](#BillingInfo)
7935
8054
 
7936
8055
  | Properties | Type | Nullable | Description |
7937
8056
  | ---------- | ---- | -------- | ----------- |
7938
- | address_type | string | no | |
7939
- | alternate_email | string | no | |
8057
+ | state_code | string | no | |
8058
+ | pincode | string | yes | |
7940
8059
  | customer_code | string | no | |
7941
- | first_name | string | yes | |
7942
- | country_code | string | no | |
8060
+ | alternate_mobile_number | string | no | |
8061
+ | middle_name | string | no | |
7943
8062
  | title | string | no | |
7944
8063
  | house_no | string | no | |
7945
- | state | string | yes | |
7946
- | geo_location | string | no | |
7947
- | state_code | string | no | |
7948
- | last_name | string | no | |
8064
+ | first_name | string | yes | |
7949
8065
  | gender | string | no | |
7950
- | pincode | string | yes | |
7951
- | address1 | string | yes | |
7952
- | alternate_mobile_number | string | no | |
7953
- | external_customer_code | string | no | |
8066
+ | last_name | string | no | |
8067
+ | city | string | yes | |
8068
+ | alternate_email | string | no | |
7954
8069
  | primary_email | string | yes | |
7955
- | slot | [string] | no | |
8070
+ | address2 | string | no | |
7956
8071
  | primary_mobile_number | string | yes | |
7957
- | middle_name | string | no | |
7958
- | city | string | yes | |
8072
+ | external_customer_code | string | no | |
8073
+ | state | string | yes | |
8074
+ | address1 | string | yes | |
7959
8075
  | floor_no | string | no | |
7960
- | shipping_type | string | no | |
7961
- | address2 | string | no | |
8076
+ | country_code | string | no | |
7962
8077
  | country | string | yes | |
7963
- | landmark | string | no | |
7964
8078
 
7965
8079
  ---
7966
8080
 
7967
8081
 
7968
8082
 
7969
8083
 
7970
- #### [Tax](#Tax)
8084
+ #### [ShippingInfo](#ShippingInfo)
7971
8085
 
7972
8086
  | Properties | Type | Nullable | Description |
7973
8087
  | ---------- | ---- | -------- | ----------- |
7974
- | rate | number | yes | |
7975
- | name | string | yes | |
7976
- | breakup | [string] | no | |
7977
- | amount | string | yes | |
8088
+ | state_code | string | no | |
8089
+ | pincode | string | yes | |
8090
+ | shipping_type | string | no | |
8091
+ | customer_code | string | no | |
8092
+ | alternate_mobile_number | string | no | |
8093
+ | address_type | string | no | |
8094
+ | middle_name | string | no | |
8095
+ | geo_location | string | no | |
8096
+ | title | string | no | |
8097
+ | house_no | string | no | |
8098
+ | first_name | string | yes | |
8099
+ | gender | string | no | |
8100
+ | last_name | string | no | |
8101
+ | slot | [string] | no | |
8102
+ | city | string | yes | |
8103
+ | alternate_email | string | no | |
8104
+ | primary_email | string | yes | |
8105
+ | address2 | string | no | |
8106
+ | primary_mobile_number | string | yes | |
8107
+ | external_customer_code | string | no | |
8108
+ | state | string | yes | |
8109
+ | address1 | string | yes | |
8110
+ | floor_no | string | no | |
8111
+ | landmark | string | no | |
8112
+ | country_code | string | no | |
8113
+ | country | string | yes | |
7978
8114
 
7979
8115
  ---
7980
8116
 
7981
8117
 
7982
8118
 
7983
8119
 
7984
- #### [Charge](#Charge)
8120
+ #### [PaymentMethod](#PaymentMethod)
7985
8121
 
7986
8122
  | Properties | Type | Nullable | Description |
7987
8123
  | ---------- | ---- | -------- | ----------- |
7988
- | tax | [Tax](#Tax) | no | |
7989
- | type | string | yes | |
8124
+ | refund_by | string | yes | |
8125
+ | mode | string | yes | |
8126
+ | meta | string | no | |
8127
+ | amount | number | yes | |
7990
8128
  | name | string | yes | |
7991
- | amount | string | yes | |
7992
- | code | string | no | |
8129
+ | transaction_data | string | no | |
8130
+ | collect_by | string | yes | |
7993
8131
 
7994
8132
  ---
7995
8133
 
7996
8134
 
7997
8135
 
7998
8136
 
7999
- #### [ProcessingDates](#ProcessingDates)
8137
+ #### [PaymentInfo](#PaymentInfo)
8000
8138
 
8001
8139
  | Properties | Type | Nullable | Description |
8002
8140
  | ---------- | ---- | -------- | ----------- |
8003
- | confirm_by_date | string | no | |
8004
- | pack_by_date | string | no | |
8005
- | dispatch_by_date | string | no | |
8006
- | dp_pickup_slot | string | no | |
8007
- | dispatch_after_date | string | no | |
8008
- | customer_pickup_slot | string | no | |
8141
+ | payment_methods | [[PaymentMethod](#PaymentMethod)] | no | |
8142
+ | primary_mode | string | yes | |
8009
8143
 
8010
8144
  ---
8011
8145
 
8012
8146
 
8013
8147
 
8014
8148
 
8015
- #### [LineItem](#LineItem)
8149
+ #### [Tax](#Tax)
8016
8150
 
8017
8151
  | Properties | Type | Nullable | Description |
8018
8152
  | ---------- | ---- | -------- | ----------- |
8019
- | custom_messasge | string | no | |
8020
- | meta | string | no | |
8021
- | seller_identifier | string | yes | |
8022
- | quantity | number | no | |
8023
- | charges | [[Charge](#Charge)] | no | |
8024
- | external_line_id | string | no | |
8153
+ | name | string | yes | |
8154
+ | breakup | [string] | no | |
8155
+ | amount | string | yes | |
8156
+ | rate | number | yes | |
8025
8157
 
8026
8158
  ---
8027
8159
 
8028
8160
 
8029
8161
 
8030
8162
 
8031
- #### [Shipment](#Shipment)
8163
+ #### [Charge](#Charge)
8032
8164
 
8033
8165
  | Properties | Type | Nullable | Description |
8034
8166
  | ---------- | ---- | -------- | ----------- |
8035
- | processing_dates | [ProcessingDates](#ProcessingDates) | no | |
8036
- | external_shipment_id | string | no | |
8037
- | meta | string | no | |
8038
- | location_id | number | yes | |
8039
- | priority | number | no | |
8040
- | line_items | [[LineItem](#LineItem)] | yes | |
8167
+ | type | string | yes | |
8168
+ | tax | [Tax](#Tax) | no | |
8169
+ | amount | string | yes | |
8170
+ | name | string | yes | |
8171
+ | code | string | no | |
8041
8172
 
8042
8173
  ---
8043
8174
 
8044
8175
 
8045
8176
 
8046
8177
 
8047
- #### [PaymentMethod](#PaymentMethod)
8178
+ #### [ProcessingDates](#ProcessingDates)
8048
8179
 
8049
8180
  | Properties | Type | Nullable | Description |
8050
8181
  | ---------- | ---- | -------- | ----------- |
8051
- | collect_by | string | yes | |
8052
- | transaction_data | string | no | |
8053
- | name | string | yes | |
8054
- | meta | string | no | |
8055
- | refund_by | string | yes | |
8056
- | amount | number | yes | |
8057
- | mode | string | yes | |
8182
+ | pack_by_date | string | no | |
8183
+ | dispatch_by_date | string | no | |
8184
+ | confirm_by_date | string | no | |
8185
+ | customer_pickup_slot | string | no | |
8186
+ | dp_pickup_slot | string | no | |
8187
+ | dispatch_after_date | string | no | |
8058
8188
 
8059
8189
  ---
8060
8190
 
8061
8191
 
8062
8192
 
8063
8193
 
8064
- #### [PaymentInfo](#PaymentInfo)
8194
+ #### [LineItem](#LineItem)
8065
8195
 
8066
8196
  | Properties | Type | Nullable | Description |
8067
8197
  | ---------- | ---- | -------- | ----------- |
8068
- | primary_mode | string | yes | |
8069
- | payment_methods | [[PaymentMethod](#PaymentMethod)] | no | |
8198
+ | external_line_id | string | no | |
8199
+ | meta | string | no | |
8200
+ | quantity | number | no | |
8201
+ | seller_identifier | string | yes | |
8202
+ | charges | [[Charge](#Charge)] | no | |
8203
+ | custom_messasge | string | no | |
8070
8204
 
8071
8205
  ---
8072
8206
 
8073
8207
 
8074
8208
 
8075
8209
 
8076
- #### [BillingInfo](#BillingInfo)
8210
+ #### [Shipment](#Shipment)
8077
8211
 
8078
8212
  | Properties | Type | Nullable | Description |
8079
8213
  | ---------- | ---- | -------- | ----------- |
8080
- | alternate_email | string | no | |
8081
- | customer_code | string | no | |
8082
- | first_name | string | yes | |
8083
- | country_code | string | no | |
8084
- | title | string | no | |
8085
- | house_no | string | no | |
8086
- | state | string | yes | |
8087
- | state_code | string | no | |
8088
- | last_name | string | no | |
8089
- | gender | string | no | |
8090
- | pincode | string | yes | |
8091
- | address1 | string | yes | |
8092
- | alternate_mobile_number | string | no | |
8093
- | external_customer_code | string | no | |
8094
- | primary_email | string | yes | |
8095
- | primary_mobile_number | string | yes | |
8096
- | middle_name | string | no | |
8097
- | city | string | yes | |
8098
- | floor_no | string | no | |
8099
- | address2 | string | no | |
8100
- | country | string | yes | |
8214
+ | processing_dates | [ProcessingDates](#ProcessingDates) | no | |
8215
+ | meta | string | no | |
8216
+ | external_shipment_id | string | no | |
8217
+ | location_id | number | yes | |
8218
+ | line_items | [[LineItem](#LineItem)] | yes | |
8219
+ | priority | number | no | |
8101
8220
 
8102
8221
  ---
8103
8222
 
@@ -8108,16 +8227,16 @@ Sms Sent successfully
8108
8227
 
8109
8228
  | Properties | Type | Nullable | Description |
8110
8229
  | ---------- | ---- | -------- | ----------- |
8111
- | external_creation_date | string | no | |
8112
8230
  | tax_info | [TaxInfo](#TaxInfo) | no | |
8113
- | currency_info | string | no | |
8114
- | meta | string | no | |
8115
- | external_order_id | string | no | |
8231
+ | billing_info | [BillingInfo](#BillingInfo) | yes | |
8116
8232
  | shipping_info | [ShippingInfo](#ShippingInfo) | yes | |
8233
+ | meta | string | no | |
8234
+ | external_creation_date | string | no | |
8235
+ | payment_info | [PaymentInfo](#PaymentInfo) | yes | |
8117
8236
  | charges | [[Charge](#Charge)] | no | |
8237
+ | currency_info | string | no | |
8118
8238
  | shipments | [[Shipment](#Shipment)] | yes | |
8119
- | payment_info | [PaymentInfo](#PaymentInfo) | yes | |
8120
- | billing_info | [BillingInfo](#BillingInfo) | yes | |
8239
+ | external_order_id | string | no | |
8121
8240
 
8122
8241
  ---
8123
8242
 
@@ -8129,13 +8248,13 @@ Sms Sent successfully
8129
8248
  | Properties | Type | Nullable | Description |
8130
8249
  | ---------- | ---- | -------- | ----------- |
8131
8250
  | request_id | string | no | |
8132
- | status | number | yes | |
8251
+ | exception | string | no | |
8133
8252
  | meta | string | no | |
8134
- | info | any | no | |
8135
- | code | string | no | |
8136
8253
  | message | string | yes | |
8254
+ | status | number | yes | |
8255
+ | code | string | no | |
8256
+ | info | any | no | |
8137
8257
  | stack_trace | string | no | |
8138
- | exception | string | no | |
8139
8258
 
8140
8259
  ---
8141
8260
 
@@ -8147,8 +8266,8 @@ Sms Sent successfully
8147
8266
  | Properties | Type | Nullable | Description |
8148
8267
  | ---------- | ---- | -------- | ----------- |
8149
8268
  | collect_by | string | no | |
8150
- | refund_by | string | no | |
8151
8269
  | mode | string | no | |
8270
+ | refund_by | string | no | |
8152
8271
 
8153
8272
  ---
8154
8273
 
@@ -8160,8 +8279,8 @@ Sms Sent successfully
8160
8279
  | Properties | Type | Nullable | Description |
8161
8280
  | ---------- | ---- | -------- | ----------- |
8162
8281
  | mode_of_payment | string | no | |
8163
- | payment_methods | [[PaymentMethods](#PaymentMethods)] | no | |
8164
8282
  | source | string | no | |
8283
+ | payment_methods | [[PaymentMethods](#PaymentMethods)] | no | |
8165
8284
 
8166
8285
  ---
8167
8286
 
@@ -8183,11 +8302,11 @@ Sms Sent successfully
8183
8302
 
8184
8303
  | Properties | Type | Nullable | Description |
8185
8304
  | ---------- | ---- | -------- | ----------- |
8186
- | logo_url | string | no | |
8187
8305
  | lock_states | [string] | no | |
8306
+ | logo_url | string | no | |
8188
8307
  | location_reassignment | boolean | no | |
8189
- | payment_info | [CreateChannelPaymentInfo](#CreateChannelPaymentInfo) | no | |
8190
8308
  | shipment_assignment | string | no | |
8309
+ | payment_info | [CreateChannelPaymentInfo](#CreateChannelPaymentInfo) | no | |
8191
8310
  | dp_configuration | [DpConfiguration](#DpConfiguration) | no | |
8192
8311
 
8193
8312
  ---
@@ -8206,24 +8325,24 @@ Sms Sent successfully
8206
8325
 
8207
8326
 
8208
8327
 
8209
- #### [CreateChannelConfigResponse](#CreateChannelConfigResponse)
8328
+ #### [CreateChannelConifgErrorResponse](#CreateChannelConifgErrorResponse)
8210
8329
 
8211
8330
  | Properties | Type | Nullable | Description |
8212
8331
  | ---------- | ---- | -------- | ----------- |
8213
- | is_upserted | boolean | no | |
8214
- | acknowledged | boolean | no | |
8215
- | is_inserted | boolean | no | |
8332
+ | error | string | no | |
8216
8333
 
8217
8334
  ---
8218
8335
 
8219
8336
 
8220
8337
 
8221
8338
 
8222
- #### [CreateChannelConifgErrorResponse](#CreateChannelConifgErrorResponse)
8339
+ #### [CreateChannelConfigResponse](#CreateChannelConfigResponse)
8223
8340
 
8224
8341
  | Properties | Type | Nullable | Description |
8225
8342
  | ---------- | ---- | -------- | ----------- |
8226
- | error | string | no | |
8343
+ | is_upserted | boolean | no | |
8344
+ | is_inserted | boolean | no | |
8345
+ | acknowledged | boolean | no | |
8227
8346
 
8228
8347
  ---
8229
8348
 
@@ -8280,10 +8399,10 @@ Sms Sent successfully
8280
8399
 
8281
8400
  | Properties | Type | Nullable | Description |
8282
8401
  | ---------- | ---- | -------- | ----------- |
8402
+ | end_date | string | yes | |
8283
8403
  | mobile | number | yes | |
8284
8404
  | order_details | [[FyndOrderIdList](#FyndOrderIdList)] | no | |
8285
8405
  | start_date | string | yes | |
8286
- | end_date | string | yes | |
8287
8406
 
8288
8407
  ---
8289
8408