@gofynd/fdk-client-javascript 1.0.1 → 1.0.2

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 (134) hide show
  1. package/documentation/application/CART.md +251 -251
  2. package/documentation/application/CATALOG.md +414 -414
  3. package/documentation/application/CONTENT.md +15 -1
  4. package/documentation/application/ORDER.md +290 -290
  5. package/documentation/application/PAYMENT.md +255 -255
  6. package/documentation/application/POSCART.md +297 -297
  7. package/documentation/platform/CART.md +499 -499
  8. package/documentation/platform/CATALOG.md +3088 -2702
  9. package/documentation/platform/COMPANYPROFILE.md +201 -201
  10. package/documentation/platform/CONTENT.md +123 -1
  11. package/documentation/platform/ORDER.md +1233 -1158
  12. package/documentation/platform/PARTNER.md +7 -7
  13. package/documentation/platform/PAYMENT.md +83 -83
  14. package/package.json +1 -1
  15. package/sdk/application/ApplicationConfig.js +1 -1
  16. package/sdk/application/Cart/CartApplicationClient.js +619 -108
  17. package/sdk/application/Cart/CartApplicationModel.d.ts +7 -7
  18. package/sdk/application/Cart/CartApplicationModel.js +335 -335
  19. package/sdk/application/Catalog/CatalogApplicationClient.d.ts +1 -1
  20. package/sdk/application/Catalog/CatalogApplicationClient.js +730 -134
  21. package/sdk/application/Catalog/CatalogApplicationModel.d.ts +21 -21
  22. package/sdk/application/Catalog/CatalogApplicationModel.js +547 -547
  23. package/sdk/application/Common/CommonApplicationClient.js +48 -8
  24. package/sdk/application/Communication/CommunicationApplicationClient.js +75 -14
  25. package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +1 -1
  26. package/sdk/application/Configuration/ConfigurationApplicationClient.js +392 -66
  27. package/sdk/application/Content/ContentApplicationClient.js +444 -76
  28. package/sdk/application/Content/ContentApplicationModel.d.ts +1 -0
  29. package/sdk/application/Content/ContentApplicationModel.js +11 -1
  30. package/sdk/application/FileStorage/FileStorageApplicationClient.js +74 -12
  31. package/sdk/application/Lead/LeadApplicationClient.js +164 -30
  32. package/sdk/application/Logistic/LogisticApplicationClient.js +98 -16
  33. package/sdk/application/Order/OrderApplicationClient.d.ts +1 -1
  34. package/sdk/application/Order/OrderApplicationClient.js +287 -54
  35. package/sdk/application/Order/OrderApplicationModel.d.ts +19 -19
  36. package/sdk/application/Order/OrderApplicationModel.js +357 -357
  37. package/sdk/application/Payment/PaymentApplicationClient.js +961 -186
  38. package/sdk/application/Payment/PaymentApplicationModel.d.ts +3 -3
  39. package/sdk/application/Payment/PaymentApplicationModel.js +352 -352
  40. package/sdk/application/PosCart/PosCartApplicationClient.js +645 -114
  41. package/sdk/application/PosCart/PosCartApplicationModel.d.ts +15 -15
  42. package/sdk/application/PosCart/PosCartApplicationModel.js +389 -389
  43. package/sdk/application/Rewards/RewardsApplicationClient.js +168 -28
  44. package/sdk/application/Share/ShareApplicationClient.js +157 -32
  45. package/sdk/application/Theme/ThemeApplicationClient.js +94 -16
  46. package/sdk/application/User/UserApplicationClient.js +806 -148
  47. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +16 -8
  48. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +191 -34
  49. package/sdk/platform/Analytics/AnalyticsPlatformClient.d.ts +8 -4
  50. package/sdk/platform/Analytics/AnalyticsPlatformClient.js +103 -16
  51. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +8 -4
  52. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +103 -16
  53. package/sdk/platform/Billing/BillingPlatformClient.d.ts +24 -12
  54. package/sdk/platform/Billing/BillingPlatformClient.js +299 -54
  55. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +34 -17
  56. package/sdk/platform/Cart/CartPlatformApplicationClient.js +409 -72
  57. package/sdk/platform/Cart/CartPlatformModel.d.ts +35 -35
  58. package/sdk/platform/Cart/CartPlatformModel.js +617 -617
  59. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +167 -114
  60. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +1562 -453
  61. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +8 -8
  62. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +39 -39
  63. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +314 -196
  64. package/sdk/platform/Catalog/CatalogPlatformClient.js +2459 -718
  65. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +103 -94
  66. package/sdk/platform/Catalog/CatalogPlatformModel.js +2063 -1797
  67. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +17 -15
  68. package/sdk/platform/Catalog/CatalogPlatformValidator.js +95 -76
  69. package/sdk/platform/Common/CommonPlatformClient.d.ts +4 -2
  70. package/sdk/platform/Common/CommonPlatformClient.js +51 -8
  71. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +80 -40
  72. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +1000 -168
  73. package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +2 -1
  74. package/sdk/platform/Communication/CommunicationPlatformClient.js +28 -4
  75. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +27 -14
  76. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +335 -54
  77. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +10 -10
  78. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +278 -278
  79. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +56 -28
  80. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +702 -118
  81. package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +36 -18
  82. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +457 -82
  83. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +148 -67
  84. package/sdk/platform/Content/ContentPlatformApplicationClient.js +1724 -284
  85. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +1 -0
  86. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +7 -0
  87. package/sdk/platform/Content/ContentPlatformModel.d.ts +4 -0
  88. package/sdk/platform/Content/ContentPlatformModel.js +43 -1
  89. package/sdk/platform/Discount/DiscountPlatformClient.d.ts +21 -10
  90. package/sdk/platform/Discount/DiscountPlatformClient.js +270 -44
  91. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +8 -4
  92. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +102 -16
  93. package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +12 -6
  94. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +150 -24
  95. package/sdk/platform/Inventory/InventoryPlatformClient.d.ts +27 -14
  96. package/sdk/platform/Inventory/InventoryPlatformClient.js +316 -52
  97. package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +26 -13
  98. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +311 -52
  99. package/sdk/platform/Lead/LeadPlatformClient.d.ts +22 -11
  100. package/sdk/platform/Lead/LeadPlatformClient.js +266 -44
  101. package/sdk/platform/OAuthClient.js +8 -8
  102. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +6 -3
  103. package/sdk/platform/Order/OrderPlatformApplicationClient.js +78 -14
  104. package/sdk/platform/Order/OrderPlatformClient.d.ts +95 -43
  105. package/sdk/platform/Order/OrderPlatformClient.js +1062 -180
  106. package/sdk/platform/Order/OrderPlatformModel.d.ts +64 -60
  107. package/sdk/platform/Order/OrderPlatformModel.js +1481 -1425
  108. package/sdk/platform/Order/OrderPlatformValidator.js +5 -0
  109. package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +4 -2
  110. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +52 -8
  111. package/sdk/platform/Partner/PartnerPlatformModel.d.ts +1 -1
  112. package/sdk/platform/Partner/PartnerPlatformModel.js +8 -8
  113. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +22 -11
  114. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +287 -56
  115. package/sdk/platform/Payment/PaymentPlatformClient.d.ts +21 -11
  116. package/sdk/platform/Payment/PaymentPlatformClient.js +263 -48
  117. package/sdk/platform/Payment/PaymentPlatformModel.js +122 -122
  118. package/sdk/platform/PlatformApplicationClient.d.ts +2959 -2787
  119. package/sdk/platform/PlatformApplicationClient.js +3420 -3212
  120. package/sdk/platform/PlatformClient.d.ts +2959 -2787
  121. package/sdk/platform/PlatformClient.js +3420 -3212
  122. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +26 -13
  123. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +308 -54
  124. package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +8 -4
  125. package/sdk/platform/Share/SharePlatformApplicationClient.js +94 -16
  126. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +47 -23
  127. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +571 -96
  128. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +24 -12
  129. package/sdk/platform/User/UserPlatformApplicationClient.js +296 -48
  130. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +12 -6
  131. package/sdk/platform/Webhook/WebhookPlatformClient.js +157 -30
  132. package/sdk/public/Configuration/ConfigurationPublicClient.js +51 -8
  133. package/sdk/public/Inventory/InventoryPublicClient.js +149 -26
  134. package/sdk/public/Webhook/WebhookPublicClient.js +51 -10
@@ -69,6 +69,8 @@ Handles all platform order and shipment api(s)
69
69
  ```javascript
70
70
  // Promise
71
71
  const promise = client.order.getShipments({ lane : value,
72
+ bagStatus : value,
73
+ statusOverrideLane : value,
72
74
  searchType : value,
73
75
  searchValue : value,
74
76
  searchId : value,
@@ -82,14 +84,19 @@ const promise = client.order.getShipments({ lane : value,
82
84
  pageNo : value,
83
85
  pageSize : value,
84
86
  isPrioritySort : value,
87
+ fetchActiveShipment : value,
85
88
  excludeLockedShipments : value,
86
89
  paymentMethods : value,
87
90
  channelShipmentId : value,
88
91
  channelOrderId : value,
89
- customMeta : value });
92
+ customMeta : value,
93
+ orderingChannel : value,
94
+ companyAffiliateTag : value });
90
95
 
91
96
  // Async/Await
92
97
  const data = await client.order.getShipments({ lane : value,
98
+ bagStatus : value,
99
+ statusOverrideLane : value,
93
100
  searchType : value,
94
101
  searchValue : value,
95
102
  searchId : value,
@@ -103,11 +110,14 @@ const data = await client.order.getShipments({ lane : value,
103
110
  pageNo : value,
104
111
  pageSize : value,
105
112
  isPrioritySort : value,
113
+ fetchActiveShipment : value,
106
114
  excludeLockedShipments : value,
107
115
  paymentMethods : value,
108
116
  channelShipmentId : value,
109
117
  channelOrderId : value,
110
- customMeta : value });
118
+ customMeta : value,
119
+ orderingChannel : value,
120
+ companyAffiliateTag : value });
111
121
  ```
112
122
 
113
123
 
@@ -117,6 +127,8 @@ const data = await client.order.getShipments({ lane : value,
117
127
  | Argument | Type | Required | Description |
118
128
  | --------- | ----- | -------- | ----------- |
119
129
  | lane | string | no | |
130
+ | bagStatus | string | no | |
131
+ | statusOverrideLane | boolean | no | |
120
132
  | searchType | string | no | |
121
133
  | searchValue | string | no | |
122
134
  | searchId | string | no | |
@@ -130,11 +142,14 @@ const data = await client.order.getShipments({ lane : value,
130
142
  | pageNo | number | no | |
131
143
  | pageSize | number | no | |
132
144
  | isPrioritySort | boolean | no | |
145
+ | fetchActiveShipment | boolean | no | |
133
146
  | excludeLockedShipments | boolean | no | |
134
147
  | paymentMethods | string | no | |
135
148
  | channelShipmentId | string | no | |
136
149
  | channelOrderId | string | no | |
137
- | customMeta | string | no | |
150
+ | customMeta | string | no | |
151
+ | orderingChannel | string | no | |
152
+ | companyAffiliateTag | string | no | |
138
153
 
139
154
 
140
155
 
@@ -4935,9 +4950,9 @@ Sms Sent successfully
4935
4950
 
4936
4951
  | Properties | Type | Nullable | Description |
4937
4952
  | ---------- | ---- | -------- | ----------- |
4953
+ | name | string | no | |
4938
4954
  | value | string | no | |
4939
4955
  | text | string | yes | |
4940
- | name | string | no | |
4941
4956
 
4942
4957
  ---
4943
4958
 
@@ -4948,9 +4963,9 @@ Sms Sent successfully
4948
4963
 
4949
4964
  | Properties | Type | Nullable | Description |
4950
4965
  | ---------- | ---- | -------- | ----------- |
4966
+ | options | [[FilterInfoOption](#FilterInfoOption)] | no | |
4951
4967
  | value | string | yes | |
4952
4968
  | text | string | yes | |
4953
- | options | [[FilterInfoOption](#FilterInfoOption)] | no | |
4954
4969
  | type | string | yes | |
4955
4970
 
4956
4971
  ---
@@ -4958,43 +4973,27 @@ Sms Sent successfully
4958
4973
 
4959
4974
 
4960
4975
 
4961
- #### [UserDataInfo](#UserDataInfo)
4962
-
4963
- | Properties | Type | Nullable | Description |
4964
- | ---------- | ---- | -------- | ----------- |
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 | |
4974
-
4975
- ---
4976
-
4977
-
4978
-
4979
-
4980
4976
  #### [PaymentModeInfo](#PaymentModeInfo)
4981
4977
 
4982
4978
  | Properties | Type | Nullable | Description |
4983
4979
  | ---------- | ---- | -------- | ----------- |
4984
- | type | string | yes | |
4985
4980
  | logo | string | yes | |
4981
+ | type | string | yes | |
4986
4982
 
4987
4983
  ---
4988
4984
 
4989
4985
 
4990
4986
 
4991
4987
 
4992
- #### [ShipmentItemFulFillingStore](#ShipmentItemFulFillingStore)
4988
+ #### [GSTDetailsData](#GSTDetailsData)
4993
4989
 
4994
4990
  | Properties | Type | Nullable | Description |
4995
4991
  | ---------- | ---- | -------- | ----------- |
4996
- | id | string | yes | |
4997
- | code | string | yes | |
4992
+ | value_of_good | number | yes | |
4993
+ | tax_collected_at_source | number | yes | |
4994
+ | gst_fee | number | yes | |
4995
+ | brand_calculated_amount | number | yes | |
4996
+ | gstin_code | string | yes | |
4998
4997
 
4999
4998
  ---
5000
4999
 
@@ -5005,97 +5004,113 @@ Sms Sent successfully
5005
5004
 
5006
5005
  | Properties | Type | Nullable | Description |
5007
5006
  | ---------- | ---- | -------- | ----------- |
5008
- | cashback | number | no | |
5009
- | amount_paid | number | no | |
5010
- | amount_paid_roundoff | number | no | |
5011
5007
  | transfer_price | number | no | |
5012
- | tax_collected_at_source | number | no | |
5013
- | promotion_effective_discount | number | no | |
5008
+ | price_marked | number | no | |
5014
5009
  | refund_amount | number | no | |
5015
- | cod_charges | number | no | |
5010
+ | cashback_applied | number | no | |
5016
5011
  | delivery_charge | number | no | |
5017
- | price_effective | number | no | |
5018
- | fynd_credits | number | no | |
5019
- | coupon_value | number | no | |
5012
+ | cashback | number | no | |
5020
5013
  | value_of_good | number | no | |
5014
+ | coupon_value | number | no | |
5015
+ | amount_paid | number | no | |
5016
+ | fynd_credits | number | no | |
5017
+ | cod_charges | number | no | |
5018
+ | tax_collected_at_source | number | no | |
5021
5019
  | discount | number | no | |
5022
- | price_marked | number | no | |
5020
+ | promotion_effective_discount | number | no | |
5021
+ | price_effective | number | no | |
5023
5022
  | refund_credit | number | no | |
5024
- | cashback_applied | number | no | |
5023
+ | amount_paid_roundoff | number | no | |
5025
5024
 
5026
5025
  ---
5027
5026
 
5028
5027
 
5029
5028
 
5030
5029
 
5031
- #### [ShipmentStatus](#ShipmentStatus)
5030
+ #### [PlatformItem](#PlatformItem)
5032
5031
 
5033
5032
  | Properties | Type | Nullable | Description |
5034
5033
  | ---------- | ---- | -------- | ----------- |
5035
- | title | string | yes | |
5036
- | status | string | yes | |
5037
- | hex_code | string | yes | |
5038
- | actual_status | string | yes | |
5039
- | ops_status | string | yes | |
5034
+ | l1_category | [string] | no | |
5035
+ | images | [string] | no | |
5036
+ | l3_category_name | string | no | |
5037
+ | name | string | no | |
5038
+ | can_cancel | boolean | no | |
5039
+ | color | string | no | |
5040
+ | image | [string] | no | |
5041
+ | code | string | no | |
5042
+ | size | string | no | |
5043
+ | can_return | boolean | no | |
5044
+ | department_id | number | no | |
5045
+ | id | number | no | |
5046
+ | l3_category | number | no | |
5040
5047
 
5041
5048
  ---
5042
5049
 
5043
5050
 
5044
5051
 
5045
5052
 
5046
- #### [GSTDetailsData](#GSTDetailsData)
5053
+ #### [BagUnit](#BagUnit)
5047
5054
 
5048
5055
  | Properties | Type | Nullable | Description |
5049
5056
  | ---------- | ---- | -------- | ----------- |
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 | |
5057
+ | total_shipment_bags | number | yes | |
5058
+ | gst | [GSTDetailsData](#GSTDetailsData) | no | |
5059
+ | can_cancel | boolean | no | |
5060
+ | status | string | yes | |
5061
+ | item_quantity | number | yes | |
5062
+ | prices | [Prices](#Prices) | no | |
5063
+ | bag_id | number | yes | |
5064
+ | can_return | boolean | no | |
5065
+ | item | [PlatformItem](#PlatformItem) | no | |
5066
+ | shipment_id | string | yes | |
5067
+ | ordering_channel | string | yes | |
5055
5068
 
5056
5069
  ---
5057
5070
 
5058
5071
 
5059
5072
 
5060
5073
 
5061
- #### [PlatformItem](#PlatformItem)
5074
+ #### [ShipmentItemFulFillingStore](#ShipmentItemFulFillingStore)
5062
5075
 
5063
5076
  | Properties | Type | Nullable | Description |
5064
5077
  | ---------- | ---- | -------- | ----------- |
5065
- | size | string | no | |
5066
- | images | [string] | no | |
5067
- | color | string | no | |
5068
- | name | 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
+ | id | string | yes | |
5079
+ | code | string | yes | |
5078
5080
 
5079
5081
  ---
5080
5082
 
5081
5083
 
5082
5084
 
5083
5085
 
5084
- #### [BagUnit](#BagUnit)
5086
+ #### [ShipmentStatus](#ShipmentStatus)
5085
5087
 
5086
5088
  | Properties | Type | Nullable | Description |
5087
5089
  | ---------- | ---- | -------- | ----------- |
5088
- | shipment_id | string | yes | |
5090
+ | actual_status | string | yes | |
5091
+ | hex_code | string | yes | |
5089
5092
  | 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 | |
5093
+ | title | string | yes | |
5094
+ | ops_status | string | yes | |
5095
+
5096
+ ---
5097
+
5098
+
5099
+
5100
+
5101
+ #### [UserDataInfo](#UserDataInfo)
5102
+
5103
+ | Properties | Type | Nullable | Description |
5104
+ | ---------- | ---- | -------- | ----------- |
5105
+ | name | string | no | |
5106
+ | last_name | string | no | |
5107
+ | uid | number | no | |
5108
+ | gender | string | no | |
5109
+ | email | string | no | |
5110
+ | mobile | string | no | |
5111
+ | avis_user_id | string | no | |
5112
+ | first_name | string | no | |
5113
+ | is_anonymous_user | boolean | no | |
5099
5114
 
5100
5115
  ---
5101
5116
 
@@ -5106,23 +5121,23 @@ Sms Sent successfully
5106
5121
 
5107
5122
  | Properties | Type | Nullable | Description |
5108
5123
  | ---------- | ---- | -------- | ----------- |
5109
- | user | [UserDataInfo](#UserDataInfo) | no | |
5110
5124
  | payment_mode_info | [PaymentModeInfo](#PaymentModeInfo) | no | |
5111
- | created_at | string | yes | |
5112
- | application | string | no | |
5113
- | shipment_id | string | no | |
5114
- | fulfilling_store | [ShipmentItemFulFillingStore](#ShipmentItemFulFillingStore) | no | |
5115
- | shipment_created_at | string | yes | |
5116
5125
  | total_bags_count | number | yes | |
5117
- | id | string | yes | |
5126
+ | application | string | no | |
5127
+ | payment_methods | string | no | |
5128
+ | sla | string | no | |
5129
+ | bags | [[BagUnit](#BagUnit)] | no | |
5118
5130
  | channel | string | no | |
5119
5131
  | prices | [Prices](#Prices) | no | |
5120
5132
  | fulfilling_centre | string | yes | |
5121
- | payment_methods | string | no | |
5133
+ | shipment_created_at | string | yes | |
5122
5134
  | total_shipments_in_order | number | yes | |
5135
+ | created_at | string | yes | |
5136
+ | fulfilling_store | [ShipmentItemFulFillingStore](#ShipmentItemFulFillingStore) | no | |
5123
5137
  | shipment_status | [ShipmentStatus](#ShipmentStatus) | no | |
5124
- | bags | [[BagUnit](#BagUnit)] | no | |
5125
- | sla | string | no | |
5138
+ | user | [UserDataInfo](#UserDataInfo) | no | |
5139
+ | shipment_id | string | no | |
5140
+ | id | string | yes | |
5126
5141
 
5127
5142
  ---
5128
5143
 
@@ -5133,9 +5148,9 @@ Sms Sent successfully
5133
5148
 
5134
5149
  | Properties | Type | Nullable | Description |
5135
5150
  | ---------- | ---- | -------- | ----------- |
5136
- | applied_filters | string | no | |
5137
5151
  | filters | [[FiltersInfo](#FiltersInfo)] | no | |
5138
5152
  | page | string | no | |
5153
+ | applied_filters | string | no | |
5139
5154
  | items | [[ShipmentItem](#ShipmentItem)] | no | |
5140
5155
 
5141
5156
  ---
@@ -5155,660 +5170,657 @@ Sms Sent successfully
5155
5170
 
5156
5171
 
5157
5172
 
5158
- #### [BagStateMapper](#BagStateMapper)
5173
+ #### [DPDetailsData](#DPDetailsData)
5159
5174
 
5160
5175
  | Properties | Type | Nullable | Description |
5161
5176
  | ---------- | ---- | -------- | ----------- |
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 | |
5177
+ | eway_bill_id | string | no | |
5178
+ | name | string | no | |
5179
+ | gst_tag | string | no | |
5180
+ | pincode | string | no | |
5181
+ | awb_no | string | no | |
5182
+ | track_url | string | no | |
5183
+ | id | number | no | |
5184
+ | country | string | no | |
5172
5185
 
5173
5186
  ---
5174
5187
 
5175
5188
 
5176
5189
 
5177
5190
 
5178
- #### [BagStatusHistory](#BagStatusHistory)
5191
+ #### [LockData](#LockData)
5179
5192
 
5180
5193
  | Properties | Type | Nullable | Description |
5181
5194
  | ---------- | ---- | -------- | ----------- |
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 | |
5195
+ | lock_message | string | no | |
5196
+ | locked | boolean | no | |
5197
+ | mto | boolean | no | |
5199
5198
 
5200
5199
  ---
5201
5200
 
5202
5201
 
5203
5202
 
5204
5203
 
5205
- #### [TrackingList](#TrackingList)
5204
+ #### [Formatted](#Formatted)
5206
5205
 
5207
5206
  | Properties | Type | Nullable | Description |
5208
5207
  | ---------- | ---- | -------- | ----------- |
5209
- | text | string | yes | |
5210
- | status | string | yes | |
5211
- | time | string | no | |
5212
- | is_passed | boolean | no | |
5213
- | is_current | boolean | no | |
5208
+ | f_max | string | no | |
5209
+ | f_min | string | no | |
5214
5210
 
5215
5211
  ---
5216
5212
 
5217
5213
 
5218
5214
 
5219
5215
 
5220
- #### [DPDetailsData](#DPDetailsData)
5216
+ #### [DebugInfo](#DebugInfo)
5221
5217
 
5222
5218
  | Properties | Type | Nullable | Description |
5223
5219
  | ---------- | ---- | -------- | ----------- |
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 | |
5220
+ | stormbreaker_uuid | string | no | |
5232
5221
 
5233
5222
  ---
5234
5223
 
5235
5224
 
5236
5225
 
5237
5226
 
5238
- #### [Dimensions](#Dimensions)
5227
+ #### [EinvoiceInfo](#EinvoiceInfo)
5239
5228
 
5240
5229
  | Properties | Type | Nullable | Description |
5241
5230
  | ---------- | ---- | -------- | ----------- |
5242
- | width | number | no | |
5243
- | length | number | no | |
5244
- | is_default | boolean | no | |
5245
- | height | number | no | |
5246
- | unit | string | no | |
5231
+ | invoice | string | no | |
5232
+ | credit_note | string | no | |
5247
5233
 
5248
5234
  ---
5249
5235
 
5250
5236
 
5251
5237
 
5252
5238
 
5253
- #### [Meta](#Meta)
5239
+ #### [BuyerDetails](#BuyerDetails)
5254
5240
 
5255
5241
  | Properties | Type | Nullable | Description |
5256
5242
  | ---------- | ---- | -------- | ----------- |
5257
- | dimension | [Dimensions](#Dimensions) | no | |
5243
+ | name | string | yes | |
5244
+ | address | string | yes | |
5245
+ | pincode | number | yes | |
5246
+ | gstin | string | yes | |
5247
+ | city | string | yes | |
5248
+ | state | string | yes | |
5249
+ | ajio_site_id | string | no | |
5258
5250
 
5259
5251
  ---
5260
5252
 
5261
5253
 
5262
5254
 
5263
5255
 
5264
- #### [ShipmentPayments](#ShipmentPayments)
5256
+ #### [ShipmentTimeStamp](#ShipmentTimeStamp)
5265
5257
 
5266
5258
  | Properties | Type | Nullable | Description |
5267
5259
  | ---------- | ---- | -------- | ----------- |
5268
- | mode | string | no | |
5269
- | logo | string | no | |
5270
- | source | string | no | |
5260
+ | t_min | string | no | |
5261
+ | t_max | string | no | |
5271
5262
 
5272
5263
  ---
5273
5264
 
5274
5265
 
5275
5266
 
5276
5267
 
5277
- #### [InvoiceInfo](#InvoiceInfo)
5268
+ #### [ShipmentMeta](#ShipmentMeta)
5278
5269
 
5279
5270
  | Properties | Type | Nullable | Description |
5280
5271
  | ---------- | ---- | -------- | ----------- |
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 | |
5272
+ | forward_affiliate_order_id | string | no | |
5273
+ | lock_data | [LockData](#LockData) | no | |
5274
+ | formatted | [Formatted](#Formatted) | no | |
5275
+ | due_date | string | no | |
5276
+ | order_type | string | no | |
5277
+ | dp_name | string | no | |
5278
+ | shipment_volumetric_weight | number | no | |
5279
+ | debug_info | [DebugInfo](#DebugInfo) | no | |
5280
+ | bag_weight | string | no | |
5281
+ | same_store_available | boolean | yes | |
5282
+ | return_affiliate_order_id | string | no | |
5283
+ | dp_sort_key | string | no | |
5284
+ | shipment_weight | number | no | |
5285
+ | ewaybill_info | string | no | |
5286
+ | return_awb_number | string | no | |
5287
+ | b2c_buyer_details | string | no | |
5288
+ | einvoice_info | [EinvoiceInfo](#EinvoiceInfo) | no | |
5289
+ | return_store_node | number | no | |
5290
+ | awb_number | string | no | |
5291
+ | b2b_buyer_details | [BuyerDetails](#BuyerDetails) | no | |
5292
+ | dp_id | string | no | |
5293
+ | box_type | string | no | |
5294
+ | packaging_name | string | no | |
5295
+ | external | string | no | |
5296
+ | dp_options | string | no | |
5297
+ | weight | number | yes | |
5298
+ | return_affiliate_shipment_id | string | no | |
5299
+ | return_details | string | no | |
5300
+ | timestamp | [ShipmentTimeStamp](#ShipmentTimeStamp) | no | |
5301
+ | auto_trigger_dp_assignment_acf | boolean | yes | |
5302
+ | store_invoice_updated_date | string | no | |
5303
+ | fulfilment_priority_text | string | no | |
5304
+ | po_number | string | no | |
5305
+ | marketplace_store_id | string | no | |
5306
+ | assign_dp_from_sb | boolean | no | |
5307
+ | forward_affiliate_shipment_id | string | no | |
5286
5308
 
5287
5309
  ---
5288
5310
 
5289
5311
 
5290
5312
 
5291
5313
 
5292
- #### [ShipmentStatusData](#ShipmentStatusData)
5314
+ #### [PDFLinks](#PDFLinks)
5293
5315
 
5294
5316
  | Properties | Type | Nullable | Description |
5295
5317
  | ---------- | ---- | -------- | ----------- |
5296
- | created_at | string | no | |
5297
- | shipment_id | string | no | |
5298
- | status | string | no | |
5299
- | bag_list | [string] | no | |
5300
- | id | number | no | |
5318
+ | credit_note_url | string | no | |
5319
+ | label_a6 | string | no | |
5320
+ | label_type | string | yes | |
5321
+ | b2b | string | no | |
5322
+ | invoice_a4 | string | no | |
5323
+ | label_pos | string | no | |
5324
+ | label | string | no | |
5325
+ | invoice_pos | string | no | |
5326
+ | label_a4 | string | no | |
5327
+ | invoice | string | no | |
5328
+ | invoice_a6 | string | no | |
5329
+ | invoice_type | string | yes | |
5330
+ | po_invoice | string | no | |
5331
+ | delivery_challan_a4 | string | no | |
5301
5332
 
5302
5333
  ---
5303
5334
 
5304
5335
 
5305
5336
 
5306
5337
 
5307
- #### [CurrentStatus](#CurrentStatus)
5338
+ #### [AffiliateMeta](#AffiliateMeta)
5308
5339
 
5309
5340
  | Properties | Type | Nullable | Description |
5310
5341
  | ---------- | ---- | -------- | ----------- |
5311
- | bag_state_mapper | [BagStateMapper](#BagStateMapper) | no | |
5312
- | state_type | string | no | |
5313
- | created_at | string | no | |
5314
- | updated_at | string | no | |
5315
- | delivery_awb_number | string | no | |
5316
- | delivery_partner_id | 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 | |
5322
- | bag_id | number | no | |
5323
- | kafka_sync | boolean | no | |
5342
+ | channel_shipment_id | string | no | |
5343
+ | due_date | string | no | |
5344
+ | coupon_code | string | no | |
5345
+ | employee_discount | number | no | |
5346
+ | loyalty_discount | number | no | |
5347
+ | quantity | number | no | |
5348
+ | box_type | string | no | |
5349
+ | is_priority | boolean | no | |
5350
+ | size_level_total_qty | number | no | |
5351
+ | order_item_id | string | no | |
5352
+ | channel_order_id | string | no | |
5324
5353
 
5325
5354
  ---
5326
5355
 
5327
5356
 
5328
5357
 
5329
5358
 
5330
- #### [Identifier](#Identifier)
5359
+ #### [AffiliateDetails](#AffiliateDetails)
5331
5360
 
5332
5361
  | Properties | Type | Nullable | Description |
5333
5362
  | ---------- | ---- | -------- | ----------- |
5334
- | ean | string | no | |
5363
+ | affiliate_shipment_id | string | yes | |
5364
+ | affiliate_id | string | no | |
5365
+ | affiliate_order_id | string | yes | |
5366
+ | shipment_meta | [ShipmentMeta](#ShipmentMeta) | yes | |
5367
+ | affiliate_bag_id | string | yes | |
5368
+ | ad_id | string | no | |
5369
+ | pdf_links | [PDFLinks](#PDFLinks) | no | |
5370
+ | affiliate_store_id | string | yes | |
5371
+ | company_affiliate_tag | string | no | |
5372
+ | affiliate_meta | [AffiliateMeta](#AffiliateMeta) | yes | |
5335
5373
 
5336
5374
  ---
5337
5375
 
5338
5376
 
5339
5377
 
5340
5378
 
5341
- #### [FinancialBreakup](#FinancialBreakup)
5379
+ #### [FulfillingStore](#FulfillingStore)
5342
5380
 
5343
5381
  | Properties | Type | Nullable | Description |
5344
5382
  | ---------- | ---- | -------- | ----------- |
5345
- | item_name | string | yes | |
5346
- | cod_charges | number | yes | |
5347
- | fynd_credits | number | yes | |
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 | |
5353
- | coupon_value | number | yes | |
5354
- | cashback_applied | number | yes | |
5355
- | amount_paid | number | yes | |
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 | |
5366
- | transfer_price | number | yes | |
5367
- | tax_collected_at_source | number | no | |
5368
- | identifiers | [Identifier](#Identifier) | yes | |
5369
- | total_units | number | yes | |
5370
- | price_effective | number | yes | |
5371
- | value_of_good | number | yes | |
5383
+ | store_name | string | yes | |
5384
+ | address | string | yes | |
5385
+ | fulfillment_channel | string | yes | |
5386
+ | pincode | string | yes | |
5387
+ | code | string | yes | |
5388
+ | city | string | yes | |
5389
+ | state | string | yes | |
5390
+ | meta | string | yes | |
5391
+ | contact_person | string | yes | |
5392
+ | phone | string | yes | |
5393
+ | id | number | yes | |
5394
+ | country | string | yes | |
5372
5395
 
5373
5396
  ---
5374
5397
 
5375
5398
 
5376
5399
 
5377
5400
 
5378
- #### [BagGST](#BagGST)
5401
+ #### [UserDetailsData](#UserDetailsData)
5379
5402
 
5380
5403
  | Properties | Type | Nullable | Description |
5381
5404
  | ---------- | ---- | -------- | ----------- |
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 | |
5405
+ | name | string | yes | |
5406
+ | address | string | yes | |
5407
+ | pincode | string | yes | |
5408
+ | city | string | yes | |
5409
+ | email | string | no | |
5410
+ | state | string | yes | |
5411
+ | phone | string | yes | |
5412
+ | country | string | yes | |
5390
5413
 
5391
5414
  ---
5392
5415
 
5393
5416
 
5394
5417
 
5395
5418
 
5396
- #### [OrderBagArticle](#OrderBagArticle)
5419
+ #### [Dimensions](#Dimensions)
5397
5420
 
5398
5421
  | Properties | Type | Nullable | Description |
5399
5422
  | ---------- | ---- | -------- | ----------- |
5400
- | return_config | string | no | |
5401
- | uid | string | no | |
5402
- | identifiers | string | no | |
5423
+ | unit | string | no | |
5424
+ | width | number | no | |
5425
+ | is_default | boolean | no | |
5426
+ | length | number | no | |
5427
+ | height | number | no | |
5403
5428
 
5404
5429
  ---
5405
5430
 
5406
5431
 
5407
5432
 
5408
5433
 
5409
- #### [PlatformDeliveryAddress](#PlatformDeliveryAddress)
5434
+ #### [Meta](#Meta)
5410
5435
 
5411
5436
  | Properties | Type | Nullable | Description |
5412
5437
  | ---------- | ---- | -------- | ----------- |
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 | |
5438
+ | dimension | [Dimensions](#Dimensions) | no | |
5431
5439
 
5432
5440
  ---
5433
5441
 
5434
5442
 
5435
5443
 
5436
5444
 
5437
- #### [BagConfigs](#BagConfigs)
5445
+ #### [ShipmentPayments](#ShipmentPayments)
5438
5446
 
5439
5447
  | Properties | Type | Nullable | Description |
5440
5448
  | ---------- | ---- | -------- | ----------- |
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 | |
5449
+ | source | string | no | |
5450
+ | mode | string | no | |
5451
+ | logo | string | no | |
5447
5452
 
5448
5453
  ---
5449
5454
 
5450
5455
 
5451
5456
 
5452
5457
 
5453
- #### [ItemCriterias](#ItemCriterias)
5458
+ #### [TrackingList](#TrackingList)
5454
5459
 
5455
5460
  | Properties | Type | Nullable | Description |
5456
5461
  | ---------- | ---- | -------- | ----------- |
5457
- | item_brand | [number] | no | |
5462
+ | status | string | yes | |
5463
+ | is_current | boolean | no | |
5464
+ | is_passed | boolean | no | |
5465
+ | time | string | no | |
5466
+ | text | string | yes | |
5458
5467
 
5459
5468
  ---
5460
5469
 
5461
5470
 
5462
5471
 
5463
5472
 
5464
- #### [BuyRules](#BuyRules)
5473
+ #### [InvoiceInfo](#InvoiceInfo)
5465
5474
 
5466
5475
  | Properties | Type | Nullable | Description |
5467
5476
  | ---------- | ---- | -------- | ----------- |
5468
- | item_criteria | [ItemCriterias](#ItemCriterias) | no | |
5469
- | cart_conditions | string | no | |
5477
+ | label_url | string | no | |
5478
+ | store_invoice_id | string | no | |
5479
+ | updated_date | string | no | |
5480
+ | credit_note_id | string | no | |
5481
+ | invoice_url | string | no | |
5470
5482
 
5471
5483
  ---
5472
5484
 
5473
5485
 
5474
5486
 
5475
5487
 
5476
- #### [DiscountRules](#DiscountRules)
5488
+ #### [BagConfigs](#BagConfigs)
5477
5489
 
5478
5490
  | Properties | Type | Nullable | Description |
5479
5491
  | ---------- | ---- | -------- | ----------- |
5480
- | value | number | no | |
5481
- | type | string | no | |
5492
+ | enable_tracking | boolean | yes | |
5493
+ | is_customer_return_allowed | boolean | yes | |
5494
+ | is_active | boolean | yes | |
5495
+ | is_returnable | boolean | yes | |
5496
+ | can_be_cancelled | boolean | yes | |
5497
+ | allow_force_return | boolean | yes | |
5482
5498
 
5483
5499
  ---
5484
5500
 
5485
5501
 
5486
5502
 
5487
5503
 
5488
- #### [AppliedPromos](#AppliedPromos)
5504
+ #### [OrderBagArticle](#OrderBagArticle)
5489
5505
 
5490
5506
  | Properties | Type | Nullable | Description |
5491
5507
  | ---------- | ---- | -------- | ----------- |
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 | |
5508
+ | uid | string | no | |
5509
+ | return_config | string | no | |
5510
+ | identifiers | string | no | |
5500
5511
 
5501
5512
  ---
5502
5513
 
5503
5514
 
5504
5515
 
5505
5516
 
5506
- #### [OrderBrandName](#OrderBrandName)
5517
+ #### [ItemCriterias](#ItemCriterias)
5507
5518
 
5508
5519
  | Properties | Type | Nullable | Description |
5509
5520
  | ---------- | ---- | -------- | ----------- |
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 | |
5521
+ | item_brand | [number] | no | |
5516
5522
 
5517
5523
  ---
5518
5524
 
5519
5525
 
5520
5526
 
5521
5527
 
5522
- #### [OrderBags](#OrderBags)
5528
+ #### [BuyRules](#BuyRules)
5523
5529
 
5524
5530
  | Properties | Type | Nullable | Description |
5525
5531
  | ---------- | ---- | -------- | ----------- |
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 | |
5532
+ | cart_conditions | string | no | |
5533
+ | item_criteria | [ItemCriterias](#ItemCriterias) | no | |
5546
5534
 
5547
5535
  ---
5548
5536
 
5549
5537
 
5550
5538
 
5551
5539
 
5552
- #### [OrderingStoreDetails](#OrderingStoreDetails)
5540
+ #### [DiscountRules](#DiscountRules)
5553
5541
 
5554
5542
  | Properties | Type | Nullable | Description |
5555
5543
  | ---------- | ---- | -------- | ----------- |
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 | |
5544
+ | value | number | no | |
5545
+ | type | string | no | |
5567
5546
 
5568
5547
  ---
5569
5548
 
5570
5549
 
5571
5550
 
5572
5551
 
5573
- #### [UserDetailsData](#UserDetailsData)
5552
+ #### [AppliedPromos](#AppliedPromos)
5574
5553
 
5575
5554
  | Properties | Type | Nullable | Description |
5576
5555
  | ---------- | ---- | -------- | ----------- |
5577
- | phone | string | yes | |
5578
- | email | string | no | |
5579
- | pincode | string | yes | |
5580
- | address | string | yes | |
5581
- | name | string | yes | |
5582
- | country | string | yes | |
5583
- | state | string | yes | |
5584
- | city | string | yes | |
5556
+ | buy_rules | [[BuyRules](#BuyRules)] | no | |
5557
+ | article_quantity | number | no | |
5558
+ | discount_rules | [[DiscountRules](#DiscountRules)] | no | |
5559
+ | mrp_promotion | boolean | no | |
5560
+ | promotion_type | string | no | |
5561
+ | promotion_name | string | no | |
5562
+ | promo_id | string | no | |
5563
+ | amount | number | no | |
5585
5564
 
5586
5565
  ---
5587
5566
 
5588
5567
 
5589
5568
 
5590
5569
 
5591
- #### [FulfillingStore](#FulfillingStore)
5570
+ #### [BagStateMapper](#BagStateMapper)
5592
5571
 
5593
5572
  | Properties | Type | Nullable | Description |
5594
5573
  | ---------- | ---- | -------- | ----------- |
5595
- | phone | string | yes | |
5596
- | meta | string | yes | |
5597
- | pincode | string | yes | |
5598
- | fulfillment_channel | string | yes | |
5599
- | address | string | yes | |
5600
- | contact_person | string | yes | |
5601
- | id | number | yes | |
5602
- | country | string | yes | |
5603
- | state | string | yes | |
5604
- | store_name | string | yes | |
5605
- | city | string | yes | |
5606
- | code | string | yes | |
5574
+ | name | string | yes | |
5575
+ | app_facing | boolean | no | |
5576
+ | state_type | string | yes | |
5577
+ | is_active | boolean | no | |
5578
+ | notify_customer | boolean | no | |
5579
+ | app_display_name | string | no | |
5580
+ | app_state_name | string | no | |
5581
+ | display_name | string | yes | |
5582
+ | journey_type | string | yes | |
5583
+ | bs_id | number | yes | |
5607
5584
 
5608
5585
  ---
5609
5586
 
5610
5587
 
5611
5588
 
5612
5589
 
5613
- #### [ShipmentTimeStamp](#ShipmentTimeStamp)
5590
+ #### [CurrentStatus](#CurrentStatus)
5614
5591
 
5615
5592
  | Properties | Type | Nullable | Description |
5616
5593
  | ---------- | ---- | -------- | ----------- |
5617
- | t_min | string | no | |
5618
- | t_max | string | no | |
5594
+ | delivery_partner_id | number | no | |
5595
+ | updated_at | string | no | |
5596
+ | status | string | no | |
5597
+ | state_id | number | no | |
5598
+ | delivery_awb_number | string | no | |
5599
+ | store_id | number | no | |
5600
+ | state_type | string | no | |
5601
+ | kafka_sync | boolean | no | |
5602
+ | created_at | string | no | |
5603
+ | bag_id | number | no | |
5604
+ | current_status_id | number | yes | |
5605
+ | shipment_id | string | no | |
5606
+ | bag_state_mapper | [BagStateMapper](#BagStateMapper) | no | |
5619
5607
 
5620
5608
  ---
5621
5609
 
5622
5610
 
5623
5611
 
5624
5612
 
5625
- #### [LockData](#LockData)
5613
+ #### [OrderBrandName](#OrderBrandName)
5626
5614
 
5627
5615
  | Properties | Type | Nullable | Description |
5628
5616
  | ---------- | ---- | -------- | ----------- |
5629
- | locked | boolean | no | |
5630
- | lock_message | string | no | |
5631
- | mto | boolean | no | |
5617
+ | created_on | string | yes | |
5618
+ | modified_on | string | no | |
5619
+ | brand_name | string | yes | |
5620
+ | id | number | yes | |
5621
+ | company | string | yes | |
5622
+ | logo | string | yes | |
5632
5623
 
5633
5624
  ---
5634
5625
 
5635
5626
 
5636
5627
 
5637
5628
 
5638
- #### [DebugInfo](#DebugInfo)
5629
+ #### [PlatformDeliveryAddress](#PlatformDeliveryAddress)
5639
5630
 
5640
5631
  | Properties | Type | Nullable | Description |
5641
5632
  | ---------- | ---- | -------- | ----------- |
5642
- | stormbreaker_uuid | string | no | |
5633
+ | contact_person | string | no | |
5634
+ | latitude | number | no | |
5635
+ | updated_at | string | no | |
5636
+ | area | string | no | |
5637
+ | pincode | string | no | |
5638
+ | city | string | no | |
5639
+ | email | string | no | |
5640
+ | state | string | no | |
5641
+ | address2 | string | no | |
5642
+ | landmark | string | no | |
5643
+ | created_at | string | no | |
5644
+ | address_type | string | no | |
5645
+ | longitude | number | no | |
5646
+ | phone | string | no | |
5647
+ | address_category | string | no | |
5648
+ | address1 | string | no | |
5649
+ | version | string | no | |
5650
+ | country | string | no | |
5643
5651
 
5644
5652
  ---
5645
5653
 
5646
5654
 
5647
5655
 
5648
5656
 
5649
- #### [EInvoice](#EInvoice)
5657
+ #### [Identifier](#Identifier)
5650
5658
 
5651
5659
  | Properties | Type | Nullable | Description |
5652
5660
  | ---------- | ---- | -------- | ----------- |
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 | |
5661
+ | ean | string | no | |
5660
5662
 
5661
5663
  ---
5662
5664
 
5663
5665
 
5664
5666
 
5665
5667
 
5666
- #### [EinvoiceInfo](#EinvoiceInfo)
5668
+ #### [FinancialBreakup](#FinancialBreakup)
5667
5669
 
5668
5670
  | Properties | Type | Nullable | Description |
5669
5671
  | ---------- | ---- | -------- | ----------- |
5670
- | credit_note | [EInvoice](#EInvoice) | no | |
5671
- | invoice | [EInvoice](#EInvoice) | no | |
5672
+ | value_of_good | number | yes | |
5673
+ | cod_charges | number | yes | |
5674
+ | gst_fee | number | yes | |
5675
+ | promotion_effective_discount | number | yes | |
5676
+ | transfer_price | number | yes | |
5677
+ | price_marked | number | yes | |
5678
+ | cashback | number | yes | |
5679
+ | amount_paid | number | yes | |
5680
+ | fynd_credits | number | yes | |
5681
+ | total_units | number | yes | |
5682
+ | price_effective | number | yes | |
5683
+ | refund_credit | number | yes | |
5684
+ | coupon_value | number | yes | |
5685
+ | gst_tag | string | yes | |
5686
+ | brand_calculated_amount | number | yes | |
5687
+ | gst_tax_percentage | number | yes | |
5688
+ | amount_paid_roundoff | number | no | |
5689
+ | hsn_code | string | yes | |
5690
+ | delivery_charge | number | yes | |
5691
+ | cashback_applied | number | yes | |
5692
+ | coupon_effective_discount | number | yes | |
5693
+ | tax_collected_at_source | number | no | |
5694
+ | identifiers | [Identifier](#Identifier) | yes | |
5695
+ | size | string | yes | |
5696
+ | discount | number | yes | |
5697
+ | item_name | string | yes | |
5698
+ | added_to_fynd_cash | boolean | yes | |
5672
5699
 
5673
5700
  ---
5674
5701
 
5675
5702
 
5676
5703
 
5677
5704
 
5678
- #### [BuyerDetails](#BuyerDetails)
5705
+ #### [BagGST](#BagGST)
5679
5706
 
5680
5707
  | Properties | Type | Nullable | Description |
5681
5708
  | ---------- | ---- | -------- | ----------- |
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 | |
5709
+ | gst_tax_percentage | number | no | |
5710
+ | is_default_hsn_code | boolean | no | |
5711
+ | value_of_good | number | no | |
5712
+ | gst_tag | string | no | |
5713
+ | gst_fee | number | no | |
5714
+ | brand_calculated_amount | number | no | |
5715
+ | gstin_code | string | no | |
5716
+ | hsn_code | string | no | |
5689
5717
 
5690
5718
  ---
5691
5719
 
5692
5720
 
5693
5721
 
5694
5722
 
5695
- #### [Formatted](#Formatted)
5723
+ #### [OrderBags](#OrderBags)
5696
5724
 
5697
5725
  | Properties | Type | Nullable | Description |
5698
5726
  | ---------- | ---- | -------- | ----------- |
5699
- | f_min | string | no | |
5700
- | f_max | string | no | |
5727
+ | bag_configs | [BagConfigs](#BagConfigs) | no | |
5728
+ | article | [OrderBagArticle](#OrderBagArticle) | no | |
5729
+ | can_cancel | boolean | no | |
5730
+ | prices | [Prices](#Prices) | no | |
5731
+ | identifier | string | no | |
5732
+ | can_return | boolean | no | |
5733
+ | seller_identifier | string | no | |
5734
+ | applied_promos | [[AppliedPromos](#AppliedPromos)] | no | |
5735
+ | current_status | [CurrentStatus](#CurrentStatus) | no | |
5736
+ | brand | [OrderBrandName](#OrderBrandName) | no | |
5737
+ | quantity | number | no | |
5738
+ | line_number | number | no | |
5739
+ | item | [PlatformItem](#PlatformItem) | no | |
5740
+ | delivery_address | [PlatformDeliveryAddress](#PlatformDeliveryAddress) | no | |
5741
+ | financial_breakup | [FinancialBreakup](#FinancialBreakup) | no | |
5742
+ | gst_details | [BagGST](#BagGST) | no | |
5743
+ | bag_id | number | yes | |
5744
+ | display_name | string | no | |
5745
+ | parent_promo_bags | string | no | |
5746
+ | entity_type | string | no | |
5701
5747
 
5702
5748
  ---
5703
5749
 
5704
5750
 
5705
5751
 
5706
5752
 
5707
- #### [ShipmentMeta](#ShipmentMeta)
5753
+ #### [ShipmentStatusData](#ShipmentStatusData)
5708
5754
 
5709
5755
  | Properties | Type | Nullable | Description |
5710
5756
  | ---------- | ---- | -------- | ----------- |
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 | |
5757
+ | status | string | no | |
5758
+ | created_at | string | no | |
5759
+ | shipment_id | string | no | |
5760
+ | id | number | no | |
5761
+ | bag_list | [string] | no | |
5747
5762
 
5748
5763
  ---
5749
5764
 
5750
5765
 
5751
5766
 
5752
5767
 
5753
- #### [PDFLinks](#PDFLinks)
5768
+ #### [BagStatusHistory](#BagStatusHistory)
5754
5769
 
5755
5770
  | Properties | Type | Nullable | Description |
5756
5771
  | ---------- | ---- | -------- | ----------- |
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 | |
5772
+ | delivery_partner_id | number | no | |
5773
+ | updated_at | string | no | |
5774
+ | status | string | yes | |
5775
+ | state_id | number | no | |
5776
+ | bsh_id | number | no | |
5777
+ | delivery_awb_number | string | no | |
5778
+ | store_id | number | no | |
5779
+ | display_name | string | no | |
5780
+ | bag_id | number | no | |
5781
+ | kafka_sync | boolean | no | |
5782
+ | state_type | string | no | |
5783
+ | created_at | string | no | |
5784
+ | reasons | [string] | no | |
5785
+ | forward | boolean | no | |
5786
+ | app_display_name | string | no | |
5787
+ | shipment_id | string | no | |
5788
+ | bag_state_mapper | [BagStateMapper](#BagStateMapper) | no | |
5771
5789
 
5772
5790
  ---
5773
5791
 
5774
5792
 
5775
5793
 
5776
5794
 
5777
- #### [AffiliateMeta](#AffiliateMeta)
5795
+ #### [OrderingStoreDetails](#OrderingStoreDetails)
5778
5796
 
5779
5797
  | Properties | Type | Nullable | Description |
5780
5798
  | ---------- | ---- | -------- | ----------- |
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 | |
5799
+ | store_name | string | yes | |
5800
+ | address | string | yes | |
5801
+ | pincode | string | yes | |
5802
+ | code | string | yes | |
5803
+ | city | string | yes | |
5804
+ | state | string | yes | |
5805
+ | meta | string | yes | |
5806
+ | ordering_store_id | number | yes | |
5807
+ | contact_person | string | yes | |
5808
+ | phone | string | yes | |
5809
+ | country | string | yes | |
5792
5810
 
5793
5811
  ---
5794
5812
 
5795
5813
 
5796
5814
 
5797
5815
 
5798
- #### [AffiliateDetails](#AffiliateDetails)
5816
+ #### [CompanyDetails](#CompanyDetails)
5799
5817
 
5800
5818
  | Properties | Type | Nullable | Description |
5801
5819
  | ---------- | ---- | -------- | ----------- |
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 | |
5820
+ | company_cin | string | no | |
5821
+ | company_id | number | no | |
5822
+ | manufacturer_address | string | no | |
5823
+ | company_name | string | no | |
5812
5824
 
5813
5825
  ---
5814
5826
 
@@ -5819,14 +5831,14 @@ Sms Sent successfully
5819
5831
 
5820
5832
  | Properties | Type | Nullable | Description |
5821
5833
  | ---------- | ---- | -------- | ----------- |
5822
- | order_date | string | no | |
5823
- | order_value | string | no | |
5824
- | cod_charges | string | no | |
5825
5834
  | ordering_channel_logo | string | no | |
5835
+ | order_value | string | no | |
5826
5836
  | affiliate_id | string | no | |
5837
+ | cod_charges | string | no | |
5827
5838
  | source | string | no | |
5828
- | tax_details | string | no | |
5829
5839
  | fynd_order_id | string | yes | |
5840
+ | order_date | string | no | |
5841
+ | tax_details | string | no | |
5830
5842
  | ordering_channel | string | no | |
5831
5843
 
5832
5844
  ---
@@ -5838,46 +5850,48 @@ Sms Sent successfully
5838
5850
 
5839
5851
  | Properties | Type | Nullable | Description |
5840
5852
  | ---------- | ---- | -------- | ----------- |
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
5853
  | 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
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 | |
5855
+ | dp_details | [DPDetailsData](#DPDetailsData) | no | |
5856
+ | affiliate_details | [AffiliateDetails](#AffiliateDetails) | no | |
5857
+ | fulfilment_priority | number | no | |
5863
5858
  | fulfilling_store | [FulfillingStore](#FulfillingStore) | no | |
5864
- | lock_status | boolean | no | |
5859
+ | total_bags | number | no | |
5865
5860
  | 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 | |
5861
+ | delivery_slot | string | no | |
5862
+ | user | [UserDataInfo](#UserDataInfo) | no | |
5863
+ | billing_details | [UserDetailsData](#UserDetailsData) | no | |
5864
+ | lock_status | boolean | no | |
5870
5865
  | payment_mode | string | no | |
5866
+ | platform_logo | string | no | |
5867
+ | prices | [Prices](#Prices) | no | |
5868
+ | shipment_quantity | number | no | |
5869
+ | meta | [Meta](#Meta) | no | |
5870
+ | delivery_details | [UserDetailsData](#UserDetailsData) | no | |
5871
+ | coupon | string | no | |
5872
+ | invoice_id | string | no | |
5873
+ | payments | [ShipmentPayments](#ShipmentPayments) | no | |
5874
+ | tracking_list | [[TrackingList](#TrackingList)] | no | |
5875
+ | enable_dp_tracking | boolean | no | |
5876
+ | invoice | [InvoiceInfo](#InvoiceInfo) | no | |
5871
5877
  | total_items | number | no | |
5878
+ | custom_meta | [string] | no | |
5879
+ | shipment_images | [string] | no | |
5872
5880
  | forward_shipment_id | string | no | |
5881
+ | packaging_type | string | no | |
5882
+ | vertical | string | no | |
5883
+ | bags | [[OrderBags](#OrderBags)] | no | |
5884
+ | status | [ShipmentStatusData](#ShipmentStatusData) | no | |
5885
+ | gst_details | [GSTDetailsData](#GSTDetailsData) | no | |
5886
+ | payment_methods | string | no | |
5887
+ | bag_status_history | [[BagStatusHistory](#BagStatusHistory)] | no | |
5888
+ | ordering_store | [OrderingStoreDetails](#OrderingStoreDetails) | no | |
5889
+ | user_agent | string | no | |
5890
+ | company_details | [CompanyDetails](#CompanyDetails) | no | |
5873
5891
  | 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 | |
5892
+ | shipment_status | string | no | |
5893
+ | journey_type | string | no | |
5894
+ | shipment_id | string | yes | |
5881
5895
 
5882
5896
  ---
5883
5897
 
@@ -5897,25 +5911,86 @@ Sms Sent successfully
5897
5911
 
5898
5912
 
5899
5913
 
5914
+ #### [TransactionData](#TransactionData)
5915
+
5916
+ | Properties | Type | Nullable | Description |
5917
+ | ---------- | ---- | -------- | ----------- |
5918
+ | status | string | no | |
5919
+ | currency | string | no | |
5920
+ | amount_paid | string | no | |
5921
+ | terminal_id | string | no | |
5922
+ | transaction_id | string | no | |
5923
+ | payment_id | string | no | |
5924
+ | entity | string | no | |
5925
+ | unique_reference_number | string | no | |
5926
+
5927
+ ---
5928
+
5929
+
5930
+
5931
+
5932
+ #### [BillingStaffDetails](#BillingStaffDetails)
5933
+
5934
+ | Properties | Type | Nullable | Description |
5935
+ | ---------- | ---- | -------- | ----------- |
5936
+ | staff_id | number | no | |
5937
+ | first_name | string | no | |
5938
+ | last_name | string | no | |
5939
+ | user | string | no | |
5940
+
5941
+ ---
5942
+
5943
+
5944
+
5945
+
5946
+ #### [PlatformUserDetails](#PlatformUserDetails)
5947
+
5948
+ | Properties | Type | Nullable | Description |
5949
+ | ---------- | ---- | -------- | ----------- |
5950
+ | platform_user_first_name | string | no | |
5951
+ | platform_user_id | string | no | |
5952
+ | platform_user_last_name | string | no | |
5953
+
5954
+ ---
5955
+
5956
+
5957
+
5958
+
5900
5959
  #### [OrderMeta](#OrderMeta)
5901
5960
 
5902
5961
  | Properties | Type | Nullable | Description |
5903
5962
  | ---------- | ---- | -------- | ----------- |
5963
+ | order_type | string | no | |
5904
5964
  | customer_note | string | no | |
5965
+ | transaction_data | [TransactionData](#TransactionData) | no | |
5966
+ | order_tags | [string] | no | |
5905
5967
  | files | [string] | no | |
5968
+ | cart_id | number | no | |
5906
5969
  | payment_type | string | no | |
5970
+ | extra_meta | string | no | |
5971
+ | employee_id | number | no | |
5907
5972
  | order_child_entities | [string] | no | |
5908
- | currency_symbol | string | no | |
5973
+ | mongo_cart_id | number | no | |
5974
+ | company_logo | string | no | |
5975
+ | staff | string | no | |
5976
+ | billing_staff_details | [BillingStaffDetails](#BillingStaffDetails) | no | |
5909
5977
  | order_platform | string | no | |
5910
- | order_tags | [string] | no | |
5911
- | order_type | string | no | |
5978
+ | platform_user_details | [PlatformUserDetails](#PlatformUserDetails) | no | |
5912
5979
  | ordering_store | number | no | |
5913
5980
  | 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 | |
5981
+ | currency_symbol | string | no | |
5982
+
5983
+ ---
5984
+
5985
+
5986
+
5987
+
5988
+ #### [TaxDetails](#TaxDetails)
5989
+
5990
+ | Properties | Type | Nullable | Description |
5991
+ | ---------- | ---- | -------- | ----------- |
5992
+ | pan_no | string | no | |
5993
+ | gstin | string | no | |
5919
5994
 
5920
5995
  ---
5921
5996
 
@@ -5926,12 +6001,12 @@ Sms Sent successfully
5926
6001
 
5927
6002
  | Properties | Type | Nullable | Description |
5928
6003
  | ---------- | ---- | -------- | ----------- |
5929
- | meta | [OrderMeta](#OrderMeta) | no | |
5930
- | fynd_order_id | string | yes | |
5931
- | prices | [Prices](#Prices) | no | |
5932
6004
  | payment_methods | string | no | |
5933
- | tax_details | string | no | |
6005
+ | prices | [Prices](#Prices) | no | |
5934
6006
  | order_date | string | yes | |
6007
+ | fynd_order_id | string | yes | |
6008
+ | meta | [OrderMeta](#OrderMeta) | no | |
6009
+ | tax_details | [TaxDetails](#TaxDetails) | no | |
5935
6010
 
5936
6011
  ---
5937
6012
 
@@ -5942,8 +6017,8 @@ Sms Sent successfully
5942
6017
 
5943
6018
  | Properties | Type | Nullable | Description |
5944
6019
  | ---------- | ---- | -------- | ----------- |
5945
- | success | boolean | yes | |
5946
6020
  | shipments | [[PlatformShipment](#PlatformShipment)] | no | |
6021
+ | success | boolean | yes | |
5947
6022
  | order | [OrderDict](#OrderDict) | no | |
5948
6023
 
5949
6024
  ---
@@ -5955,11 +6030,11 @@ Sms Sent successfully
5955
6030
 
5956
6031
  | Properties | Type | Nullable | Description |
5957
6032
  | ---------- | ---- | -------- | ----------- |
6033
+ | value | string | no | |
6034
+ | actions | [string] | no | |
6035
+ | total_items | number | no | |
5958
6036
  | text | string | no | |
5959
6037
  | index | number | no | |
5960
- | total_items | number | no | |
5961
- | actions | [string] | no | |
5962
- | value | string | no | |
5963
6038
 
5964
6039
  ---
5965
6040
 
@@ -5970,10 +6045,10 @@ Sms Sent successfully
5970
6045
 
5971
6046
  | Properties | Type | Nullable | Description |
5972
6047
  | ---------- | ---- | -------- | ----------- |
5973
- | value | string | yes | |
5974
- | text | string | yes | |
5975
6048
  | options | [[SubLane](#SubLane)] | no | |
5976
6049
  | total_items | number | no | |
6050
+ | value | string | yes | |
6051
+ | text | string | yes | |
5977
6052
 
5978
6053
  ---
5979
6054
 
@@ -5995,37 +6070,37 @@ Sms Sent successfully
5995
6070
 
5996
6071
  | Properties | Type | Nullable | Description |
5997
6072
  | ---------- | ---- | -------- | ----------- |
5998
- | has_previous | boolean | no | |
5999
6073
  | total | number | no | |
6000
6074
  | current | number | no | |
6001
- | type | string | no | |
6002
- | has_next | boolean | no | |
6003
6075
  | size | number | no | |
6076
+ | has_previous | boolean | no | |
6077
+ | has_next | boolean | no | |
6078
+ | type | string | no | |
6004
6079
 
6005
6080
  ---
6006
6081
 
6007
6082
 
6008
6083
 
6009
6084
 
6010
- #### [PlatformBreakupValues](#PlatformBreakupValues)
6085
+ #### [PlatformChannel](#PlatformChannel)
6011
6086
 
6012
6087
  | Properties | Type | Nullable | Description |
6013
6088
  | ---------- | ---- | -------- | ----------- |
6014
- | value | string | no | |
6015
6089
  | name | string | no | |
6016
- | display | string | no | |
6090
+ | logo | string | no | |
6017
6091
 
6018
6092
  ---
6019
6093
 
6020
6094
 
6021
6095
 
6022
6096
 
6023
- #### [PlatformChannel](#PlatformChannel)
6097
+ #### [PlatformBreakupValues](#PlatformBreakupValues)
6024
6098
 
6025
6099
  | Properties | Type | Nullable | Description |
6026
6100
  | ---------- | ---- | -------- | ----------- |
6027
6101
  | name | string | no | |
6028
- | logo | string | no | |
6102
+ | display | string | no | |
6103
+ | value | string | no | |
6029
6104
 
6030
6105
  ---
6031
6106
 
@@ -6036,16 +6111,16 @@ Sms Sent successfully
6036
6111
 
6037
6112
  | Properties | Type | Nullable | Description |
6038
6113
  | ---------- | ---- | -------- | ----------- |
6039
- | meta | string | no | |
6114
+ | user_info | [UserDataInfo](#UserDataInfo) | no | |
6040
6115
  | payment_mode | string | no | |
6116
+ | order_value | number | no | |
6041
6117
  | shipments | [[PlatformShipment](#PlatformShipment)] | no | |
6118
+ | channel | [PlatformChannel](#PlatformChannel) | no | |
6119
+ | order_id | string | no | |
6120
+ | meta | string | no | |
6042
6121
  | breakup_values | [[PlatformBreakupValues](#PlatformBreakupValues)] | no | |
6043
6122
  | order_created_time | string | no | |
6044
- | order_value | number | no | |
6045
- | channel | [PlatformChannel](#PlatformChannel) | no | |
6046
6123
  | total_order_value | number | no | |
6047
- | user_info | [UserDataInfo](#UserDataInfo) | no | |
6048
- | order_id | string | no | |
6049
6124
 
6050
6125
  ---
6051
6126
 
@@ -6056,11 +6131,11 @@ Sms Sent successfully
6056
6131
 
6057
6132
  | Properties | Type | Nullable | Description |
6058
6133
  | ---------- | ---- | -------- | ----------- |
6059
- | total_count | number | no | |
6060
- | page | [Page](#Page) | no | |
6061
6134
  | message | string | no | |
6062
- | success | boolean | no | |
6063
6135
  | lane | string | no | |
6136
+ | page | [Page](#Page) | no | |
6137
+ | total_count | number | no | |
6138
+ | success | boolean | no | |
6064
6139
  | items | [[PlatformOrderItems](#PlatformOrderItems)] | no | |
6065
6140
 
6066
6141
  ---
@@ -6084,10 +6159,10 @@ Sms Sent successfully
6084
6159
 
6085
6160
  | Properties | Type | Nullable | Description |
6086
6161
  | ---------- | ---- | -------- | ----------- |
6087
- | value | number | yes | |
6088
- | text | string | yes | |
6089
6162
  | options | [[Options](#Options)] | no | |
6090
6163
  | key | string | yes | |
6164
+ | value | number | yes | |
6165
+ | text | string | yes | |
6091
6166
 
6092
6167
  ---
6093
6168
 
@@ -6109,16 +6184,16 @@ Sms Sent successfully
6109
6184
 
6110
6185
  | Properties | Type | Nullable | Description |
6111
6186
  | ---------- | ---- | -------- | ----------- |
6112
- | meta | string | no | |
6113
6187
  | updated_at | string | no | |
6114
6188
  | status | string | no | |
6115
- | last_location_recieved_at | string | no | |
6116
6189
  | raw_status | string | no | |
6117
- | updated_time | string | no | |
6190
+ | shipment_type | string | no | |
6118
6191
  | account_name | string | no | |
6119
6192
  | awb | string | no | |
6193
+ | updated_time | string | no | |
6194
+ | meta | string | no | |
6195
+ | last_location_recieved_at | string | no | |
6120
6196
  | reason | string | no | |
6121
- | shipment_type | string | no | |
6122
6197
 
6123
6198
  ---
6124
6199
 
@@ -6129,8 +6204,8 @@ Sms Sent successfully
6129
6204
 
6130
6205
  | Properties | Type | Nullable | Description |
6131
6206
  | ---------- | ---- | -------- | ----------- |
6132
- | meta | string | no | |
6133
6207
  | results | [[PlatformTrack](#PlatformTrack)] | no | |
6208
+ | meta | string | no | |
6134
6209
 
6135
6210
  ---
6136
6211
 
@@ -6164,15 +6239,15 @@ Sms Sent successfully
6164
6239
 
6165
6240
  | Properties | Type | Nullable | Description |
6166
6241
  | ---------- | ---- | -------- | ----------- |
6167
- | report_created_at | string | no | |
6242
+ | report_id | string | no | |
6168
6243
  | status | string | no | |
6169
6244
  | report_name | string | no | |
6245
+ | report_type | string | no | |
6246
+ | report_created_at | string | no | |
6170
6247
  | request_details | string | no | |
6171
- | report_id | string | no | |
6172
6248
  | display_name | string | no | |
6173
6249
  | report_requested_at | string | no | |
6174
6250
  | s3_key | string | no | |
6175
- | report_type | string | no | |
6176
6251
 
6177
6252
  ---
6178
6253
 
@@ -6183,10 +6258,10 @@ Sms Sent successfully
6183
6258
 
6184
6259
  | Properties | Type | Nullable | Description |
6185
6260
  | ---------- | ---- | -------- | ----------- |
6186
- | company_id | string | no | |
6187
6261
  | item_id | string | no | |
6188
6262
  | article_id | string | no | |
6189
6263
  | jio_code | string | no | |
6264
+ | company_id | string | no | |
6190
6265
 
6191
6266
  ---
6192
6267
 
@@ -6208,9 +6283,9 @@ Sms Sent successfully
6208
6283
 
6209
6284
  | Properties | Type | Nullable | Description |
6210
6285
  | ---------- | ---- | -------- | ----------- |
6286
+ | message | string | no | |
6211
6287
  | value | string | no | |
6212
6288
  | type | string | no | |
6213
- | message | string | no | |
6214
6289
 
6215
6290
  ---
6216
6291
 
@@ -6221,11 +6296,11 @@ Sms Sent successfully
6221
6296
 
6222
6297
  | Properties | Type | Nullable | Description |
6223
6298
  | ---------- | ---- | -------- | ----------- |
6224
- | data | [string] | no | |
6225
- | success | boolean | no | |
6299
+ | error | [[NestedErrorSchemaDataSet](#NestedErrorSchemaDataSet)] | no | |
6226
6300
  | trace_id | string | no | |
6301
+ | data | [string] | no | |
6227
6302
  | identifier | string | no | |
6228
- | error | [[NestedErrorSchemaDataSet](#NestedErrorSchemaDataSet)] | no | |
6303
+ | success | boolean | no | |
6229
6304
 
6230
6305
  ---
6231
6306
 
@@ -6248,16 +6323,16 @@ Sms Sent successfully
6248
6323
 
6249
6324
  | Properties | Type | Nullable | Description |
6250
6325
  | ---------- | ---- | -------- | ----------- |
6251
- | invoice | string | no | |
6252
- | data | string | no | |
6253
- | label | string | no | |
6254
- | company_id | string | no | |
6255
- | store_id | string | no | |
6256
- | store_code | string | no | |
6257
- | do_invoice_label_generated | boolean | yes | |
6258
6326
  | store_name | string | no | |
6327
+ | do_invoice_label_generated | boolean | yes | |
6328
+ | store_id | string | no | |
6329
+ | label | string | no | |
6330
+ | data | string | no | |
6331
+ | invoice | string | no | |
6259
6332
  | batch_id | string | yes | |
6333
+ | company_id | string | no | |
6260
6334
  | invoice_status | string | no | |
6335
+ | store_code | string | no | |
6261
6336
 
6262
6337
  ---
6263
6338
 
@@ -6268,8 +6343,8 @@ Sms Sent successfully
6268
6343
 
6269
6344
  | Properties | Type | Nullable | Description |
6270
6345
  | ---------- | ---- | -------- | ----------- |
6271
- | url | string | no | |
6272
6346
  | expiry | number | no | |
6347
+ | url | string | no | |
6273
6348
 
6274
6349
  ---
6275
6350
 
@@ -6294,58 +6369,58 @@ Sms Sent successfully
6294
6369
  | upload | [FileUploadResponse](#FileUploadResponse) | no | |
6295
6370
  | method | string | no | |
6296
6371
  | tags | [string] | no | |
6297
- | file_path | string | no | |
6372
+ | namespace | string | no | |
6298
6373
  | file_name | string | no | |
6299
- | operation | string | no | |
6374
+ | size | number | no | |
6375
+ | file_path | string | no | |
6300
6376
  | cdn | [URL](#URL) | no | |
6301
- | namespace | string | no | |
6377
+ | operation | string | no | |
6302
6378
  | content_type | string | no | |
6303
- | size | number | no | |
6304
6379
 
6305
6380
  ---
6306
6381
 
6307
6382
 
6308
6383
 
6309
6384
 
6310
- #### [BulkListingPage](#BulkListingPage)
6385
+ #### [bulkListingData](#bulkListingData)
6311
6386
 
6312
6387
  | Properties | Type | Nullable | Description |
6313
6388
  | ---------- | ---- | -------- | ----------- |
6314
- | has_previous | boolean | no | |
6389
+ | store_id | number | no | |
6390
+ | company_id | number | no | |
6391
+ | processing_shipments | [string] | no | |
6392
+ | id | string | no | |
6393
+ | successful_shipments | [string] | no | |
6394
+ | excel_url | string | no | |
6395
+ | user_name | string | no | |
6396
+ | uploaded_on | string | no | |
6397
+ | batch_id | string | no | |
6398
+ | failed | number | no | |
6399
+ | processing | number | no | |
6400
+ | store_name | string | no | |
6401
+ | successful | number | no | |
6315
6402
  | total | number | no | |
6316
- | current | number | no | |
6317
- | type | string | no | |
6318
- | has_next | boolean | no | |
6319
- | size | number | no | |
6403
+ | user_id | string | no | |
6404
+ | store_code | string | no | |
6405
+ | status | string | no | |
6406
+ | file_name | string | no | |
6407
+ | failed_shipments | [string] | no | |
6320
6408
 
6321
6409
  ---
6322
6410
 
6323
6411
 
6324
6412
 
6325
6413
 
6326
- #### [bulkListingData](#bulkListingData)
6414
+ #### [BulkListingPage](#BulkListingPage)
6327
6415
 
6328
6416
  | Properties | Type | Nullable | Description |
6329
6417
  | ---------- | ---- | -------- | ----------- |
6330
- | failed_shipments | [string] | no | |
6331
- | successful_shipments | [string] | no | |
6332
- | file_name | string | no | |
6418
+ | type | string | no | |
6419
+ | current | number | no | |
6333
6420
  | 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 | |
6421
+ | size | number | no | |
6422
+ | has_previous | boolean | no | |
6423
+ | has_next | boolean | no | |
6349
6424
 
6350
6425
  ---
6351
6426
 
@@ -6356,10 +6431,10 @@ Sms Sent successfully
6356
6431
 
6357
6432
  | Properties | Type | Nullable | Description |
6358
6433
  | ---------- | ---- | -------- | ----------- |
6434
+ | data | [[bulkListingData](#bulkListingData)] | no | |
6359
6435
  | success | boolean | no | |
6360
- | error | string | no | |
6361
6436
  | page | [BulkListingPage](#BulkListingPage) | no | |
6362
- | data | [[bulkListingData](#bulkListingData)] | no | |
6437
+ | error | string | no | |
6363
6438
 
6364
6439
  ---
6365
6440
 
@@ -6382,8 +6457,8 @@ Sms Sent successfully
6382
6457
 
6383
6458
  | Properties | Type | Nullable | Description |
6384
6459
  | ---------- | ---- | -------- | ----------- |
6385
- | question_set | [[QuestionSet](#QuestionSet)] | no | |
6386
6460
  | display_name | string | no | |
6461
+ | question_set | [[QuestionSet](#QuestionSet)] | no | |
6387
6462
  | id | number | no | |
6388
6463
  | qc_type | [string] | no | |
6389
6464
 
@@ -6396,8 +6471,8 @@ Sms Sent successfully
6396
6471
 
6397
6472
  | Properties | Type | Nullable | Description |
6398
6473
  | ---------- | ---- | -------- | ----------- |
6399
- | success | boolean | no | |
6400
6474
  | reasons | [[Reason](#Reason)] | no | |
6475
+ | success | boolean | no | |
6401
6476
 
6402
6477
  ---
6403
6478
 
@@ -6419,8 +6494,8 @@ Sms Sent successfully
6419
6494
 
6420
6495
  | Properties | Type | Nullable | Description |
6421
6496
  | ---------- | ---- | -------- | ----------- |
6422
- | status | boolean | no | |
6423
6497
  | message | string | no | |
6498
+ | status | boolean | no | |
6424
6499
 
6425
6500
  ---
6426
6501
 
@@ -6431,13 +6506,13 @@ Sms Sent successfully
6431
6506
 
6432
6507
  | Properties | Type | Nullable | Description |
6433
6508
  | ---------- | ---- | -------- | ----------- |
6509
+ | successful_shipments_count | number | no | |
6434
6510
  | failed_shipments_count | number | no | |
6435
6511
  | 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
6512
  | total_shipments_count | number | no | |
6513
+ | batch_id | string | no | |
6514
+ | company_id | string | no | |
6515
+ | processing_shipments_count | number | no | |
6441
6516
 
6442
6517
  ---
6443
6518
 
@@ -6448,68 +6523,30 @@ Sms Sent successfully
6448
6523
 
6449
6524
  | Properties | Type | Nullable | Description |
6450
6525
  | ---------- | ---- | -------- | ----------- |
6451
- | uploaded_by | string | no | |
6452
- | user_id | string | no | |
6453
- | data | [[BulkActionDetailsDataField](#BulkActionDetailsDataField)] | no | |
6526
+ | error | [string] | no | |
6454
6527
  | status | boolean | no | |
6455
6528
  | failed_records | [string] | no | |
6456
6529
  | message | string | no | |
6457
- | success | string | no | |
6458
- | error | [string] | no | |
6530
+ | uploaded_by | string | no | |
6531
+ | data | [[BulkActionDetailsDataField](#BulkActionDetailsDataField)] | no | |
6459
6532
  | uploaded_on | string | no | |
6533
+ | user_id | string | no | |
6534
+ | success | string | no | |
6460
6535
 
6461
6536
  ---
6462
6537
 
6463
6538
 
6464
6539
 
6465
6540
 
6466
- #### [BagGSTDetails](#BagGSTDetails)
6467
-
6468
- | Properties | Type | Nullable | Description |
6469
- | ---------- | ---- | -------- | ----------- |
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 | |
6486
-
6487
- ---
6488
-
6489
-
6490
-
6491
-
6492
- #### [B2BPODetails](#B2BPODetails)
6493
-
6494
- | Properties | Type | Nullable | Description |
6495
- | ---------- | ---- | -------- | ----------- |
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 | |
6502
-
6503
- ---
6504
-
6505
-
6506
-
6507
-
6508
- #### [BagMeta](#BagMeta)
6541
+ #### [AffiliateBagDetails](#AffiliateBagDetails)
6509
6542
 
6510
6543
  | Properties | Type | Nullable | Description |
6511
6544
  | ---------- | ---- | -------- | ----------- |
6512
- | b2b_po_details | [B2BPODetails](#B2BPODetails) | no | |
6545
+ | employee_discount | number | no | |
6546
+ | affiliate_order_id | string | yes | |
6547
+ | affiliate_bag_id | string | yes | |
6548
+ | loyalty_discount | number | no | |
6549
+ | affiliate_meta | [AffiliateMeta](#AffiliateMeta) | yes | |
6513
6550
 
6514
6551
  ---
6515
6552
 
@@ -6520,8 +6557,8 @@ Sms Sent successfully
6520
6557
 
6521
6558
  | Properties | Type | Nullable | Description |
6522
6559
  | ---------- | ---- | -------- | ----------- |
6523
- | time | number | no | |
6524
6560
  | returnable | boolean | no | |
6561
+ | time | number | no | |
6525
6562
  | unit | string | no | |
6526
6563
 
6527
6564
  ---
@@ -6533,9 +6570,9 @@ Sms Sent successfully
6533
6570
 
6534
6571
  | Properties | Type | Nullable | Description |
6535
6572
  | ---------- | ---- | -------- | ----------- |
6536
- | is_default | boolean | no | |
6537
6573
  | shipping | number | no | |
6538
6574
  | unit | string | no | |
6575
+ | is_default | boolean | no | |
6539
6576
 
6540
6577
  ---
6541
6578
 
@@ -6546,320 +6583,358 @@ Sms Sent successfully
6546
6583
 
6547
6584
  | Properties | Type | Nullable | Description |
6548
6585
  | ---------- | ---- | -------- | ----------- |
6549
- | a_set | string | no | |
6586
+ | return_config | [ReturnConfig](#ReturnConfig) | no | |
6550
6587
  | _id | string | yes | |
6551
- | raw_meta | any | no | |
6552
- | identifiers | [Identifier](#Identifier) | yes | |
6553
- | seller_identifier | string | yes | |
6588
+ | a_set | string | no | |
6554
6589
  | 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
6590
  | is_set | boolean | no | |
6561
- | size | string | yes | |
6591
+ | child_details | string | no | |
6592
+ | identifiers | [Identifier](#Identifier) | yes | |
6562
6593
  | code | string | no | |
6594
+ | size | string | yes | |
6595
+ | esp_modified | any | no | |
6596
+ | weight | [Weight](#Weight) | no | |
6597
+ | seller_identifier | string | yes | |
6598
+ | dimensions | [Dimensions](#Dimensions) | no | |
6599
+ | raw_meta | any | no | |
6563
6600
 
6564
6601
  ---
6565
6602
 
6566
6603
 
6567
6604
 
6568
6605
 
6569
- #### [BagReturnableCancelableStatus](#BagReturnableCancelableStatus)
6606
+ #### [B2BPODetails](#B2BPODetails)
6570
6607
 
6571
6608
  | Properties | Type | Nullable | Description |
6572
6609
  | ---------- | ---- | -------- | ----------- |
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 | |
6610
+ | item_base_price | number | no | |
6611
+ | docker_number | string | no | |
6612
+ | partial_can_ret | boolean | no | |
6613
+ | po_line_amount | number | no | |
6614
+ | total_gst_percentage | number | no | |
6615
+ | po_tax_amount | number | no | |
6578
6616
 
6579
6617
  ---
6580
6618
 
6581
6619
 
6582
6620
 
6583
6621
 
6584
- #### [ArticleDetails](#ArticleDetails)
6622
+ #### [BagMeta](#BagMeta)
6585
6623
 
6586
6624
  | Properties | Type | Nullable | Description |
6587
6625
  | ---------- | ---- | -------- | ----------- |
6588
- | status | string | no | |
6626
+ | b2b_po_details | [B2BPODetails](#B2BPODetails) | no | |
6589
6627
 
6590
6628
  ---
6591
6629
 
6592
6630
 
6593
6631
 
6594
6632
 
6595
- #### [Document](#Document)
6633
+ #### [Dates](#Dates)
6596
6634
 
6597
6635
  | Properties | Type | Nullable | Description |
6598
6636
  | ---------- | ---- | -------- | ----------- |
6599
- | ds_type | string | yes | |
6600
- | legal_name | string | yes | |
6601
- | url | string | no | |
6602
- | verified | boolean | yes | |
6603
- | value | string | yes | |
6637
+ | delivery_date | any | no | |
6638
+ | order_created | string | no | |
6604
6639
 
6605
6640
  ---
6606
6641
 
6607
6642
 
6608
6643
 
6609
6644
 
6610
- #### [StoreDocuments](#StoreDocuments)
6645
+ #### [Brand](#Brand)
6611
6646
 
6612
6647
  | Properties | Type | Nullable | Description |
6613
6648
  | ---------- | ---- | -------- | ----------- |
6614
- | gst | [Document](#Document) | no | |
6649
+ | created_on | number | no | |
6650
+ | script_last_ran | string | no | |
6651
+ | credit_note_allowed | boolean | no | |
6652
+ | start_date | string | no | |
6653
+ | pickup_location | string | no | |
6654
+ | logo | string | no | |
6655
+ | is_virtual_invoice | boolean | no | |
6656
+ | modified_on | number | no | |
6657
+ | invoice_prefix | string | no | |
6658
+ | brand_name | string | yes | |
6659
+ | brand_id | number | yes | |
6660
+ | company | string | yes | |
6661
+ | credit_note_expiry_days | number | no | |
6615
6662
 
6616
6663
  ---
6617
6664
 
6618
6665
 
6619
6666
 
6620
6667
 
6621
- #### [EInvoicePortalDetails](#EInvoicePortalDetails)
6668
+ #### [Attributes](#Attributes)
6622
6669
 
6623
6670
  | Properties | Type | Nullable | Description |
6624
6671
  | ---------- | ---- | -------- | ----------- |
6625
- | user | string | no | |
6626
- | password | string | no | |
6627
- | username | string | no | |
6672
+ | name | string | no | |
6673
+ | primary_color_hex | string | no | |
6674
+ | gender | [string] | no | |
6675
+ | primary_color | string | no | |
6676
+ | brand_name | string | no | |
6677
+ | essential | string | no | |
6678
+ | marketer_address | string | no | |
6679
+ | primary_material | string | no | |
6680
+ | marketer_name | string | no | |
6628
6681
 
6629
6682
  ---
6630
6683
 
6631
6684
 
6632
6685
 
6633
6686
 
6634
- #### [StoreEwaybill](#StoreEwaybill)
6687
+ #### [Item](#Item)
6635
6688
 
6636
6689
  | Properties | Type | Nullable | Description |
6637
6690
  | ---------- | ---- | -------- | ----------- |
6638
- | enabled | boolean | no | |
6639
-
6640
- ---
6641
-
6642
-
6643
-
6644
-
6645
- #### [StoreEinvoice](#StoreEinvoice)
6691
+ | l1_category | [string] | no | |
6692
+ | color | string | no | |
6693
+ | image | [string] | yes | |
6694
+ | l2_category_id | number | no | |
6695
+ | slug_key | string | yes | |
6696
+ | l3_category_name | string | no | |
6697
+ | l2_category | [string] | no | |
6698
+ | can_cancel | boolean | no | |
6699
+ | last_updated_at | string | no | |
6700
+ | item_id | number | yes | |
6701
+ | meta | string | no | |
6702
+ | can_return | boolean | no | |
6703
+ | department_id | number | no | |
6704
+ | brand_id | number | yes | |
6705
+ | name | string | yes | |
6706
+ | brand | string | yes | |
6707
+ | branch_url | string | no | |
6708
+ | code | string | no | |
6709
+ | gender | string | no | |
6710
+ | size | string | yes | |
6711
+ | l1_category_id | number | no | |
6712
+ | webstore_product_url | string | no | |
6713
+ | l3_category | number | no | |
6714
+ | attributes | [Attributes](#Attributes) | yes | |
6715
+
6716
+ ---
6717
+
6718
+
6719
+
6720
+
6721
+ #### [BagReturnableCancelableStatus](#BagReturnableCancelableStatus)
6646
6722
 
6647
6723
  | Properties | Type | Nullable | Description |
6648
6724
  | ---------- | ---- | -------- | ----------- |
6649
- | user | string | no | |
6650
- | password | string | no | |
6651
- | enabled | boolean | yes | |
6652
- | username | string | no | |
6725
+ | enable_tracking | boolean | yes | |
6726
+ | is_customer_return_allowed | boolean | yes | |
6727
+ | is_active | boolean | yes | |
6728
+ | is_returnable | boolean | yes | |
6729
+ | can_be_cancelled | boolean | yes | |
6653
6730
 
6654
6731
  ---
6655
6732
 
6656
6733
 
6657
6734
 
6658
6735
 
6659
- #### [StoreGstCredentials](#StoreGstCredentials)
6736
+ #### [BagGSTDetails](#BagGSTDetails)
6660
6737
 
6661
6738
  | Properties | Type | Nullable | Description |
6662
6739
  | ---------- | ---- | -------- | ----------- |
6663
- | e_waybill | [StoreEwaybill](#StoreEwaybill) | no | |
6664
- | e_invoice | [StoreEinvoice](#StoreEinvoice) | no | |
6740
+ | hsn_code_id | string | yes | |
6741
+ | gst_tax_percentage | number | yes | |
6742
+ | igst_gst_fee | string | yes | |
6743
+ | is_default_hsn_code | boolean | no | |
6744
+ | sgst_tax_percentage | number | yes | |
6745
+ | value_of_good | number | yes | |
6746
+ | tax_collected_at_source | number | yes | |
6747
+ | gst_tag | string | yes | |
6748
+ | gst_fee | number | yes | |
6749
+ | brand_calculated_amount | number | yes | |
6750
+ | cgst_gst_fee | string | yes | |
6751
+ | sgst_gst_fee | string | yes | |
6752
+ | cgst_tax_percentage | number | yes | |
6753
+ | gstin_code | string | no | |
6754
+ | igst_tax_percentage | number | yes | |
6755
+ | hsn_code | string | yes | |
6665
6756
 
6666
6757
  ---
6667
6758
 
6668
6759
 
6669
6760
 
6670
6761
 
6671
- #### [StoreMeta](#StoreMeta)
6762
+ #### [ArticleDetails](#ArticleDetails)
6672
6763
 
6673
6764
  | Properties | Type | Nullable | Description |
6674
6765
  | ---------- | ---- | -------- | ----------- |
6675
- | documents | [StoreDocuments](#StoreDocuments) | no | |
6676
- | einvoice_portal_details | [EInvoicePortalDetails](#EInvoicePortalDetails) | no | |
6677
- | timing | [string] | no | |
6678
- | notification_emails | [string] | no | |
6679
- | additional_contact_details | string | no | |
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 | |
6766
+ | status | string | no | |
6686
6767
 
6687
6768
  ---
6688
6769
 
6689
6770
 
6690
6771
 
6691
6772
 
6692
- #### [StoreAddress](#StoreAddress)
6773
+ #### [StoreEwaybill](#StoreEwaybill)
6693
6774
 
6694
6775
  | Properties | Type | Nullable | Description |
6695
6776
  | ---------- | ---- | -------- | ----------- |
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 | |
6702
- | contact_person | string | yes | |
6703
- | area | string | no | |
6704
- | address_type | string | yes | |
6705
- | state | string | yes | |
6706
- | address_category | string | yes | |
6707
- | address1 | string | yes | |
6708
- | address2 | 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 | |
6777
+ | enabled | boolean | no | |
6715
6778
 
6716
6779
  ---
6717
6780
 
6718
6781
 
6719
6782
 
6720
6783
 
6721
- #### [Store](#Store)
6784
+ #### [StoreEinvoice](#StoreEinvoice)
6722
6785
 
6723
6786
  | Properties | Type | Nullable | Description |
6724
6787
  | ---------- | ---- | -------- | ----------- |
6725
- | phone | number | yes | |
6726
- | pincode | string | yes | |
6727
- | name | string | yes | |
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 | |
6788
+ | enabled | boolean | yes | |
6789
+ | username | string | no | |
6790
+ | password | string | no | |
6791
+ | user | string | no | |
6760
6792
 
6761
6793
  ---
6762
6794
 
6763
6795
 
6764
6796
 
6765
6797
 
6766
- #### [AffiliateBagDetails](#AffiliateBagDetails)
6798
+ #### [StoreGstCredentials](#StoreGstCredentials)
6767
6799
 
6768
6800
  | Properties | Type | Nullable | Description |
6769
6801
  | ---------- | ---- | -------- | ----------- |
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 | |
6802
+ | e_waybill | [StoreEwaybill](#StoreEwaybill) | no | |
6803
+ | e_invoice | [StoreEinvoice](#StoreEinvoice) | no | |
6775
6804
 
6776
6805
  ---
6777
6806
 
6778
6807
 
6779
6808
 
6780
6809
 
6781
- #### [Dates](#Dates)
6810
+ #### [EInvoicePortalDetails](#EInvoicePortalDetails)
6782
6811
 
6783
6812
  | Properties | Type | Nullable | Description |
6784
6813
  | ---------- | ---- | -------- | ----------- |
6785
- | delivery_date | any | no | |
6786
- | order_created | string | no | |
6814
+ | username | string | no | |
6815
+ | password | string | no | |
6816
+ | user | string | no | |
6787
6817
 
6788
6818
  ---
6789
6819
 
6790
6820
 
6791
6821
 
6792
6822
 
6793
- #### [Brand](#Brand)
6823
+ #### [Document](#Document)
6794
6824
 
6795
6825
  | Properties | Type | Nullable | Description |
6796
6826
  | ---------- | ---- | -------- | ----------- |
6797
- | created_on | number | no | |
6798
- | credit_note_expiry_days | number | no | |
6799
- | script_last_ran | string | no | |
6800
- | invoice_prefix | string | no | |
6801
- | modified_on | number | no | |
6802
- | pickup_location | string | no | |
6803
- | start_date | string | no | |
6804
- | brand_name | string | yes | |
6805
- | company | string | yes | |
6806
- | logo | string | no | |
6807
- | brand_id | number | yes | |
6808
- | credit_note_allowed | boolean | no | |
6809
- | is_virtual_invoice | boolean | no | |
6827
+ | ds_type | string | yes | |
6828
+ | url | string | no | |
6829
+ | value | string | yes | |
6830
+ | verified | boolean | yes | |
6831
+ | legal_name | string | yes | |
6810
6832
 
6811
6833
  ---
6812
6834
 
6813
6835
 
6814
6836
 
6815
6837
 
6816
- #### [Attributes](#Attributes)
6838
+ #### [StoreDocuments](#StoreDocuments)
6817
6839
 
6818
6840
  | Properties | Type | Nullable | Description |
6819
6841
  | ---------- | ---- | -------- | ----------- |
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 | |
6842
+ | gst | [Document](#Document) | no | |
6829
6843
 
6830
6844
  ---
6831
6845
 
6832
6846
 
6833
6847
 
6834
6848
 
6835
- #### [Item](#Item)
6849
+ #### [StoreMeta](#StoreMeta)
6836
6850
 
6837
6851
  | Properties | Type | Nullable | Description |
6838
6852
  | ---------- | ---- | -------- | ----------- |
6839
- | color | string | no | |
6853
+ | gst_credentials | [StoreGstCredentials](#StoreGstCredentials) | yes | |
6854
+ | ewaybill_portal_details | string | no | |
6855
+ | additional_contact_details | string | no | |
6856
+ | gst_number | string | no | |
6857
+ | stage | string | yes | |
6858
+ | einvoice_portal_details | [EInvoicePortalDetails](#EInvoicePortalDetails) | no | |
6859
+ | notification_emails | [string] | no | |
6860
+ | documents | [StoreDocuments](#StoreDocuments) | no | |
6861
+ | display_name | string | yes | |
6862
+ | product_return_config | string | no | |
6863
+ | timing | [string] | no | |
6864
+
6865
+ ---
6866
+
6867
+
6868
+
6869
+
6870
+ #### [StoreAddress](#StoreAddress)
6871
+
6872
+ | Properties | Type | Nullable | Description |
6873
+ | ---------- | ---- | -------- | ----------- |
6874
+ | latitude | number | yes | |
6875
+ | state | string | yes | |
6876
+ | address2 | string | no | |
6877
+ | created_at | string | yes | |
6878
+ | contact_person | string | yes | |
6879
+ | address1 | string | yes | |
6880
+ | country_code | string | yes | |
6881
+ | area | string | no | |
6882
+ | phone | string | yes | |
6883
+ | version | string | no | |
6884
+ | updated_at | string | yes | |
6885
+ | pincode | number | yes | |
6886
+ | city | string | yes | |
6887
+ | address_type | string | yes | |
6888
+ | longitude | number | yes | |
6889
+ | landmark | string | no | |
6890
+ | email | string | no | |
6891
+ | address_category | string | yes | |
6892
+ | country | string | yes | |
6893
+
6894
+ ---
6895
+
6896
+
6897
+
6898
+
6899
+ #### [Store](#Store)
6900
+
6901
+ | Properties | Type | Nullable | Description |
6902
+ | ---------- | ---- | -------- | ----------- |
6903
+ | store_active_from | string | no | |
6904
+ | latitude | number | yes | |
6905
+ | fulfillment_channel | string | yes | |
6906
+ | created_at | string | yes | |
6907
+ | address2 | string | no | |
6908
+ | state | string | yes | |
6909
+ | packaging_material_count | number | no | |
6910
+ | contact_person | string | yes | |
6911
+ | company_id | number | yes | |
6912
+ | address1 | string | yes | |
6913
+ | is_enabled_for_recon | boolean | no | |
6914
+ | location_type | string | yes | |
6915
+ | is_active | boolean | no | |
6916
+ | parent_store_id | number | no | |
6917
+ | meta | [StoreMeta](#StoreMeta) | yes | |
6918
+ | vat_no | string | no | |
6919
+ | phone | number | yes | |
6920
+ | brand_id | any | no | |
6921
+ | brand_store_tags | [string] | no | |
6922
+ | mall_area | string | no | |
6840
6923
  | 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 | |
6924
+ | updated_at | string | no | |
6925
+ | order_integration_id | string | no | |
6926
+ | pincode | string | yes | |
6927
+ | city | string | yes | |
6928
+ | is_archived | boolean | no | |
6929
+ | login_username | string | yes | |
6930
+ | longitude | number | yes | |
6931
+ | s_id | string | yes | |
6932
+ | store_address_json | [StoreAddress](#StoreAddress) | no | |
6933
+ | mall_name | string | no | |
6855
6934
  | 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 | |
6935
+ | store_email | string | yes | |
6936
+ | alohomora_user_id | number | no | |
6937
+ | country | string | yes | |
6863
6938
 
6864
6939
  ---
6865
6940
 
@@ -6870,45 +6945,45 @@ Sms Sent successfully
6870
6945
 
6871
6946
  | Properties | Type | Nullable | Description |
6872
6947
  | ---------- | ---- | -------- | ----------- |
6948
+ | restore_promos | string | no | |
6949
+ | current_operational_status | [BagStatusHistory](#BagStatusHistory) | yes | |
6950
+ | affiliate_bag_details | [AffiliateBagDetails](#AffiliateBagDetails) | yes | |
6951
+ | affiliate_details | [AffiliateDetails](#AffiliateDetails) | no | |
6952
+ | article | [Article](#Article) | yes | |
6953
+ | operational_status | string | no | |
6873
6954
  | shipment_id | string | no | |
6955
+ | prices | [Prices](#Prices) | yes | |
6874
6956
  | 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 | |
6957
+ | original_bag_list | [number] | no | |
6882
6958
  | reasons | [string] | no | |
6959
+ | bag_status | [[BagStatusHistory](#BagStatusHistory)] | yes | |
6960
+ | identifier | string | no | |
6961
+ | meta | [BagMeta](#BagMeta) | no | |
6962
+ | qc_required | any | no | |
6963
+ | b_type | string | no | |
6883
6964
  | seller_identifier | string | no | |
6965
+ | applied_promos | [string] | no | |
6966
+ | current_status | [BagStatusHistory](#BagStatusHistory) | yes | |
6967
+ | dates | [Dates](#Dates) | no | |
6884
6968
  | 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 | |
6889
- | quantity | number | no | |
6890
6969
  | restore_coupon | boolean | no | |
6970
+ | brand | [Brand](#Brand) | yes | |
6971
+ | quantity | number | no | |
6972
+ | line_number | number | no | |
6973
+ | item | [Item](#Item) | yes | |
6891
6974
  | no_of_bags_order | number | no | |
6892
- | restore_promos | string | no | |
6893
- | b_type | string | no | |
6894
- | applied_promos | [string] | no | |
6975
+ | financial_breakup | [[FinancialBreakup](#FinancialBreakup)] | yes | |
6976
+ | bag_update_time | number | no | |
6977
+ | status | [BagReturnableCancelableStatus](#BagReturnableCancelableStatus) | yes | |
6978
+ | gst_details | [BagGSTDetails](#BagGSTDetails) | yes | |
6979
+ | article_details | [ArticleDetails](#ArticleDetails) | no | |
6980
+ | bag_status_history | [BagStatusHistory](#BagStatusHistory) | no | |
6895
6981
  | ordering_store | [Store](#Store) | no | |
6896
- | affiliate_bag_details | [AffiliateBagDetails](#AffiliateBagDetails) | yes | |
6897
- | parent_promo_bags | string | no | |
6898
6982
  | tags | [string] | no | |
6899
- | operational_status | string | no | |
6900
- | affiliate_details | [AffiliateDetails](#AffiliateDetails) | no | |
6901
- | current_operational_status | [BagStatusHistory](#BagStatusHistory) | yes | |
6902
6983
  | journey_type | string | yes | |
6903
- | dates | [Dates](#Dates) | no | |
6904
- | brand | [Brand](#Brand) | yes | |
6905
- | original_bag_list | [number] | no | |
6906
- | qc_required | any | no | |
6984
+ | display_name | string | no | |
6985
+ | parent_promo_bags | string | no | |
6907
6986
  | entity_type | string | no | |
6908
- | prices | [Prices](#Prices) | yes | |
6909
- | line_number | number | no | |
6910
- | item | [Item](#Item) | yes | |
6911
- | identifier | string | no | |
6912
6987
 
6913
6988
  ---
6914
6989
 
@@ -6919,8 +6994,8 @@ Sms Sent successfully
6919
6994
 
6920
6995
  | Properties | Type | Nullable | Description |
6921
6996
  | ---------- | ---- | -------- | ----------- |
6922
- | error | string | yes | |
6923
6997
  | message | string | yes | |
6998
+ | error | string | yes | |
6924
6999
 
6925
7000
  ---
6926
7001
 
@@ -6931,11 +7006,11 @@ Sms Sent successfully
6931
7006
 
6932
7007
  | Properties | Type | Nullable | Description |
6933
7008
  | ---------- | ---- | -------- | ----------- |
6934
- | page_type | string | yes | |
6935
- | current | number | yes | |
6936
7009
  | item_total | number | yes | |
6937
- | has_next | boolean | yes | |
7010
+ | current | number | yes | |
6938
7011
  | size | number | yes | |
7012
+ | page_type | string | yes | |
7013
+ | has_next | boolean | yes | |
6939
7014
 
6940
7015
  ---
6941
7016
 
@@ -6969,10 +7044,10 @@ Sms Sent successfully
6969
7044
 
6970
7045
  | Properties | Type | Nullable | Description |
6971
7046
  | ---------- | ---- | -------- | ----------- |
7047
+ | error | string | no | |
6972
7048
  | message | string | no | |
6973
- | shipment_id | string | no | |
6974
7049
  | status | number | no | |
6975
- | error | string | no | |
7050
+ | shipment_id | string | no | |
6976
7051
 
6977
7052
  ---
6978
7053
 
@@ -6995,8 +7070,8 @@ Sms Sent successfully
6995
7070
  | Properties | Type | Nullable | Description |
6996
7071
  | ---------- | ---- | -------- | ----------- |
6997
7072
  | message | string | yes | |
6998
- | error_trace | string | no | |
6999
7073
  | status | number | yes | |
7074
+ | error_trace | string | no | |
7000
7075
 
7001
7076
  ---
7002
7077
 
@@ -7007,16 +7082,16 @@ Sms Sent successfully
7007
7082
 
7008
7083
  | Properties | Type | Nullable | Description |
7009
7084
  | ---------- | ---- | -------- | ----------- |
7010
- | set_id | string | no | |
7011
- | reason_ids | [number] | no | |
7012
- | affiliate_order_id | string | no | |
7013
- | affiliate_id | string | no | |
7014
7085
  | bag_id | number | no | |
7015
- | fynd_order_id | string | no | |
7016
- | item_id | string | no | |
7017
- | mongo_article_id | string | no | |
7086
+ | affiliate_order_id | string | no | |
7018
7087
  | store_id | number | yes | |
7088
+ | item_id | string | no | |
7089
+ | reason_ids | [number] | no | |
7090
+ | fynd_order_id | string | no | |
7091
+ | set_id | string | no | |
7019
7092
  | affiliate_bag_id | string | no | |
7093
+ | affiliate_id | string | no | |
7094
+ | mongo_article_id | string | no | |
7020
7095
 
7021
7096
  ---
7022
7097
 
@@ -7027,8 +7102,8 @@ Sms Sent successfully
7027
7102
 
7028
7103
  | Properties | Type | Nullable | Description |
7029
7104
  | ---------- | ---- | -------- | ----------- |
7030
- | message | string | no | |
7031
7105
  | success | boolean | no | |
7106
+ | message | string | no | |
7032
7107
 
7033
7108
  ---
7034
7109
 
@@ -7039,12 +7114,12 @@ Sms Sent successfully
7039
7114
 
7040
7115
  | Properties | Type | Nullable | Description |
7041
7116
  | ---------- | ---- | -------- | ----------- |
7042
- | reason_text | string | yes | |
7117
+ | id | string | no | |
7043
7118
  | affiliate_order_id | string | no | |
7119
+ | reason_text | string | yes | |
7120
+ | affiliate_bag_id | string | no | |
7044
7121
  | affiliate_id | string | no | |
7045
7122
  | affiliate_shipment_id | string | no | |
7046
- | id | string | no | |
7047
- | affiliate_bag_id | string | no | |
7048
7123
 
7049
7124
  ---
7050
7125
 
@@ -7055,36 +7130,36 @@ Sms Sent successfully
7055
7130
 
7056
7131
  | Properties | Type | Nullable | Description |
7057
7132
  | ---------- | ---- | -------- | ----------- |
7058
- | entities | [[Entities](#Entities)] | yes | |
7059
- | action | string | yes | |
7060
- | entity_type | string | yes | |
7061
7133
  | action_type | string | yes | |
7134
+ | entity_type | string | yes | |
7135
+ | action | string | yes | |
7136
+ | entities | [[Entities](#Entities)] | yes | |
7062
7137
 
7063
7138
  ---
7064
7139
 
7065
7140
 
7066
7141
 
7067
7142
 
7068
- #### [OriginalFilter](#OriginalFilter)
7143
+ #### [Bags](#Bags)
7069
7144
 
7070
7145
  | Properties | Type | Nullable | Description |
7071
7146
  | ---------- | ---- | -------- | ----------- |
7072
- | affiliate_id | string | no | |
7073
- | affiliate_shipment_id | string | no | |
7147
+ | affiliate_bag_id | string | no | |
7148
+ | is_locked | boolean | no | |
7149
+ | bag_id | number | no | |
7150
+ | affiliate_order_id | string | no | |
7074
7151
 
7075
7152
  ---
7076
7153
 
7077
7154
 
7078
7155
 
7079
7156
 
7080
- #### [Bags](#Bags)
7157
+ #### [OriginalFilter](#OriginalFilter)
7081
7158
 
7082
7159
  | Properties | Type | Nullable | Description |
7083
7160
  | ---------- | ---- | -------- | ----------- |
7084
- | is_locked | boolean | no | |
7085
- | bag_id | number | no | |
7086
- | affiliate_bag_id | string | no | |
7087
- | affiliate_order_id | string | no | |
7161
+ | affiliate_shipment_id | string | no | |
7162
+ | affiliate_id | string | no | |
7088
7163
 
7089
7164
  ---
7090
7165
 
@@ -7095,15 +7170,15 @@ Sms Sent successfully
7095
7170
 
7096
7171
  | Properties | Type | Nullable | Description |
7097
7172
  | ---------- | ---- | -------- | ----------- |
7098
- | shipment_id | string | no | |
7099
- | is_bag_locked | boolean | no | |
7100
- | affiliate_id | string | no | |
7101
- | affiliate_shipment_id | string | no | |
7102
- | is_shipment_locked | boolean | no | |
7103
- | original_filter | [OriginalFilter](#OriginalFilter) | no | |
7104
7173
  | bags | [[Bags](#Bags)] | no | |
7174
+ | original_filter | [OriginalFilter](#OriginalFilter) | no | |
7105
7175
  | status | string | no | |
7176
+ | is_bag_locked | boolean | no | |
7177
+ | is_shipment_locked | boolean | no | |
7178
+ | shipment_id | string | no | |
7106
7179
  | lock_status | boolean | no | |
7180
+ | affiliate_id | string | no | |
7181
+ | affiliate_shipment_id | string | no | |
7107
7182
 
7108
7183
  ---
7109
7184
 
@@ -7114,9 +7189,9 @@ Sms Sent successfully
7114
7189
 
7115
7190
  | Properties | Type | Nullable | Description |
7116
7191
  | ---------- | ---- | -------- | ----------- |
7192
+ | success | boolean | no | |
7117
7193
  | message | string | no | |
7118
7194
  | check_response | [[CheckResponse](#CheckResponse)] | no | |
7119
- | success | boolean | no | |
7120
7195
 
7121
7196
  ---
7122
7197
 
@@ -7127,16 +7202,16 @@ Sms Sent successfully
7127
7202
 
7128
7203
  | Properties | Type | Nullable | Description |
7129
7204
  | ---------- | ---- | -------- | ----------- |
7205
+ | platform_name | string | no | |
7206
+ | id | number | yes | |
7130
7207
  | from_datetime | string | no | |
7131
- | logo_url | string | no | |
7132
- | title | string | no | |
7133
- | created_at | string | no | |
7134
7208
  | platform_id | string | no | |
7209
+ | created_at | string | no | |
7135
7210
  | company_id | number | no | |
7136
- | id | number | yes | |
7137
- | platform_name | string | no | |
7138
- | to_datetime | string | no | |
7139
7211
  | description | string | no | |
7212
+ | title | string | no | |
7213
+ | to_datetime | string | no | |
7214
+ | logo_url | string | no | |
7140
7215
 
7141
7216
  ---
7142
7217
 
@@ -7158,8 +7233,8 @@ Sms Sent successfully
7158
7233
 
7159
7234
  | Properties | Type | Nullable | Description |
7160
7235
  | ---------- | ---- | -------- | ----------- |
7161
- | message | string | yes | |
7162
7236
  | success | boolean | yes | |
7237
+ | message | string | yes | |
7163
7238
 
7164
7239
  ---
7165
7240
 
@@ -7178,12 +7253,24 @@ Sms Sent successfully
7178
7253
 
7179
7254
 
7180
7255
 
7256
+ #### [EntitiesDataUpdates](#EntitiesDataUpdates)
7257
+
7258
+ | Properties | Type | Nullable | Description |
7259
+ | ---------- | ---- | -------- | ----------- |
7260
+ | data | string | no | |
7261
+ | filters | [string] | no | |
7262
+
7263
+ ---
7264
+
7265
+
7266
+
7267
+
7181
7268
  #### [ProductsDataUpdatesFilters](#ProductsDataUpdatesFilters)
7182
7269
 
7183
7270
  | Properties | Type | Nullable | Description |
7184
7271
  | ---------- | ---- | -------- | ----------- |
7185
- | line_number | number | no | |
7186
7272
  | identifier | string | no | |
7273
+ | line_number | number | no | |
7187
7274
 
7188
7275
  ---
7189
7276
 
@@ -7202,37 +7289,36 @@ Sms Sent successfully
7202
7289
 
7203
7290
 
7204
7291
 
7205
- #### [EntitiesDataUpdates](#EntitiesDataUpdates)
7292
+ #### [DataUpdates](#DataUpdates)
7206
7293
 
7207
7294
  | Properties | Type | Nullable | Description |
7208
7295
  | ---------- | ---- | -------- | ----------- |
7209
- | data | string | no | |
7210
- | filters | [string] | no | |
7296
+ | entities | [[EntitiesDataUpdates](#EntitiesDataUpdates)] | no | |
7297
+ | products | [[ProductsDataUpdates](#ProductsDataUpdates)] | no | |
7211
7298
 
7212
7299
  ---
7213
7300
 
7214
7301
 
7215
7302
 
7216
7303
 
7217
- #### [DataUpdates](#DataUpdates)
7304
+ #### [EntityReasonData](#EntityReasonData)
7218
7305
 
7219
7306
  | Properties | Type | Nullable | Description |
7220
7307
  | ---------- | ---- | -------- | ----------- |
7221
- | products | [[ProductsDataUpdates](#ProductsDataUpdates)] | no | |
7222
- | entities | [[EntitiesDataUpdates](#EntitiesDataUpdates)] | no | |
7308
+ | reason_text | string | no | |
7309
+ | reason_id | number | no | |
7223
7310
 
7224
7311
  ---
7225
7312
 
7226
7313
 
7227
7314
 
7228
7315
 
7229
- #### [Products](#Products)
7316
+ #### [EntitiesReasons](#EntitiesReasons)
7230
7317
 
7231
7318
  | Properties | Type | Nullable | Description |
7232
7319
  | ---------- | ---- | -------- | ----------- |
7233
- | line_number | number | no | |
7234
- | quantity | number | no | |
7235
- | identifier | string | no | |
7320
+ | data | [EntityReasonData](#EntityReasonData) | no | |
7321
+ | filters | [string] | no | |
7236
7322
 
7237
7323
  ---
7238
7324
 
@@ -7255,9 +7341,9 @@ Sms Sent successfully
7255
7341
 
7256
7342
  | Properties | Type | Nullable | Description |
7257
7343
  | ---------- | ---- | -------- | ----------- |
7258
- | line_number | number | no | |
7259
7344
  | quantity | number | no | |
7260
7345
  | identifier | string | no | |
7346
+ | line_number | number | no | |
7261
7347
 
7262
7348
  ---
7263
7349
 
@@ -7276,36 +7362,25 @@ Sms Sent successfully
7276
7362
 
7277
7363
 
7278
7364
 
7279
- #### [EntityReasonData](#EntityReasonData)
7280
-
7281
- | Properties | Type | Nullable | Description |
7282
- | ---------- | ---- | -------- | ----------- |
7283
- | reason_text | string | no | |
7284
- | reason_id | number | no | |
7285
-
7286
- ---
7287
-
7288
-
7289
-
7290
-
7291
- #### [EntitiesReasons](#EntitiesReasons)
7365
+ #### [ReasonsData](#ReasonsData)
7292
7366
 
7293
7367
  | Properties | Type | Nullable | Description |
7294
7368
  | ---------- | ---- | -------- | ----------- |
7295
- | data | [EntityReasonData](#EntityReasonData) | no | |
7296
- | filters | [string] | no | |
7369
+ | entities | [[EntitiesReasons](#EntitiesReasons)] | no | |
7370
+ | products | [[ProductsReasons](#ProductsReasons)] | no | |
7297
7371
 
7298
7372
  ---
7299
7373
 
7300
7374
 
7301
7375
 
7302
7376
 
7303
- #### [ReasonsData](#ReasonsData)
7377
+ #### [Products](#Products)
7304
7378
 
7305
7379
  | Properties | Type | Nullable | Description |
7306
7380
  | ---------- | ---- | -------- | ----------- |
7307
- | products | [[ProductsReasons](#ProductsReasons)] | no | |
7308
- | entities | [[EntitiesReasons](#EntitiesReasons)] | no | |
7381
+ | quantity | number | no | |
7382
+ | identifier | string | no | |
7383
+ | line_number | number | no | |
7309
7384
 
7310
7385
  ---
7311
7386
 
@@ -7316,10 +7391,10 @@ Sms Sent successfully
7316
7391
 
7317
7392
  | Properties | Type | Nullable | Description |
7318
7393
  | ---------- | ---- | -------- | ----------- |
7394
+ | identifier | string | yes | |
7319
7395
  | data_updates | [DataUpdates](#DataUpdates) | no | |
7320
- | products | [[Products](#Products)] | no | |
7321
7396
  | reasons | [ReasonsData](#ReasonsData) | no | |
7322
- | identifier | string | yes | |
7397
+ | products | [[Products](#Products)] | no | |
7323
7398
 
7324
7399
  ---
7325
7400
 
@@ -7344,8 +7419,8 @@ Sms Sent successfully
7344
7419
  | Properties | Type | Nullable | Description |
7345
7420
  | ---------- | ---- | -------- | ----------- |
7346
7421
  | unlock_before_transition | boolean | no | |
7347
- | lock_after_transition | boolean | no | |
7348
7422
  | force_transition | boolean | no | |
7423
+ | lock_after_transition | boolean | no | |
7349
7424
  | task | boolean | no | |
7350
7425
  | statuses | [[StatuesRequest](#StatuesRequest)] | no | |
7351
7426
 
@@ -7358,14 +7433,14 @@ Sms Sent successfully
7358
7433
 
7359
7434
  | Properties | Type | Nullable | Description |
7360
7435
  | ---------- | ---- | -------- | ----------- |
7361
- | final_state | string | no | |
7362
- | identifier | string | no | |
7363
- | exception | string | no | |
7364
7436
  | meta | string | no | |
7365
- | message | string | no | |
7366
- | status | number | no | |
7367
7437
  | code | string | no | |
7368
7438
  | stack_trace | string | no | |
7439
+ | identifier | string | no | |
7440
+ | status | number | no | |
7441
+ | final_state | string | no | |
7442
+ | message | string | no | |
7443
+ | exception | string | no | |
7369
7444
 
7370
7445
  ---
7371
7446
 
@@ -7394,139 +7469,139 @@ Sms Sent successfully
7394
7469
 
7395
7470
 
7396
7471
 
7397
- #### [AffiliateAppConfigMeta](#AffiliateAppConfigMeta)
7472
+ #### [AffiliateStoreIdMapping](#AffiliateStoreIdMapping)
7398
7473
 
7399
7474
  | Properties | Type | Nullable | Description |
7400
7475
  | ---------- | ---- | -------- | ----------- |
7401
- | name | string | yes | |
7402
- | value | string | yes | |
7476
+ | store_id | number | yes | |
7477
+ | marketplace_store_id | string | yes | |
7403
7478
 
7404
7479
  ---
7405
7480
 
7406
7481
 
7407
7482
 
7408
7483
 
7409
- #### [AffiliateAppConfig](#AffiliateAppConfig)
7484
+ #### [AffiliateInventoryOrderConfig](#AffiliateInventoryOrderConfig)
7410
7485
 
7411
7486
  | Properties | Type | Nullable | Description |
7412
7487
  | ---------- | ---- | -------- | ----------- |
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 | |
7488
+ | force_reassignment | boolean | no | |
7422
7489
 
7423
7490
  ---
7424
7491
 
7425
7492
 
7426
7493
 
7427
7494
 
7428
- #### [AffiliateInventoryArticleAssignmentConfig](#AffiliateInventoryArticleAssignmentConfig)
7495
+ #### [AffiliateInventoryPaymentConfig](#AffiliateInventoryPaymentConfig)
7429
7496
 
7430
7497
  | Properties | Type | Nullable | Description |
7431
7498
  | ---------- | ---- | -------- | ----------- |
7432
- | post_order_reassignment | boolean | no | |
7499
+ | mode_of_payment | string | no | |
7500
+ | source | string | no | |
7433
7501
 
7434
7502
  ---
7435
7503
 
7436
7504
 
7437
7505
 
7438
7506
 
7439
- #### [AffiliateInventoryPaymentConfig](#AffiliateInventoryPaymentConfig)
7507
+ #### [AffiliateInventoryLogisticsConfig](#AffiliateInventoryLogisticsConfig)
7440
7508
 
7441
7509
  | Properties | Type | Nullable | Description |
7442
7510
  | ---------- | ---- | -------- | ----------- |
7443
- | mode_of_payment | string | no | |
7444
- | source | string | no | |
7511
+ | dp_assignment | boolean | no | |
7445
7512
 
7446
7513
  ---
7447
7514
 
7448
7515
 
7449
7516
 
7450
7517
 
7451
- #### [AffiliateInventoryStoreConfig](#AffiliateInventoryStoreConfig)
7518
+ #### [AffiliateInventoryArticleAssignmentConfig](#AffiliateInventoryArticleAssignmentConfig)
7452
7519
 
7453
7520
  | Properties | Type | Nullable | Description |
7454
7521
  | ---------- | ---- | -------- | ----------- |
7455
- | store | string | no | |
7522
+ | post_order_reassignment | boolean | no | |
7456
7523
 
7457
7524
  ---
7458
7525
 
7459
7526
 
7460
7527
 
7461
7528
 
7462
- #### [AffiliateInventoryOrderConfig](#AffiliateInventoryOrderConfig)
7529
+ #### [AffiliateInventoryStoreConfig](#AffiliateInventoryStoreConfig)
7463
7530
 
7464
7531
  | Properties | Type | Nullable | Description |
7465
7532
  | ---------- | ---- | -------- | ----------- |
7466
- | force_reassignment | boolean | no | |
7533
+ | store | string | no | |
7467
7534
 
7468
7535
  ---
7469
7536
 
7470
7537
 
7471
7538
 
7472
7539
 
7473
- #### [AffiliateInventoryLogisticsConfig](#AffiliateInventoryLogisticsConfig)
7540
+ #### [AffiliateInventoryConfig](#AffiliateInventoryConfig)
7474
7541
 
7475
7542
  | Properties | Type | Nullable | Description |
7476
7543
  | ---------- | ---- | -------- | ----------- |
7477
- | dp_assignment | boolean | no | |
7544
+ | order | [AffiliateInventoryOrderConfig](#AffiliateInventoryOrderConfig) | no | |
7545
+ | payment | [AffiliateInventoryPaymentConfig](#AffiliateInventoryPaymentConfig) | no | |
7546
+ | logistics | [AffiliateInventoryLogisticsConfig](#AffiliateInventoryLogisticsConfig) | no | |
7547
+ | article_assignment | [AffiliateInventoryArticleAssignmentConfig](#AffiliateInventoryArticleAssignmentConfig) | no | |
7548
+ | inventory | [AffiliateInventoryStoreConfig](#AffiliateInventoryStoreConfig) | no | |
7478
7549
 
7479
7550
  ---
7480
7551
 
7481
7552
 
7482
7553
 
7483
7554
 
7484
- #### [AffiliateInventoryConfig](#AffiliateInventoryConfig)
7555
+ #### [AffiliateAppConfigMeta](#AffiliateAppConfigMeta)
7485
7556
 
7486
7557
  | Properties | Type | Nullable | Description |
7487
7558
  | ---------- | ---- | -------- | ----------- |
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 | |
7559
+ | name | string | yes | |
7560
+ | value | string | yes | |
7493
7561
 
7494
7562
  ---
7495
7563
 
7496
7564
 
7497
7565
 
7498
7566
 
7499
- #### [AffiliateConfig](#AffiliateConfig)
7567
+ #### [AffiliateAppConfig](#AffiliateAppConfig)
7500
7568
 
7501
7569
  | Properties | Type | Nullable | Description |
7502
7570
  | ---------- | ---- | -------- | ----------- |
7503
- | app | [AffiliateAppConfig](#AffiliateAppConfig) | no | |
7504
- | inventory | [AffiliateInventoryConfig](#AffiliateInventoryConfig) | no | |
7571
+ | owner | string | yes | |
7572
+ | meta | [[AffiliateAppConfigMeta](#AffiliateAppConfigMeta)] | no | |
7573
+ | id | string | yes | |
7574
+ | updated_at | string | yes | |
7575
+ | name | string | yes | |
7576
+ | secret | string | yes | |
7577
+ | token | string | yes | |
7578
+ | created_at | string | yes | |
7579
+ | description | string | no | |
7505
7580
 
7506
7581
  ---
7507
7582
 
7508
7583
 
7509
7584
 
7510
7585
 
7511
- #### [Affiliate](#Affiliate)
7586
+ #### [AffiliateConfig](#AffiliateConfig)
7512
7587
 
7513
7588
  | Properties | Type | Nullable | Description |
7514
7589
  | ---------- | ---- | -------- | ----------- |
7515
- | config | [AffiliateConfig](#AffiliateConfig) | no | |
7516
- | id | string | yes | |
7517
- | token | string | yes | |
7590
+ | inventory | [AffiliateInventoryConfig](#AffiliateInventoryConfig) | no | |
7591
+ | app | [AffiliateAppConfig](#AffiliateAppConfig) | no | |
7518
7592
 
7519
7593
  ---
7520
7594
 
7521
7595
 
7522
7596
 
7523
7597
 
7524
- #### [AffiliateStoreIdMapping](#AffiliateStoreIdMapping)
7598
+ #### [Affiliate](#Affiliate)
7525
7599
 
7526
7600
  | Properties | Type | Nullable | Description |
7527
7601
  | ---------- | ---- | -------- | ----------- |
7528
- | store_id | number | yes | |
7529
- | marketplace_store_id | string | yes | |
7602
+ | id | string | yes | |
7603
+ | token | string | yes | |
7604
+ | config | [AffiliateConfig](#AffiliateConfig) | no | |
7530
7605
 
7531
7606
  ---
7532
7607
 
@@ -7537,12 +7612,12 @@ Sms Sent successfully
7537
7612
 
7538
7613
  | Properties | Type | Nullable | Description |
7539
7614
  | ---------- | ---- | -------- | ----------- |
7540
- | affiliate | [Affiliate](#Affiliate) | yes | |
7541
- | bag_end_state | string | no | |
7542
7615
  | affiliate_store_id_mapping | [[AffiliateStoreIdMapping](#AffiliateStoreIdMapping)] | yes | |
7543
- | article_lookup | string | no | |
7544
7616
  | create_user | boolean | no | |
7545
7617
  | store_lookup | string | no | |
7618
+ | bag_end_state | string | no | |
7619
+ | article_lookup | string | no | |
7620
+ | affiliate | [Affiliate](#Affiliate) | yes | |
7546
7621
 
7547
7622
  ---
7548
7623
 
@@ -7554,162 +7629,162 @@ Sms Sent successfully
7554
7629
  | Properties | Type | Nullable | Description |
7555
7630
  | ---------- | ---- | -------- | ----------- |
7556
7631
  | city | string | yes | |
7557
- | mobile | number | yes | |
7558
- | last_name | string | yes | |
7559
- | pincode | string | yes | |
7560
- | phone | number | yes | |
7561
7632
  | state | string | yes | |
7633
+ | email | string | yes | |
7634
+ | phone | number | yes | |
7635
+ | mobile | number | yes | |
7562
7636
  | address1 | string | no | |
7563
- | first_name | string | yes | |
7637
+ | last_name | string | yes | |
7564
7638
  | address2 | string | no | |
7565
- | email | string | yes | |
7566
7639
  | country | string | yes | |
7640
+ | first_name | string | yes | |
7641
+ | pincode | string | yes | |
7567
7642
 
7568
7643
  ---
7569
7644
 
7570
7645
 
7571
7646
 
7572
7647
 
7573
- #### [UserData](#UserData)
7648
+ #### [MarketPlacePdf](#MarketPlacePdf)
7574
7649
 
7575
7650
  | Properties | Type | Nullable | Description |
7576
7651
  | ---------- | ---- | -------- | ----------- |
7577
- | shipping_user | [OrderUser](#OrderUser) | no | |
7578
- | billing_user | [OrderUser](#OrderUser) | no | |
7652
+ | label | string | no | |
7653
+ | invoice | string | no | |
7579
7654
 
7580
7655
  ---
7581
7656
 
7582
7657
 
7583
7658
 
7584
7659
 
7585
- #### [ArticleDetails1](#ArticleDetails1)
7660
+ #### [AffiliateBag](#AffiliateBag)
7586
7661
 
7587
7662
  | Properties | Type | Nullable | Description |
7588
7663
  | ---------- | ---- | -------- | ----------- |
7589
- | category | string | yes | |
7590
- | _id | string | yes | |
7664
+ | unit_price | number | yes | |
7665
+ | store_id | number | yes | |
7666
+ | delivery_charge | number | yes | |
7667
+ | pdf_links | [MarketPlacePdf](#MarketPlacePdf) | no | |
7668
+ | item_size | string | yes | |
7669
+ | avl_qty | number | yes | |
7670
+ | company_id | number | yes | |
7671
+ | amount_paid | number | yes | |
7672
+ | discount | number | yes | |
7673
+ | price_effective | number | yes | |
7674
+ | fynd_store_id | string | yes | |
7675
+ | sku | string | yes | |
7676
+ | price_marked | number | yes | |
7677
+ | affiliate_meta | string | yes | |
7678
+ | seller_identifier | string | yes | |
7679
+ | affiliate_store_id | string | yes | |
7591
7680
  | quantity | number | yes | |
7592
- | dimension | string | yes | |
7593
- | weight | string | yes | |
7594
- | attributes | string | yes | |
7595
- | brand_id | number | yes | |
7681
+ | item_id | number | yes | |
7682
+ | identifier | string | yes | |
7683
+ | modified_on | string | yes | |
7684
+ | transfer_price | number | yes | |
7685
+ | hsn_code_id | string | yes | |
7686
+ | _id | string | yes | |
7596
7687
 
7597
7688
  ---
7598
7689
 
7599
7690
 
7600
7691
 
7601
7692
 
7602
- #### [LocationDetails](#LocationDetails)
7693
+ #### [OrderPriority](#OrderPriority)
7603
7694
 
7604
7695
  | Properties | Type | Nullable | Description |
7605
7696
  | ---------- | ---- | -------- | ----------- |
7606
- | fulfillment_id | number | yes | |
7607
- | fulfillment_type | string | yes | |
7608
- | articles | [[ArticleDetails1](#ArticleDetails1)] | yes | |
7697
+ | fulfilment_priority | number | no | |
7698
+ | fulfilment_priority_text | string | no | |
7699
+ | affiliate_priority_code | string | no | |
7609
7700
 
7610
7701
  ---
7611
7702
 
7612
7703
 
7613
7704
 
7614
7705
 
7615
- #### [ShipmentDetails](#ShipmentDetails)
7706
+ #### [UserData](#UserData)
7616
7707
 
7617
7708
  | Properties | Type | Nullable | Description |
7618
7709
  | ---------- | ---- | -------- | ----------- |
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 | |
7710
+ | billing_user | [OrderUser](#OrderUser) | no | |
7711
+ | shipping_user | [OrderUser](#OrderUser) | no | |
7626
7712
 
7627
7713
  ---
7628
7714
 
7629
7715
 
7630
7716
 
7631
7717
 
7632
- #### [ShipmentConfig](#ShipmentConfig)
7718
+ #### [ArticleDetails1](#ArticleDetails1)
7633
7719
 
7634
7720
  | Properties | Type | Nullable | Description |
7635
7721
  | ---------- | ---- | -------- | ----------- |
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 | |
7722
+ | quantity | number | yes | |
7723
+ | category | string | yes | |
7724
+ | weight | string | yes | |
7725
+ | dimension | string | yes | |
7726
+ | brand_id | number | yes | |
7727
+ | _id | string | yes | |
7728
+ | attributes | string | yes | |
7644
7729
 
7645
7730
  ---
7646
7731
 
7647
7732
 
7648
7733
 
7649
7734
 
7650
- #### [ShipmentData](#ShipmentData)
7735
+ #### [LocationDetails](#LocationDetails)
7651
7736
 
7652
7737
  | Properties | Type | Nullable | Description |
7653
7738
  | ---------- | ---- | -------- | ----------- |
7654
- | shipment_data | [ShipmentConfig](#ShipmentConfig) | yes | |
7739
+ | articles | [[ArticleDetails1](#ArticleDetails1)] | yes | |
7740
+ | fulfillment_type | string | yes | |
7741
+ | fulfillment_id | number | yes | |
7655
7742
 
7656
7743
  ---
7657
7744
 
7658
7745
 
7659
7746
 
7660
7747
 
7661
- #### [MarketPlacePdf](#MarketPlacePdf)
7748
+ #### [ShipmentDetails](#ShipmentDetails)
7662
7749
 
7663
7750
  | Properties | Type | Nullable | Description |
7664
7751
  | ---------- | ---- | -------- | ----------- |
7665
- | label | string | no | |
7666
- | invoice | string | no | |
7752
+ | meta | string | no | |
7753
+ | articles | [[ArticleDetails1](#ArticleDetails1)] | yes | |
7754
+ | box_type | string | no | |
7755
+ | shipments | number | yes | |
7756
+ | dp_id | number | no | |
7757
+ | affiliate_shipment_id | string | yes | |
7758
+ | fulfillment_id | number | yes | |
7667
7759
 
7668
7760
  ---
7669
7761
 
7670
7762
 
7671
7763
 
7672
7764
 
7673
- #### [AffiliateBag](#AffiliateBag)
7765
+ #### [ShipmentConfig](#ShipmentConfig)
7674
7766
 
7675
7767
  | Properties | Type | Nullable | Description |
7676
7768
  | ---------- | ---- | -------- | ----------- |
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 | |
7769
+ | payment_mode | string | yes | |
7770
+ | to_pincode | string | yes | |
7697
7771
  | identifier | string | yes | |
7698
- | pdf_links | [MarketPlacePdf](#MarketPlacePdf) | no | |
7699
- | unit_price | number | yes | |
7772
+ | action | string | yes | |
7773
+ | location_details | [LocationDetails](#LocationDetails) | no | |
7774
+ | journey | string | yes | |
7775
+ | shipment | [[ShipmentDetails](#ShipmentDetails)] | yes | |
7776
+ | source | string | yes | |
7700
7777
 
7701
7778
  ---
7702
7779
 
7703
7780
 
7704
7781
 
7705
7782
 
7706
- #### [OrderPriority](#OrderPriority)
7783
+ #### [ShipmentData](#ShipmentData)
7707
7784
 
7708
7785
  | Properties | Type | Nullable | Description |
7709
7786
  | ---------- | ---- | -------- | ----------- |
7710
- | fulfilment_priority_text | string | no | |
7711
- | fulfilment_priority | number | no | |
7712
- | affiliate_priority_code | string | no | |
7787
+ | shipment_data | [ShipmentConfig](#ShipmentConfig) | yes | |
7713
7788
 
7714
7789
  ---
7715
7790
 
@@ -7720,21 +7795,21 @@ Sms Sent successfully
7720
7795
 
7721
7796
  | Properties | Type | Nullable | Description |
7722
7797
  | ---------- | ---- | -------- | ----------- |
7723
- | payment | string | no | |
7724
- | affiliate_order_id | string | no | |
7725
- | user | [UserData](#UserData) | yes | |
7726
- | shipping_address | [OrderUser](#OrderUser) | yes | |
7727
- | billing_address | [OrderUser](#OrderUser) | yes | |
7728
- | shipment | [ShipmentData](#ShipmentData) | no | |
7729
- | discount | number | yes | |
7730
7798
  | payment_mode | string | yes | |
7799
+ | shipping_address | [OrderUser](#OrderUser) | yes | |
7800
+ | affiliate_order_id | string | no | |
7731
7801
  | bags | [[AffiliateBag](#AffiliateBag)] | yes | |
7802
+ | delivery_charges | number | yes | |
7803
+ | order_priority | [OrderPriority](#OrderPriority) | no | |
7804
+ | items | string | yes | |
7732
7805
  | coupon | string | no | |
7806
+ | discount | number | yes | |
7807
+ | payment | string | no | |
7808
+ | billing_address | [OrderUser](#OrderUser) | yes | |
7809
+ | user | [UserData](#UserData) | yes | |
7810
+ | shipment | [ShipmentData](#ShipmentData) | no | |
7733
7811
  | cod_charges | number | yes | |
7734
- | delivery_charges | number | yes | |
7735
7812
  | order_value | number | yes | |
7736
- | items | string | yes | |
7737
- | order_priority | [OrderPriority](#OrderPriority) | no | |
7738
7813
 
7739
7814
  ---
7740
7815
 
@@ -7780,8 +7855,8 @@ Sms Sent successfully
7780
7855
 
7781
7856
  | Properties | Type | Nullable | Description |
7782
7857
  | ---------- | ---- | -------- | ----------- |
7783
- | message | string | no | |
7784
7858
  | success | boolean | no | |
7859
+ | message | string | no | |
7785
7860
 
7786
7861
  ---
7787
7862
 
@@ -7792,9 +7867,9 @@ Sms Sent successfully
7792
7867
 
7793
7868
  | Properties | Type | Nullable | Description |
7794
7869
  | ---------- | ---- | -------- | ----------- |
7870
+ | id | number | yes | |
7795
7871
  | display_text | string | yes | |
7796
7872
  | slug | string | yes | |
7797
- | id | number | yes | |
7798
7873
  | description | string | yes | |
7799
7874
 
7800
7875
  ---
@@ -7818,15 +7893,15 @@ Sms Sent successfully
7818
7893
  | Properties | Type | Nullable | Description |
7819
7894
  | ---------- | ---- | -------- | ----------- |
7820
7895
  | type | string | yes | |
7821
- | user | string | yes | |
7822
- | l2_detail | string | no | |
7896
+ | l3_detail | string | no | |
7897
+ | ticket_url | string | no | |
7823
7898
  | bag_id | number | no | |
7899
+ | l1_detail | string | no | |
7900
+ | user | string | yes | |
7824
7901
  | ticket_id | string | no | |
7825
- | message | string | yes | |
7826
7902
  | createdat | string | yes | |
7827
- | ticket_url | string | no | |
7828
- | l1_detail | string | no | |
7829
- | l3_detail | string | no | |
7903
+ | message | string | yes | |
7904
+ | l2_detail | string | no | |
7830
7905
 
7831
7906
  ---
7832
7907
 
@@ -7848,8 +7923,8 @@ Sms Sent successfully
7848
7923
 
7849
7924
  | Properties | Type | Nullable | Description |
7850
7925
  | ---------- | ---- | -------- | ----------- |
7851
- | message | string | no | |
7852
7926
  | success | boolean | no | |
7927
+ | message | string | no | |
7853
7928
 
7854
7929
  ---
7855
7930
 
@@ -7860,8 +7935,8 @@ Sms Sent successfully
7860
7935
 
7861
7936
  | Properties | Type | Nullable | Description |
7862
7937
  | ---------- | ---- | -------- | ----------- |
7863
- | message | string | yes | |
7864
7938
  | user_name | string | yes | |
7939
+ | message | string | yes | |
7865
7940
 
7866
7941
  ---
7867
7942
 
@@ -7919,15 +7994,15 @@ Sms Sent successfully
7919
7994
 
7920
7995
  | Properties | Type | Nullable | Description |
7921
7996
  | ---------- | ---- | -------- | ----------- |
7922
- | order_id | string | yes | |
7923
- | shipment_id | number | yes | |
7924
- | amount_paid | number | yes | |
7925
- | payment_mode | string | yes | |
7926
- | phone_number | number | yes | |
7927
- | message | string | yes | |
7928
7997
  | customer_name | string | yes | |
7929
7998
  | country_code | string | yes | |
7999
+ | payment_mode | string | yes | |
8000
+ | amount_paid | number | yes | |
8001
+ | phone_number | number | yes | |
8002
+ | shipment_id | number | yes | |
7930
8003
  | brand_name | string | yes | |
8004
+ | order_id | string | yes | |
8005
+ | message | string | yes | |
7931
8006
 
7932
8007
  ---
7933
8008
 
@@ -7938,21 +8013,9 @@ Sms Sent successfully
7938
8013
 
7939
8014
  | Properties | Type | Nullable | Description |
7940
8015
  | ---------- | ---- | -------- | ----------- |
7941
- | slug | string | yes | |
7942
- | bag_id | number | yes | |
7943
8016
  | data | [SmsDataPayload](#SmsDataPayload) | no | |
7944
-
7945
- ---
7946
-
7947
-
7948
-
7949
-
7950
- #### [OrderDetails](#OrderDetails)
7951
-
7952
- | Properties | Type | Nullable | Description |
7953
- | ---------- | ---- | -------- | ----------- |
7954
- | created_at | string | no | |
7955
- | fynd_order_id | string | no | |
8017
+ | bag_id | number | yes | |
8018
+ | slug | string | yes | |
7956
8019
 
7957
8020
  ---
7958
8021
 
@@ -7975,12 +8038,24 @@ Sms Sent successfully
7975
8038
 
7976
8039
  | Properties | Type | Nullable | Description |
7977
8040
  | ---------- | ---- | -------- | ----------- |
7978
- | shipment_id | string | no | |
7979
- | remarks | string | no | |
7980
- | bag_list | [number] | no | |
7981
8041
  | meta | [Meta1](#Meta1) | yes | |
7982
- | status | string | no | |
7983
8042
  | id | number | yes | |
8043
+ | status | string | no | |
8044
+ | bag_list | [number] | no | |
8045
+ | shipment_id | string | no | |
8046
+ | remarks | string | no | |
8047
+
8048
+ ---
8049
+
8050
+
8051
+
8052
+
8053
+ #### [OrderDetails](#OrderDetails)
8054
+
8055
+ | Properties | Type | Nullable | Description |
8056
+ | ---------- | ---- | -------- | ----------- |
8057
+ | fynd_order_id | string | no | |
8058
+ | created_at | string | no | |
7984
8059
 
7985
8060
  ---
7986
8061
 
@@ -7991,9 +8066,9 @@ Sms Sent successfully
7991
8066
 
7992
8067
  | Properties | Type | Nullable | Description |
7993
8068
  | ---------- | ---- | -------- | ----------- |
7994
- | errors | [string] | no | |
7995
- | order_details | [OrderDetails](#OrderDetails) | yes | |
7996
8069
  | shipment_details | [[ShipmentDetail](#ShipmentDetail)] | no | |
8070
+ | order_details | [OrderDetails](#OrderDetails) | yes | |
8071
+ | errors | [string] | no | |
7997
8072
 
7998
8073
  ---
7999
8074
 
@@ -8004,8 +8079,8 @@ Sms Sent successfully
8004
8079
 
8005
8080
  | Properties | Type | Nullable | Description |
8006
8081
  | ---------- | ---- | -------- | ----------- |
8007
- | result | [[OrderStatusData](#OrderStatusData)] | no | |
8008
8082
  | success | string | yes | |
8083
+ | result | [[OrderStatusData](#OrderStatusData)] | no | |
8009
8084
 
8010
8085
  ---
8011
8086
 
@@ -8030,51 +8105,37 @@ Sms Sent successfully
8030
8105
 
8031
8106
  | Properties | Type | Nullable | Description |
8032
8107
  | ---------- | ---- | -------- | ----------- |
8033
- | errors | [string] | no | |
8034
8108
  | success | string | yes | |
8109
+ | errors | [string] | no | |
8035
8110
 
8036
8111
  ---
8037
8112
 
8038
8113
 
8039
8114
 
8040
8115
 
8041
- #### [TaxInfo](#TaxInfo)
8116
+ #### [PaymentMethod](#PaymentMethod)
8042
8117
 
8043
8118
  | Properties | Type | Nullable | Description |
8044
8119
  | ---------- | ---- | -------- | ----------- |
8045
- | gstin | string | no | |
8046
- | b2b_gstin_number | string | no | |
8120
+ | meta | string | no | |
8121
+ | name | string | yes | |
8122
+ | refund_by | string | yes | |
8123
+ | mode | string | yes | |
8124
+ | transaction_data | string | no | |
8125
+ | collect_by | string | yes | |
8126
+ | amount | number | yes | |
8047
8127
 
8048
8128
  ---
8049
8129
 
8050
8130
 
8051
8131
 
8052
8132
 
8053
- #### [BillingInfo](#BillingInfo)
8133
+ #### [PaymentInfo](#PaymentInfo)
8054
8134
 
8055
8135
  | Properties | Type | Nullable | Description |
8056
8136
  | ---------- | ---- | -------- | ----------- |
8057
- | state_code | string | no | |
8058
- | pincode | string | yes | |
8059
- | customer_code | string | no | |
8060
- | alternate_mobile_number | string | no | |
8061
- | middle_name | string | no | |
8062
- | title | string | no | |
8063
- | house_no | string | no | |
8064
- | first_name | string | yes | |
8065
- | gender | string | no | |
8066
- | last_name | string | no | |
8067
- | city | string | yes | |
8068
- | alternate_email | string | no | |
8069
- | primary_email | string | yes | |
8070
- | address2 | string | no | |
8071
- | primary_mobile_number | string | yes | |
8072
- | external_customer_code | string | no | |
8073
- | state | string | yes | |
8074
- | address1 | string | yes | |
8075
- | floor_no | string | no | |
8076
- | country_code | string | no | |
8077
- | country | string | yes | |
8137
+ | payment_methods | [[PaymentMethod](#PaymentMethod)] | no | |
8138
+ | primary_mode | string | yes | |
8078
8139
 
8079
8140
  ---
8080
8141
 
@@ -8086,137 +8147,151 @@ Sms Sent successfully
8086
8147
  | Properties | Type | Nullable | Description |
8087
8148
  | ---------- | ---- | -------- | ----------- |
8088
8149
  | 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 | |
8150
+ | alternate_email | string | no | |
8100
8151
  | last_name | string | no | |
8152
+ | alternate_mobile_number | string | no | |
8153
+ | primary_mobile_number | string | yes | |
8154
+ | customer_code | string | no | |
8155
+ | floor_no | string | no | |
8156
+ | address1 | string | yes | |
8101
8157
  | slot | [string] | no | |
8158
+ | geo_location | string | no | |
8159
+ | landmark | string | no | |
8102
8160
  | city | string | yes | |
8103
- | alternate_email | string | no | |
8161
+ | state | string | yes | |
8104
8162
  | primary_email | string | yes | |
8163
+ | address_type | string | no | |
8164
+ | gender | string | no | |
8105
8165
  | address2 | string | no | |
8106
- | primary_mobile_number | string | yes | |
8166
+ | country | string | yes | |
8167
+ | first_name | string | yes | |
8168
+ | house_no | string | no | |
8107
8169
  | external_customer_code | string | no | |
8108
- | state | string | yes | |
8109
- | address1 | string | yes | |
8110
- | floor_no | string | no | |
8111
- | landmark | string | no | |
8170
+ | middle_name | string | no | |
8171
+ | pincode | string | yes | |
8112
8172
  | country_code | string | no | |
8113
- | country | string | yes | |
8173
+ | title | string | no | |
8174
+ | shipping_type | string | no | |
8114
8175
 
8115
8176
  ---
8116
8177
 
8117
8178
 
8118
8179
 
8119
8180
 
8120
- #### [PaymentMethod](#PaymentMethod)
8181
+ #### [Tax](#Tax)
8121
8182
 
8122
8183
  | Properties | Type | Nullable | Description |
8123
8184
  | ---------- | ---- | -------- | ----------- |
8124
- | refund_by | string | yes | |
8125
- | mode | string | yes | |
8126
- | meta | string | no | |
8127
- | amount | number | yes | |
8185
+ | breakup | [string] | no | |
8186
+ | rate | number | yes | |
8187
+ | amount | string | yes | |
8128
8188
  | name | string | yes | |
8129
- | transaction_data | string | no | |
8130
- | collect_by | string | yes | |
8131
8189
 
8132
8190
  ---
8133
8191
 
8134
8192
 
8135
8193
 
8136
8194
 
8137
- #### [PaymentInfo](#PaymentInfo)
8195
+ #### [Charge](#Charge)
8138
8196
 
8139
8197
  | Properties | Type | Nullable | Description |
8140
8198
  | ---------- | ---- | -------- | ----------- |
8141
- | payment_methods | [[PaymentMethod](#PaymentMethod)] | no | |
8142
- | primary_mode | string | yes | |
8199
+ | type | string | yes | |
8200
+ | code | string | no | |
8201
+ | tax | [Tax](#Tax) | no | |
8202
+ | name | string | yes | |
8203
+ | amount | string | yes | |
8143
8204
 
8144
8205
  ---
8145
8206
 
8146
8207
 
8147
8208
 
8148
8209
 
8149
- #### [Tax](#Tax)
8210
+ #### [LineItem](#LineItem)
8150
8211
 
8151
8212
  | Properties | Type | Nullable | Description |
8152
8213
  | ---------- | ---- | -------- | ----------- |
8153
- | name | string | yes | |
8154
- | breakup | [string] | no | |
8155
- | amount | string | yes | |
8156
- | rate | number | yes | |
8214
+ | meta | string | no | |
8215
+ | quantity | number | no | |
8216
+ | external_line_id | string | no | |
8217
+ | charges | [[Charge](#Charge)] | no | |
8218
+ | seller_identifier | string | yes | |
8219
+ | custom_messasge | string | no | |
8157
8220
 
8158
8221
  ---
8159
8222
 
8160
8223
 
8161
8224
 
8162
8225
 
8163
- #### [Charge](#Charge)
8226
+ #### [ProcessingDates](#ProcessingDates)
8164
8227
 
8165
8228
  | Properties | Type | Nullable | Description |
8166
8229
  | ---------- | ---- | -------- | ----------- |
8167
- | type | string | yes | |
8168
- | tax | [Tax](#Tax) | no | |
8169
- | amount | string | yes | |
8170
- | name | string | yes | |
8171
- | code | string | no | |
8230
+ | dp_pickup_slot | string | no | |
8231
+ | pack_by_date | string | no | |
8232
+ | dispatch_after_date | string | no | |
8233
+ | dispatch_by_date | string | no | |
8234
+ | confirm_by_date | string | no | |
8235
+ | customer_pickup_slot | string | no | |
8172
8236
 
8173
8237
  ---
8174
8238
 
8175
8239
 
8176
8240
 
8177
8241
 
8178
- #### [ProcessingDates](#ProcessingDates)
8242
+ #### [Shipment](#Shipment)
8179
8243
 
8180
8244
  | Properties | Type | Nullable | Description |
8181
8245
  | ---------- | ---- | -------- | ----------- |
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 | |
8246
+ | meta | string | no | |
8247
+ | external_shipment_id | string | no | |
8248
+ | priority | number | no | |
8249
+ | location_id | number | yes | |
8250
+ | line_items | [[LineItem](#LineItem)] | yes | |
8251
+ | processing_dates | [ProcessingDates](#ProcessingDates) | no | |
8188
8252
 
8189
8253
  ---
8190
8254
 
8191
8255
 
8192
8256
 
8193
8257
 
8194
- #### [LineItem](#LineItem)
8258
+ #### [BillingInfo](#BillingInfo)
8195
8259
 
8196
8260
  | Properties | Type | Nullable | Description |
8197
8261
  | ---------- | ---- | -------- | ----------- |
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 | |
8262
+ | state_code | string | no | |
8263
+ | alternate_email | string | no | |
8264
+ | last_name | string | no | |
8265
+ | alternate_mobile_number | string | no | |
8266
+ | primary_mobile_number | string | yes | |
8267
+ | customer_code | string | no | |
8268
+ | floor_no | string | no | |
8269
+ | address1 | string | yes | |
8270
+ | city | string | yes | |
8271
+ | state | string | yes | |
8272
+ | primary_email | string | yes | |
8273
+ | gender | string | no | |
8274
+ | address2 | string | no | |
8275
+ | country | string | yes | |
8276
+ | first_name | string | yes | |
8277
+ | house_no | string | no | |
8278
+ | external_customer_code | string | no | |
8279
+ | middle_name | string | no | |
8280
+ | pincode | string | yes | |
8281
+ | country_code | string | no | |
8282
+ | title | string | no | |
8204
8283
 
8205
8284
  ---
8206
8285
 
8207
8286
 
8208
8287
 
8209
8288
 
8210
- #### [Shipment](#Shipment)
8289
+ #### [TaxInfo](#TaxInfo)
8211
8290
 
8212
8291
  | Properties | Type | Nullable | Description |
8213
8292
  | ---------- | ---- | -------- | ----------- |
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 | |
8293
+ | b2b_gstin_number | string | no | |
8294
+ | gstin | string | no | |
8220
8295
 
8221
8296
  ---
8222
8297
 
@@ -8227,16 +8302,16 @@ Sms Sent successfully
8227
8302
 
8228
8303
  | Properties | Type | Nullable | Description |
8229
8304
  | ---------- | ---- | -------- | ----------- |
8230
- | tax_info | [TaxInfo](#TaxInfo) | no | |
8231
- | billing_info | [BillingInfo](#BillingInfo) | yes | |
8232
- | shipping_info | [ShippingInfo](#ShippingInfo) | yes | |
8233
- | meta | string | no | |
8234
8305
  | external_creation_date | string | no | |
8306
+ | meta | string | no | |
8307
+ | external_order_id | string | no | |
8235
8308
  | payment_info | [PaymentInfo](#PaymentInfo) | yes | |
8236
- | charges | [[Charge](#Charge)] | no | |
8237
- | currency_info | string | no | |
8309
+ | shipping_info | [ShippingInfo](#ShippingInfo) | yes | |
8238
8310
  | shipments | [[Shipment](#Shipment)] | yes | |
8239
- | external_order_id | string | no | |
8311
+ | currency_info | string | no | |
8312
+ | billing_info | [BillingInfo](#BillingInfo) | yes | |
8313
+ | charges | [[Charge](#Charge)] | no | |
8314
+ | tax_info | [TaxInfo](#TaxInfo) | no | |
8240
8315
 
8241
8316
  ---
8242
8317
 
@@ -8247,51 +8322,51 @@ Sms Sent successfully
8247
8322
 
8248
8323
  | Properties | Type | Nullable | Description |
8249
8324
  | ---------- | ---- | -------- | ----------- |
8250
- | request_id | string | no | |
8251
- | exception | string | no | |
8252
8325
  | meta | string | no | |
8253
- | message | string | yes | |
8254
- | status | number | yes | |
8255
8326
  | code | string | no | |
8256
- | info | any | no | |
8327
+ | request_id | string | no | |
8257
8328
  | stack_trace | string | no | |
8329
+ | status | number | yes | |
8330
+ | info | any | no | |
8331
+ | message | string | yes | |
8332
+ | exception | string | no | |
8258
8333
 
8259
8334
  ---
8260
8335
 
8261
8336
 
8262
8337
 
8263
8338
 
8264
- #### [PaymentMethods](#PaymentMethods)
8339
+ #### [DpConfiguration](#DpConfiguration)
8265
8340
 
8266
8341
  | Properties | Type | Nullable | Description |
8267
8342
  | ---------- | ---- | -------- | ----------- |
8268
- | collect_by | string | no | |
8269
- | mode | string | no | |
8270
- | refund_by | string | no | |
8343
+ | shipping_by | string | no | |
8271
8344
 
8272
8345
  ---
8273
8346
 
8274
8347
 
8275
8348
 
8276
8349
 
8277
- #### [CreateChannelPaymentInfo](#CreateChannelPaymentInfo)
8350
+ #### [PaymentMethods](#PaymentMethods)
8278
8351
 
8279
8352
  | Properties | Type | Nullable | Description |
8280
8353
  | ---------- | ---- | -------- | ----------- |
8281
- | mode_of_payment | string | no | |
8282
- | source | string | no | |
8283
- | payment_methods | [[PaymentMethods](#PaymentMethods)] | no | |
8354
+ | refund_by | string | no | |
8355
+ | collect_by | string | no | |
8356
+ | mode | string | no | |
8284
8357
 
8285
8358
  ---
8286
8359
 
8287
8360
 
8288
8361
 
8289
8362
 
8290
- #### [DpConfiguration](#DpConfiguration)
8363
+ #### [CreateChannelPaymentInfo](#CreateChannelPaymentInfo)
8291
8364
 
8292
8365
  | Properties | Type | Nullable | Description |
8293
8366
  | ---------- | ---- | -------- | ----------- |
8294
- | shipping_by | string | no | |
8367
+ | mode_of_payment | string | no | |
8368
+ | payment_methods | [[PaymentMethods](#PaymentMethods)] | no | |
8369
+ | source | string | no | |
8295
8370
 
8296
8371
  ---
8297
8372
 
@@ -8302,12 +8377,12 @@ Sms Sent successfully
8302
8377
 
8303
8378
  | Properties | Type | Nullable | Description |
8304
8379
  | ---------- | ---- | -------- | ----------- |
8380
+ | dp_configuration | [DpConfiguration](#DpConfiguration) | no | |
8305
8381
  | lock_states | [string] | no | |
8306
- | logo_url | string | no | |
8307
- | location_reassignment | boolean | no | |
8308
8382
  | shipment_assignment | string | no | |
8309
8383
  | payment_info | [CreateChannelPaymentInfo](#CreateChannelPaymentInfo) | no | |
8310
- | dp_configuration | [DpConfiguration](#DpConfiguration) | no | |
8384
+ | location_reassignment | boolean | no | |
8385
+ | logo_url | string | no | |
8311
8386
 
8312
8387
  ---
8313
8388
 
@@ -8340,9 +8415,9 @@ Sms Sent successfully
8340
8415
 
8341
8416
  | Properties | Type | Nullable | Description |
8342
8417
  | ---------- | ---- | -------- | ----------- |
8343
- | is_upserted | boolean | no | |
8344
- | is_inserted | boolean | no | |
8345
8418
  | acknowledged | boolean | no | |
8419
+ | is_inserted | boolean | no | |
8420
+ | is_upserted | boolean | no | |
8346
8421
 
8347
8422
  ---
8348
8423
 
@@ -8376,8 +8451,8 @@ Sms Sent successfully
8376
8451
 
8377
8452
  | Properties | Type | Nullable | Description |
8378
8453
  | ---------- | ---- | -------- | ----------- |
8379
- | message | [string] | no | |
8380
8454
  | success | boolean | no | |
8455
+ | message | [string] | no | |
8381
8456
 
8382
8457
  ---
8383
8458
 
@@ -8399,9 +8474,9 @@ Sms Sent successfully
8399
8474
 
8400
8475
  | Properties | Type | Nullable | Description |
8401
8476
  | ---------- | ---- | -------- | ----------- |
8402
- | end_date | string | yes | |
8403
8477
  | mobile | number | yes | |
8404
8478
  | order_details | [[FyndOrderIdList](#FyndOrderIdList)] | no | |
8479
+ | end_date | string | yes | |
8405
8480
  | start_date | string | yes | |
8406
8481
 
8407
8482
  ---