@gofynd/fdk-client-javascript 0.1.37 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (353) hide show
  1. package/README.md +24 -0
  2. package/application.d.ts +2 -1
  3. package/application.js +2 -1
  4. package/documentation/application/CART.md +315 -289
  5. package/documentation/application/CATALOG.md +438 -415
  6. package/documentation/application/FILESTORAGE.md +2 -0
  7. package/documentation/application/LEAD.md +18 -18
  8. package/documentation/application/LOGISTIC.md +45 -45
  9. package/documentation/application/ORDER.md +277 -277
  10. package/documentation/application/PAYMENT.md +251 -251
  11. package/documentation/application/POSCART.md +318 -292
  12. package/documentation/application/REWARDS.md +1 -0
  13. package/documentation/application/USER.md +19 -14
  14. package/documentation/platform/CART.md +465 -462
  15. package/documentation/platform/CATALOG.md +2792 -2711
  16. package/documentation/platform/COMPANYPROFILE.md +200 -362
  17. package/documentation/platform/DISCOUNT.md +86 -0
  18. package/documentation/platform/FILESTORAGE.md +2 -0
  19. package/documentation/platform/LEAD.md +60 -60
  20. package/documentation/platform/ORDER.md +1451 -1654
  21. package/documentation/platform/PAYMENT.md +94 -94
  22. package/documentation/platform/REWARDS.md +145 -0
  23. package/documentation/platform/USER.md +24 -14
  24. package/index.d.ts +4 -1
  25. package/index.js +13 -4
  26. package/package.json +9 -9
  27. package/platform.d.ts +2 -1
  28. package/platform.js +3 -2
  29. package/public.d.ts +1 -0
  30. package/public.js +3 -2
  31. package/sdk/application/ApplicationAPIClient.js +3 -1
  32. package/sdk/application/ApplicationClient.d.ts +16 -16
  33. package/sdk/application/ApplicationClient.js +32 -16
  34. package/sdk/application/ApplicationConfig.js +3 -2
  35. package/sdk/application/ApplicationModels.d.ts +0 -832
  36. package/sdk/application/ApplicationModels.js +3 -10574
  37. package/sdk/application/{client → Cart}/CartApplicationClient.d.ts +9 -3
  38. package/sdk/application/{client → Cart}/CartApplicationClient.js +316 -8
  39. package/sdk/application/Cart/CartApplicationModel.d.ts +81 -0
  40. package/sdk/application/Cart/CartApplicationModel.js +1136 -0
  41. package/sdk/application/{models/CartValidator.js → Cart/CartApplicationValidator.js} +17 -12
  42. package/sdk/application/{client → Catalog}/CatalogApplicationClient.d.ts +8 -5
  43. package/sdk/application/{client → Catalog}/CatalogApplicationClient.js +389 -8
  44. package/sdk/application/Catalog/CatalogApplicationModel.d.ts +117 -0
  45. package/sdk/application/Catalog/CatalogApplicationModel.js +1606 -0
  46. package/sdk/application/{models/CatalogValidator.js → Catalog/CatalogApplicationValidator.js} +4 -1
  47. package/sdk/application/{client → Common}/CommonApplicationClient.js +24 -2
  48. package/sdk/application/Common/CommonApplicationModel.d.ts +20 -0
  49. package/sdk/application/Common/CommonApplicationModel.js +228 -0
  50. package/sdk/{platform/models/CommonValidator.js → application/Common/CommonApplicationValidator.js} +3 -1
  51. package/sdk/application/{client → Communication}/CommunicationApplicationClient.js +43 -2
  52. package/sdk/application/Communication/CommunicationApplicationModel.d.ts +15 -0
  53. package/sdk/application/Communication/CommunicationApplicationModel.js +144 -0
  54. package/sdk/application/{models/CommunicationValidator.js → Communication/CommunicationApplicationValidator.js} +5 -3
  55. package/sdk/application/{client → Configuration}/ConfigurationApplicationClient.js +202 -2
  56. package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +111 -0
  57. package/sdk/application/Configuration/ConfigurationApplicationModel.js +1182 -0
  58. package/sdk/application/{models/ConfigurationValidator.js → Configuration/ConfigurationApplicationValidator.js} +4 -2
  59. package/sdk/application/{client → Content}/ContentApplicationClient.js +217 -2
  60. package/sdk/application/Content/ContentApplicationModel.d.ts +105 -0
  61. package/sdk/application/Content/ContentApplicationModel.js +1349 -0
  62. package/sdk/application/{models/ContentValidator.js → Content/ContentApplicationValidator.js} +3 -1
  63. package/sdk/application/{client → FileStorage}/FileStorageApplicationClient.js +35 -2
  64. package/sdk/application/FileStorage/FileStorageApplicationModel.d.ts +21 -0
  65. package/sdk/application/FileStorage/FileStorageApplicationModel.js +244 -0
  66. package/sdk/application/{models/FileStorageValidator.js → FileStorage/FileStorageApplicationValidator.js} +6 -4
  67. package/sdk/application/{client → Lead}/LeadApplicationClient.js +83 -2
  68. package/sdk/application/Lead/LeadApplicationModel.d.ts +55 -0
  69. package/sdk/application/Lead/LeadApplicationModel.js +690 -0
  70. package/sdk/application/{models/LeadValidator.js → Lead/LeadApplicationValidator.js} +6 -4
  71. package/sdk/application/{client → Logistic}/LogisticApplicationClient.js +46 -2
  72. package/sdk/application/Logistic/LogisticApplicationModel.d.ts +26 -0
  73. package/sdk/application/Logistic/LogisticApplicationModel.js +286 -0
  74. package/sdk/application/{models/LogisticValidator.js → Logistic/LogisticApplicationValidator.js} +5 -3
  75. package/sdk/application/{client → Order}/OrderApplicationClient.js +148 -2
  76. package/sdk/application/Order/OrderApplicationModel.d.ts +67 -0
  77. package/sdk/application/Order/OrderApplicationModel.js +872 -0
  78. package/sdk/application/{models/OrderValidator.js → Order/OrderApplicationValidator.js} +5 -3
  79. package/sdk/application/{client → Payment}/PaymentApplicationClient.js +530 -2
  80. package/sdk/application/Payment/PaymentApplicationModel.d.ts +96 -0
  81. package/sdk/application/Payment/PaymentApplicationModel.js +1318 -0
  82. package/sdk/application/{models/PaymentValidator.js → Payment/PaymentApplicationValidator.js} +25 -23
  83. package/sdk/application/{client → PosCart}/PosCartApplicationClient.d.ts +9 -3
  84. package/sdk/application/{client → PosCart}/PosCartApplicationClient.js +343 -8
  85. package/sdk/application/PosCart/PosCartApplicationModel.d.ts +79 -0
  86. package/sdk/application/PosCart/PosCartApplicationModel.js +1132 -0
  87. package/sdk/application/{models/PosCartValidator.js → PosCart/PosCartApplicationValidator.js} +18 -13
  88. package/sdk/application/{client → Rewards}/RewardsApplicationClient.js +83 -2
  89. package/sdk/application/Rewards/RewardsApplicationModel.d.ts +23 -0
  90. package/sdk/application/Rewards/RewardsApplicationModel.js +276 -0
  91. package/sdk/application/{models/RewardsValidator.js → Rewards/RewardsApplicationValidator.js} +6 -4
  92. package/sdk/application/{client → Share}/ShareApplicationClient.js +89 -2
  93. package/sdk/application/Share/ShareApplicationModel.d.ts +16 -0
  94. package/sdk/application/Share/ShareApplicationModel.js +178 -0
  95. package/sdk/application/{models/ShareValidator.js → Share/ShareApplicationValidator.js} +4 -2
  96. package/sdk/application/{client → Theme}/ThemeApplicationClient.js +46 -2
  97. package/sdk/application/Theme/ThemeApplicationModel.d.ts +49 -0
  98. package/sdk/application/Theme/ThemeApplicationModel.js +486 -0
  99. package/sdk/application/{models/ThemeValidator.js → Theme/ThemeApplicationValidator.js} +3 -1
  100. package/sdk/application/{client → User}/UserApplicationClient.js +407 -2
  101. package/sdk/application/User/UserApplicationModel.d.ts +95 -0
  102. package/sdk/application/User/UserApplicationModel.js +998 -0
  103. package/sdk/application/{models/UserValidator.js → User/UserApplicationValidator.js} +31 -29
  104. package/sdk/application/index.d.ts +18 -0
  105. package/sdk/application/index.js +33 -0
  106. package/sdk/common/AxiosHelper.js +23 -10
  107. package/sdk/common/Logger.d.ts +2 -0
  108. package/sdk/common/Logger.js +6 -0
  109. package/sdk/common/curlHelper.d.ts +2 -0
  110. package/sdk/common/curlHelper.js +95 -0
  111. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +101 -0
  112. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +399 -0
  113. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +11 -0
  114. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +56 -0
  115. package/sdk/platform/{client → Analytics}/AnalyticsPlatformClient.js +60 -2
  116. package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +23 -0
  117. package/sdk/platform/Analytics/AnalyticsPlatformModel.js +252 -0
  118. package/sdk/platform/{models/AnalyticsValidator.js → Analytics/AnalyticsPlatformValidator.js} +5 -4
  119. package/sdk/platform/{client → AuditTrail}/AuditTrailPlatformClient.js +48 -2
  120. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +18 -0
  121. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +144 -0
  122. package/sdk/platform/{models/AuditTrailValidator.js → AuditTrail/AuditTrailPlatformValidator.js} +3 -2
  123. package/sdk/platform/{client → Billing}/BillingPlatformClient.js +162 -2
  124. package/sdk/platform/Billing/BillingPlatformModel.d.ts +65 -0
  125. package/sdk/platform/Billing/BillingPlatformModel.js +906 -0
  126. package/sdk/platform/{models/BillingValidator.js → Billing/BillingPlatformValidator.js} +6 -5
  127. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +293 -0
  128. package/sdk/platform/Cart/CartPlatformApplicationClient.js +1001 -0
  129. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +20 -0
  130. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +138 -0
  131. package/sdk/platform/Cart/CartPlatformModel.d.ts +104 -0
  132. package/sdk/platform/Cart/CartPlatformModel.js +1516 -0
  133. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +856 -0
  134. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +2927 -0
  135. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +56 -0
  136. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +389 -0
  137. package/sdk/platform/{client → Catalog}/CatalogPlatformClient.js +1402 -349
  138. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +317 -0
  139. package/sdk/platform/Catalog/CatalogPlatformModel.js +4702 -0
  140. package/sdk/platform/{models/CatalogValidator.js → Catalog/CatalogPlatformValidator.js} +92 -91
  141. package/sdk/platform/{client → Common}/CommonPlatformClient.js +28 -2
  142. package/sdk/platform/Common/CommonPlatformModel.d.ts +20 -0
  143. package/sdk/platform/Common/CommonPlatformModel.js +228 -0
  144. package/sdk/{application/models/CommonValidator.js → platform/Common/CommonPlatformValidator.js} +2 -1
  145. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +611 -0
  146. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +2243 -0
  147. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +43 -0
  148. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +277 -0
  149. package/sdk/platform/{client → Communication}/CommunicationPlatformClient.js +17 -2
  150. package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +102 -0
  151. package/sdk/platform/Communication/CommunicationPlatformModel.js +1312 -0
  152. package/sdk/platform/{models/CommunicationValidator.js → Communication/CommunicationPlatformValidator.js} +2 -1
  153. package/sdk/platform/{client → CompanyProfile}/CompanyProfilePlatformClient.d.ts +0 -9
  154. package/sdk/platform/{client → CompanyProfile}/CompanyProfilePlatformClient.js +176 -28
  155. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +44 -0
  156. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +706 -0
  157. package/sdk/platform/{models/CompanyProfileValidator.d.ts → CompanyProfile/CompanyProfilePlatformValidator.d.ts} +0 -1
  158. package/sdk/platform/{models/CompanyProfileValidator.js → CompanyProfile/CompanyProfilePlatformValidator.js} +9 -14
  159. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +309 -0
  160. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +1322 -0
  161. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +31 -0
  162. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +164 -0
  163. package/sdk/platform/{client → Configuration}/ConfigurationPlatformClient.js +284 -2
  164. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +185 -0
  165. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +2072 -0
  166. package/sdk/platform/{models/ConfigurationValidator.js → Configuration/ConfigurationPlatformValidator.js} +9 -8
  167. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +781 -0
  168. package/sdk/platform/Content/ContentPlatformApplicationClient.js +3074 -0
  169. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +71 -0
  170. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +422 -0
  171. package/sdk/platform/Content/ContentPlatformModel.d.ts +105 -0
  172. package/sdk/platform/Content/ContentPlatformModel.js +1349 -0
  173. package/sdk/platform/{client → Discount}/DiscountPlatformClient.d.ts +11 -0
  174. package/sdk/platform/{client → Discount}/DiscountPlatformClient.js +187 -2
  175. package/sdk/platform/Discount/DiscountPlatformModel.d.ts +15 -0
  176. package/sdk/platform/Discount/DiscountPlatformModel.js +176 -0
  177. package/sdk/platform/{models/DiscountValidator.d.ts → Discount/DiscountPlatformValidator.d.ts} +1 -0
  178. package/sdk/platform/{models/DiscountValidator.js → Discount/DiscountPlatformValidator.js} +13 -5
  179. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +114 -0
  180. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +301 -0
  181. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +7 -0
  182. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +38 -0
  183. package/sdk/platform/{client → FileStorage}/FileStoragePlatformClient.js +78 -2
  184. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +21 -0
  185. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +244 -0
  186. package/sdk/platform/{models/FileStorageValidator.js → FileStorage/FileStoragePlatformValidator.js} +6 -5
  187. package/sdk/platform/{client → Inventory}/InventoryPlatformClient.js +163 -2
  188. package/sdk/platform/Inventory/InventoryPlatformModel.d.ts +62 -0
  189. package/sdk/platform/Inventory/InventoryPlatformModel.js +1178 -0
  190. package/sdk/platform/{models/InventoryValidator.js → Inventory/InventoryPlatformValidator.js} +5 -4
  191. package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +138 -0
  192. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +559 -0
  193. package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +16 -0
  194. package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +90 -0
  195. package/sdk/platform/{client → Lead}/LeadPlatformClient.js +142 -2
  196. package/sdk/platform/Lead/LeadPlatformModel.d.ts +55 -0
  197. package/sdk/platform/Lead/LeadPlatformModel.js +690 -0
  198. package/sdk/platform/{models/LeadValidator.js → Lead/LeadPlatformValidator.js} +7 -6
  199. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +59 -0
  200. package/sdk/platform/Order/OrderPlatformApplicationClient.js +207 -0
  201. package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +6 -0
  202. package/sdk/platform/Order/OrderPlatformApplicationValidator.js +37 -0
  203. package/sdk/platform/{client → Order}/OrderPlatformClient.d.ts +24 -55
  204. package/sdk/platform/{client → Order}/OrderPlatformClient.js +693 -146
  205. package/sdk/platform/Order/OrderPlatformModel.d.ts +222 -0
  206. package/sdk/platform/Order/OrderPlatformModel.js +3466 -0
  207. package/sdk/platform/{models/OrderValidator.d.ts → Order/OrderPlatformValidator.d.ts} +2 -3
  208. package/sdk/platform/{models/OrderValidator.js → Order/OrderPlatformValidator.js} +32 -48
  209. package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +30 -0
  210. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +100 -0
  211. package/sdk/platform/Partner/PartnerPlatformApplicationValidator.d.ts +5 -0
  212. package/sdk/platform/Partner/PartnerPlatformApplicationValidator.js +20 -0
  213. package/sdk/platform/Partner/PartnerPlatformModel.d.ts +7 -0
  214. package/sdk/platform/Partner/PartnerPlatformModel.js +54 -0
  215. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +108 -0
  216. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +498 -0
  217. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +14 -0
  218. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +73 -0
  219. package/sdk/platform/{client → Payment}/PaymentPlatformClient.js +141 -2
  220. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +44 -0
  221. package/sdk/platform/Payment/PaymentPlatformModel.js +552 -0
  222. package/sdk/platform/{models/PaymentValidator.js → Payment/PaymentPlatformValidator.js} +6 -5
  223. package/sdk/platform/PlatformAPIClient.js +2 -1
  224. package/sdk/platform/PlatformApplicationClient.d.ts +2824 -18486
  225. package/sdk/platform/PlatformApplicationClient.js +3772 -13928
  226. package/sdk/platform/PlatformClient.d.ts +2824 -2881
  227. package/sdk/platform/PlatformClient.js +3710 -3145
  228. package/sdk/platform/PlatformConfig.js +2 -1
  229. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +150 -0
  230. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +597 -0
  231. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +16 -0
  232. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +91 -0
  233. package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +24 -0
  234. package/sdk/platform/Rewards/RewardsPlatformModel.js +294 -0
  235. package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +72 -0
  236. package/sdk/platform/Share/SharePlatformApplicationClient.js +235 -0
  237. package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +7 -0
  238. package/sdk/platform/Share/SharePlatformApplicationValidator.js +35 -0
  239. package/sdk/platform/Share/SharePlatformModel.d.ts +15 -0
  240. package/sdk/platform/Share/SharePlatformModel.js +170 -0
  241. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +238 -0
  242. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +997 -0
  243. package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +27 -0
  244. package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +155 -0
  245. package/sdk/platform/Theme/ThemePlatformModel.d.ts +49 -0
  246. package/sdk/platform/Theme/ThemePlatformModel.js +486 -0
  247. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +121 -0
  248. package/sdk/platform/User/UserPlatformApplicationClient.js +506 -0
  249. package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +15 -0
  250. package/sdk/platform/User/UserPlatformApplicationValidator.js +79 -0
  251. package/sdk/platform/User/UserPlatformModel.d.ts +95 -0
  252. package/sdk/platform/User/UserPlatformModel.js +998 -0
  253. package/sdk/platform/{client → Webhook}/WebhookPlatformClient.js +92 -2
  254. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +17 -0
  255. package/sdk/platform/Webhook/WebhookPlatformModel.js +208 -0
  256. package/sdk/platform/{models/WebhookValidator.js → Webhook/WebhookPlatformValidator.js} +4 -3
  257. package/sdk/platform/index.d.ts +24 -0
  258. package/sdk/platform/index.js +45 -0
  259. package/sdk/public/{client → Configuration}/ConfigurationPublicClient.js +26 -1
  260. package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +20 -0
  261. package/sdk/public/Configuration/ConfigurationPublicModel.js +230 -0
  262. package/sdk/public/{models/ConfigurationValidator.js → Configuration/ConfigurationPublicValidator.js} +3 -1
  263. package/sdk/public/{client → Inventory}/InventoryPublicClient.js +76 -1
  264. package/sdk/public/Inventory/InventoryPublicModel.d.ts +22 -0
  265. package/sdk/public/Inventory/InventoryPublicModel.js +334 -0
  266. package/sdk/public/{models/InventoryValidator.js → Inventory/InventoryPublicValidator.js} +4 -2
  267. package/sdk/public/PublicClient.d.ts +3 -3
  268. package/sdk/public/PublicClient.js +8 -3
  269. package/sdk/public/{client → Webhook}/WebhookPublicClient.js +30 -1
  270. package/sdk/public/Webhook/WebhookPublicModel.d.ts +17 -0
  271. package/sdk/public/Webhook/WebhookPublicModel.js +208 -0
  272. package/sdk/public/{models/WebhookValidator.js → Webhook/WebhookPublicValidator.js} +4 -2
  273. package/sdk/public/index.d.ts +5 -0
  274. package/sdk/public/index.js +7 -0
  275. package/sdk/platform/PlatformApplicationModels.d.ts +0 -328
  276. package/sdk/platform/PlatformApplicationModels.js +0 -22658
  277. package/sdk/platform/PlatformModels.d.ts +0 -1477
  278. package/sdk/platform/PlatformModels.js +0 -20646
  279. package/sdk/platform/models/CartValidator.d.ts +0 -0
  280. package/sdk/platform/models/CartValidator.js +0 -0
  281. package/sdk/platform/models/ContentValidator.d.ts +0 -0
  282. package/sdk/platform/models/ContentValidator.js +0 -0
  283. package/sdk/platform/models/PartnerValidator.d.ts +0 -0
  284. package/sdk/platform/models/PartnerValidator.js +0 -0
  285. package/sdk/platform/models/RewardsValidator.d.ts +0 -0
  286. package/sdk/platform/models/RewardsValidator.js +0 -0
  287. package/sdk/platform/models/ShareValidator.d.ts +0 -0
  288. package/sdk/platform/models/ShareValidator.js +0 -0
  289. package/sdk/platform/models/ThemeValidator.d.ts +0 -0
  290. package/sdk/platform/models/ThemeValidator.js +0 -0
  291. package/sdk/platform/models/UserValidator.d.ts +0 -0
  292. package/sdk/platform/models/UserValidator.js +0 -0
  293. package/sdk/public/PublicModels.d.ts +0 -50
  294. package/sdk/public/PublicModels.js +0 -712
  295. package/sdk/application/{models/CartValidator.d.ts → Cart/CartApplicationValidator.d.ts} +0 -0
  296. package/sdk/application/{models/CatalogValidator.d.ts → Catalog/CatalogApplicationValidator.d.ts} +0 -0
  297. package/sdk/application/{client → Common}/CommonApplicationClient.d.ts +0 -0
  298. package/sdk/application/{models/CommonValidator.d.ts → Common/CommonApplicationValidator.d.ts} +0 -0
  299. package/sdk/application/{client → Communication}/CommunicationApplicationClient.d.ts +0 -0
  300. package/sdk/application/{models/CommunicationValidator.d.ts → Communication/CommunicationApplicationValidator.d.ts} +0 -0
  301. package/sdk/application/{client → Configuration}/ConfigurationApplicationClient.d.ts +0 -0
  302. package/sdk/application/{models/ConfigurationValidator.d.ts → Configuration/ConfigurationApplicationValidator.d.ts} +0 -0
  303. package/sdk/application/{client → Content}/ContentApplicationClient.d.ts +0 -0
  304. package/sdk/application/{models/ContentValidator.d.ts → Content/ContentApplicationValidator.d.ts} +0 -0
  305. package/sdk/application/{client → FileStorage}/FileStorageApplicationClient.d.ts +0 -0
  306. package/sdk/application/{models/FileStorageValidator.d.ts → FileStorage/FileStorageApplicationValidator.d.ts} +0 -0
  307. package/sdk/application/{client → Lead}/LeadApplicationClient.d.ts +0 -0
  308. package/sdk/application/{models/LeadValidator.d.ts → Lead/LeadApplicationValidator.d.ts} +0 -0
  309. package/sdk/application/{client → Logistic}/LogisticApplicationClient.d.ts +0 -0
  310. package/sdk/application/{models/LogisticValidator.d.ts → Logistic/LogisticApplicationValidator.d.ts} +0 -0
  311. package/sdk/application/{client → Order}/OrderApplicationClient.d.ts +0 -0
  312. package/sdk/application/{models/OrderValidator.d.ts → Order/OrderApplicationValidator.d.ts} +0 -0
  313. package/sdk/application/{client → Payment}/PaymentApplicationClient.d.ts +0 -0
  314. package/sdk/application/{models/PaymentValidator.d.ts → Payment/PaymentApplicationValidator.d.ts} +0 -0
  315. package/sdk/application/{models/PosCartValidator.d.ts → PosCart/PosCartApplicationValidator.d.ts} +0 -0
  316. package/sdk/application/{client → Rewards}/RewardsApplicationClient.d.ts +0 -0
  317. package/sdk/application/{models/RewardsValidator.d.ts → Rewards/RewardsApplicationValidator.d.ts} +0 -0
  318. package/sdk/application/{client → Share}/ShareApplicationClient.d.ts +0 -0
  319. package/sdk/application/{models/ShareValidator.d.ts → Share/ShareApplicationValidator.d.ts} +0 -0
  320. package/sdk/application/{client → Theme}/ThemeApplicationClient.d.ts +0 -0
  321. package/sdk/application/{models/ThemeValidator.d.ts → Theme/ThemeApplicationValidator.d.ts} +0 -0
  322. package/sdk/application/{client → User}/UserApplicationClient.d.ts +0 -0
  323. package/sdk/application/{models/UserValidator.d.ts → User/UserApplicationValidator.d.ts} +0 -0
  324. package/sdk/platform/{client → Analytics}/AnalyticsPlatformClient.d.ts +0 -0
  325. package/sdk/platform/{models/AnalyticsValidator.d.ts → Analytics/AnalyticsPlatformValidator.d.ts} +0 -0
  326. package/sdk/platform/{client → AuditTrail}/AuditTrailPlatformClient.d.ts +0 -0
  327. package/sdk/platform/{models/AuditTrailValidator.d.ts → AuditTrail/AuditTrailPlatformValidator.d.ts} +0 -0
  328. package/sdk/platform/{client → Billing}/BillingPlatformClient.d.ts +0 -0
  329. package/sdk/platform/{models/BillingValidator.d.ts → Billing/BillingPlatformValidator.d.ts} +0 -0
  330. package/sdk/platform/{client → Catalog}/CatalogPlatformClient.d.ts +149 -149
  331. package/sdk/platform/{models/CatalogValidator.d.ts → Catalog/CatalogPlatformValidator.d.ts} +21 -21
  332. /package/sdk/platform/{client → Common}/CommonPlatformClient.d.ts +0 -0
  333. /package/sdk/platform/{models/CommonValidator.d.ts → Common/CommonPlatformValidator.d.ts} +0 -0
  334. /package/sdk/platform/{client → Communication}/CommunicationPlatformClient.d.ts +0 -0
  335. /package/sdk/platform/{models/CommunicationValidator.d.ts → Communication/CommunicationPlatformValidator.d.ts} +0 -0
  336. /package/sdk/platform/{client → Configuration}/ConfigurationPlatformClient.d.ts +0 -0
  337. /package/sdk/platform/{models/ConfigurationValidator.d.ts → Configuration/ConfigurationPlatformValidator.d.ts} +0 -0
  338. /package/sdk/platform/{client → FileStorage}/FileStoragePlatformClient.d.ts +0 -0
  339. /package/sdk/platform/{models/FileStorageValidator.d.ts → FileStorage/FileStoragePlatformValidator.d.ts} +0 -0
  340. /package/sdk/platform/{client → Inventory}/InventoryPlatformClient.d.ts +0 -0
  341. /package/sdk/platform/{models/InventoryValidator.d.ts → Inventory/InventoryPlatformValidator.d.ts} +0 -0
  342. /package/sdk/platform/{client → Lead}/LeadPlatformClient.d.ts +0 -0
  343. /package/sdk/platform/{models/LeadValidator.d.ts → Lead/LeadPlatformValidator.d.ts} +0 -0
  344. /package/sdk/platform/{client → Payment}/PaymentPlatformClient.d.ts +0 -0
  345. /package/sdk/platform/{models/PaymentValidator.d.ts → Payment/PaymentPlatformValidator.d.ts} +0 -0
  346. /package/sdk/platform/{client → Webhook}/WebhookPlatformClient.d.ts +0 -0
  347. /package/sdk/platform/{models/WebhookValidator.d.ts → Webhook/WebhookPlatformValidator.d.ts} +0 -0
  348. /package/sdk/public/{client → Configuration}/ConfigurationPublicClient.d.ts +0 -0
  349. /package/sdk/public/{models/ConfigurationValidator.d.ts → Configuration/ConfigurationPublicValidator.d.ts} +0 -0
  350. /package/sdk/public/{client → Inventory}/InventoryPublicClient.d.ts +0 -0
  351. /package/sdk/public/{models/InventoryValidator.d.ts → Inventory/InventoryPublicValidator.d.ts} +0 -0
  352. /package/sdk/public/{client → Webhook}/WebhookPublicClient.d.ts +0 -0
  353. /package/sdk/public/{models/WebhookValidator.d.ts → Webhook/WebhookPublicValidator.d.ts} +0 -0
@@ -25,8 +25,6 @@ Handles all platform order and shipment api(s)
25
25
  * [getBulkInvoiceLabel](#getbulkinvoicelabel)
26
26
  * [getBulkShipmentExcelFile](#getbulkshipmentexcelfile)
27
27
  * [getBulkList](#getbulklist)
28
- * [getManifestList](#getmanifestlist)
29
- * [getManifestDetailsWithShipments](#getmanifestdetailswithshipments)
30
28
  * [getBulkActionFailedReport](#getbulkactionfailedreport)
31
29
  * [getShipmentReasons](#getshipmentreasons)
32
30
  * [bulkActionProcessXlsxFile](#bulkactionprocessxlsxfile)
@@ -44,12 +42,13 @@ Handles all platform order and shipment api(s)
44
42
  * [dispatchManifest](#dispatchmanifest)
45
43
  * [getRoleBasedActions](#getrolebasedactions)
46
44
  * [getShipmentHistory](#getshipmenthistory)
45
+ * [postShipmentHistory](#postshipmenthistory)
47
46
  * [sendSmsNinja](#sendsmsninja)
48
47
  * [platformManualAssignDPToShipment](#platformmanualassigndptoshipment)
49
48
  * [updatePackagingDimensions](#updatepackagingdimensions)
50
49
  * [createOrder](#createorder)
51
- * [createChannelConfig](#createchannelconfig)
52
50
  * [getChannelConfig](#getchannelconfig)
51
+ * [createChannelConfig](#createchannelconfig)
53
52
  * [uploadConsent](#uploadconsent)
54
53
  * [orderUpdate](#orderupdate)
55
54
  * [checkOrderStatus](#checkorderstatus)
@@ -1611,6 +1610,10 @@ We are processing the report!
1611
1610
  // Promise
1612
1611
  const promise = client.order.getOrders({ lane : value,
1613
1612
  searchType : value,
1613
+ bagStatus : value,
1614
+ timeToDispatch : value,
1615
+ paymentMethods : value,
1616
+ tags : value,
1614
1617
  searchValue : value,
1615
1618
  fromDate : value,
1616
1619
  toDate : value,
@@ -1625,6 +1628,10 @@ const promise = client.order.getOrders({ lane : value,
1625
1628
  // Async/Await
1626
1629
  const data = await client.order.getOrders({ lane : value,
1627
1630
  searchType : value,
1631
+ bagStatus : value,
1632
+ timeToDispatch : value,
1633
+ paymentMethods : value,
1634
+ tags : value,
1628
1635
  searchValue : value,
1629
1636
  fromDate : value,
1630
1637
  toDate : value,
@@ -1645,6 +1652,10 @@ const data = await client.order.getOrders({ lane : value,
1645
1652
  | --------- | ----- | -------- | ----------- |
1646
1653
  | lane | string | no | |
1647
1654
  | searchType | string | no | |
1655
+ | bagStatus | string | no | |
1656
+ | timeToDispatch | string | no | |
1657
+ | paymentMethods | string | no | |
1658
+ | tags | string | no | |
1648
1659
  | searchValue | string | no | |
1649
1660
  | fromDate | string | no | |
1650
1661
  | toDate | string | no | |
@@ -3114,259 +3125,6 @@ We are processing the file!
3114
3125
 
3115
3126
 
3116
3127
 
3117
- ---
3118
-
3119
-
3120
- ### getManifestList
3121
-
3122
-
3123
-
3124
-
3125
- ```javascript
3126
- // Promise
3127
- const promise = client.order.getManifestList({ status : value,
3128
- storeId : value,
3129
- pageNo : value,
3130
- pageSize : value,
3131
- searchValue : value,
3132
- fromDate : value,
3133
- toDate : value });
3134
-
3135
- // Async/Await
3136
- const data = await client.order.getManifestList({ status : value,
3137
- storeId : value,
3138
- pageNo : value,
3139
- pageSize : value,
3140
- searchValue : value,
3141
- fromDate : value,
3142
- toDate : value });
3143
- ```
3144
-
3145
-
3146
-
3147
-
3148
-
3149
- | Argument | Type | Required | Description |
3150
- | --------- | ----- | -------- | ----------- |
3151
- | status | string | no | |
3152
- | storeId | number | no | |
3153
- | pageNo | number | no | |
3154
- | pageSize | number | no | |
3155
- | searchValue | string | no | |
3156
- | fromDate | string | no | |
3157
- | toDate | string | no | |
3158
-
3159
-
3160
-
3161
-
3162
-
3163
- *Returned Response:*
3164
-
3165
-
3166
-
3167
-
3168
- [GeneratedManifestResponse](#GeneratedManifestResponse)
3169
-
3170
- We are processing the file!
3171
-
3172
-
3173
-
3174
-
3175
- <details>
3176
- <summary><i>&nbsp; Example:</i></summary>
3177
-
3178
- ```json
3179
- {
3180
- "items": [
3181
- {
3182
- "is_active": true,
3183
- "manifest_id": "5d1d753a-6af9-11ed-8b97-1a715b71f832",
3184
- "company_id": 1,
3185
- "created_at": "26-11-2022",
3186
- "created_by": "nehashetye_gofynd_com_71847",
3187
- "filters": {
3188
- "lane": "ready_for_dispatch",
3189
- "dp_ids": 30,
3190
- "stores": 357,
3191
- "dp_name": "Delhivery",
3192
- "date_range": {
3193
- "to_date": "18-11-2022",
3194
- "from_date": "20-05-2022"
3195
- },
3196
- "store_name": "reliance",
3197
- "sales_channels": "62186fce51e60369e2b093e6",
3198
- "sales_channel_name": "fynd"
3199
- },
3200
- "status": "process"
3201
- }
3202
- ],
3203
- "page": {
3204
- "current": "1",
3205
- "total": 1,
3206
- "has_previous": false,
3207
- "has_next": false,
3208
- "type": "number",
3209
- "size": "100"
3210
- }
3211
- }
3212
- ```
3213
- </details>
3214
-
3215
-
3216
-
3217
-
3218
-
3219
-
3220
-
3221
-
3222
-
3223
- ---
3224
-
3225
-
3226
- ### getManifestDetailsWithShipments
3227
-
3228
-
3229
-
3230
-
3231
- ```javascript
3232
- // Promise
3233
- const promise = client.order.getManifestDetailsWithShipments({ manifestId : value,
3234
- storeId : value,
3235
- fromDate : value,
3236
- toDate : value,
3237
- page : value,
3238
- pageSize : value,
3239
- lane : value,
3240
- dpIds : value,
3241
- searchType : value,
3242
- searchValue : value });
3243
-
3244
- // Async/Await
3245
- const data = await client.order.getManifestDetailsWithShipments({ manifestId : value,
3246
- storeId : value,
3247
- fromDate : value,
3248
- toDate : value,
3249
- page : value,
3250
- pageSize : value,
3251
- lane : value,
3252
- dpIds : value,
3253
- searchType : value,
3254
- searchValue : value });
3255
- ```
3256
-
3257
-
3258
-
3259
-
3260
-
3261
- | Argument | Type | Required | Description |
3262
- | --------- | ----- | -------- | ----------- |
3263
- | manifestId | string | yes | |
3264
- | fromDate | string | no | |
3265
- | toDate | string | no | |
3266
- | storeId | number | yes | |
3267
- | page | number | no | |
3268
- | pageSize | number | no | |
3269
- | lane | string | no | |
3270
- | dpIds | number | no | |
3271
- | searchType | string | no | |
3272
- | searchValue | string | no | |
3273
-
3274
-
3275
-
3276
-
3277
-
3278
- *Returned Response:*
3279
-
3280
-
3281
-
3282
-
3283
- [ManifestDetailResponse](#ManifestDetailResponse)
3284
-
3285
- We are processing the file!
3286
-
3287
-
3288
-
3289
-
3290
- <details>
3291
- <summary><i>&nbsp; Example:</i></summary>
3292
-
3293
- ```json
3294
- {
3295
- "manifest_details": [
3296
- {
3297
- "is_active": true,
3298
- "manifest_id": "5d1d753a-6af9-11ed-8b97-1a715b71f832",
3299
- "company_id": 1,
3300
- "created_at": "26-11-2022",
3301
- "created_by": "nehashetye_gofynd_com_71847",
3302
- "filters": {
3303
- "lane": "ready_for_dispatch",
3304
- "dp_ids": 30,
3305
- "stores": 357,
3306
- "dp_name": "Delhivery",
3307
- "date_range": {
3308
- "to_date": "18-11-2022",
3309
- "from_date": "20-05-2022"
3310
- },
3311
- "store_name": "reliance",
3312
- "sales_channels": "62186fce51e60369e2b093e6",
3313
- "sales_channel_name": "fynd"
3314
- },
3315
- "meta": {
3316
- "filters": {
3317
- "lane": "ready_for_dispatch",
3318
- "dp_ids": 30,
3319
- "stores": 357,
3320
- "dp_name": "Delhivery",
3321
- "date_range": {
3322
- "to_date": "18-11-2022",
3323
- "from_date": "20-05-2022"
3324
- },
3325
- "store_name": "reliance",
3326
- "sales_channels": "62186fce51e60369e2b093e6",
3327
- "sales_channel_name": "fynd"
3328
- },
3329
- "total_shipment_prices_count": {
3330
- "total_price": 4792,
3331
- "shipment_count": 8
3332
- }
3333
- },
3334
- "status": "process",
3335
- "uid": 11,
3336
- "user_id": "5f23c85bf4439a812561443a",
3337
- "id": "6381ca603a81bc8a08f340de"
3338
- }
3339
- ],
3340
- "items": [
3341
- {
3342
- "shipment_id": "16631665711791409923",
3343
- "order_id": "FYMP6321E86B01D585CA",
3344
- "invoice_id": "1111111111111112",
3345
- "awb": null,
3346
- "item_qty": 1
3347
- }
3348
- ],
3349
- "page": {
3350
- "current": 1,
3351
- "total": 1,
3352
- "has_previous": false,
3353
- "has_next": false,
3354
- "type": "number",
3355
- "size": 10
3356
- },
3357
- "additional_shipment_count": 0
3358
- }
3359
- ```
3360
- </details>
3361
-
3362
-
3363
-
3364
-
3365
-
3366
-
3367
-
3368
-
3369
-
3370
3128
  ---
3371
3129
 
3372
3130
 
@@ -4500,6 +4258,100 @@ It shows the journey of the shipment!
4500
4258
 
4501
4259
 
4502
4260
 
4261
+ ---
4262
+
4263
+
4264
+ ### postShipmentHistory
4265
+
4266
+
4267
+
4268
+
4269
+ ```javascript
4270
+ // Promise
4271
+ const promise = client.order.postShipmentHistory({ body : value });
4272
+
4273
+ // Async/Await
4274
+ const data = await client.order.postShipmentHistory({ body : value });
4275
+ ```
4276
+
4277
+
4278
+
4279
+
4280
+
4281
+ | Argument | Type | Required | Description |
4282
+ | --------- | ----- | -------- | ----------- |
4283
+ | body | [PostShipmentHistory](#PostShipmentHistory) | yes | Request body |
4284
+
4285
+
4286
+
4287
+
4288
+ *Returned Response:*
4289
+
4290
+
4291
+
4292
+
4293
+ [ShipmentHistoryResponse](#ShipmentHistoryResponse)
4294
+
4295
+ It shows the journey of the shipment!
4296
+
4297
+
4298
+
4299
+
4300
+ <details>
4301
+ <summary><i>&nbsp; Example:</i></summary>
4302
+
4303
+ ```json
4304
+ {
4305
+ "activity_history": [
4306
+ {
4307
+ "message": {
4308
+ "message": "Bag status changed to pending",
4309
+ "store_id": 10,
4310
+ "store_code": "SF94",
4311
+ "store_name": "shub",
4312
+ "reason": {},
4313
+ "type": "activity_status"
4314
+ },
4315
+ "createdat": "01 Apr 2022, 17:57:PM",
4316
+ "user": "system",
4317
+ "type": "activity_status",
4318
+ "l1_detail": null,
4319
+ "l2_detail": null,
4320
+ "l3_detail": null,
4321
+ "ticket_id": null,
4322
+ "ticket_url": null
4323
+ },
4324
+ {
4325
+ "message": {
4326
+ "message": "Bag status changed to placed",
4327
+ "store_id": 10,
4328
+ "store_code": "SF94",
4329
+ "store_name": "shub",
4330
+ "reason": {},
4331
+ "type": "activity_status"
4332
+ },
4333
+ "createdat": "01 Apr 2022, 17:57:PM",
4334
+ "user": "system",
4335
+ "type": "activity_status",
4336
+ "l1_detail": null,
4337
+ "l2_detail": null,
4338
+ "l3_detail": null,
4339
+ "ticket_id": null,
4340
+ "ticket_url": null
4341
+ }
4342
+ ]
4343
+ }
4344
+ ```
4345
+ </details>
4346
+
4347
+
4348
+
4349
+
4350
+
4351
+
4352
+
4353
+
4354
+
4503
4355
  ---
4504
4356
 
4505
4357
 
@@ -4723,38 +4575,34 @@ Successfully created an order!
4723
4575
  ---
4724
4576
 
4725
4577
 
4726
- ### createChannelConfig
4578
+ ### getChannelConfig
4727
4579
 
4728
4580
 
4729
4581
 
4730
4582
 
4731
4583
  ```javascript
4732
4584
  // Promise
4733
- const promise = client.order.createChannelConfig({ body : value });
4585
+ const promise = client.order.getChannelConfig();
4734
4586
 
4735
4587
  // Async/Await
4736
- const data = await client.order.createChannelConfig({ body : value });
4588
+ const data = await client.order.getChannelConfig();
4737
4589
  ```
4738
4590
 
4739
4591
 
4740
4592
 
4741
4593
 
4742
4594
 
4743
- | Argument | Type | Required | Description |
4744
- | --------- | ----- | -------- | ----------- |
4745
- | body | [CreateChannelConfigData](#CreateChannelConfigData) | yes | Request body |
4746
-
4747
4595
 
4748
- createChannelConfig
4596
+ getChannelConfig
4749
4597
 
4750
4598
  *Returned Response:*
4751
4599
 
4752
4600
 
4753
4601
 
4754
4602
 
4755
- [CreateChannelConfigResponse](#CreateChannelConfigResponse)
4603
+ [CreateChannelConfigData](#CreateChannelConfigData)
4756
4604
 
4757
- Successfully updateShipmentStatus!
4605
+ Successfully created the config data
4758
4606
 
4759
4607
 
4760
4608
 
@@ -4764,10 +4612,27 @@ Successfully updateShipmentStatus!
4764
4612
 
4765
4613
  ```json
4766
4614
  {
4767
- "data": {
4768
- "acknowledged": true,
4769
- "is_upserted": false,
4770
- "is_inserted": false
4615
+ "config_data": {
4616
+ "payment_info": {
4617
+ "payment_methods": [
4618
+ {
4619
+ "mode": "COD",
4620
+ "collect_by": "gringotts",
4621
+ "refund_by": "gringotts"
4622
+ }
4623
+ ],
4624
+ "source": "fynd",
4625
+ "mode_of_payment": "COD"
4626
+ },
4627
+ "dp_configuration": {
4628
+ "shipping_by": "fynd"
4629
+ },
4630
+ "logo_url": {},
4631
+ "location_reassignment": false,
4632
+ "lock_states": [
4633
+ "bag_packed"
4634
+ ],
4635
+ "shipment_assignment": "16703096324891701814"
4771
4636
  }
4772
4637
  }
4773
4638
  ```
@@ -4784,34 +4649,38 @@ Successfully updateShipmentStatus!
4784
4649
  ---
4785
4650
 
4786
4651
 
4787
- ### getChannelConfig
4652
+ ### createChannelConfig
4788
4653
 
4789
4654
 
4790
4655
 
4791
4656
 
4792
4657
  ```javascript
4793
4658
  // Promise
4794
- const promise = client.order.getChannelConfig();
4659
+ const promise = client.order.createChannelConfig({ body : value });
4795
4660
 
4796
4661
  // Async/Await
4797
- const data = await client.order.getChannelConfig();
4662
+ const data = await client.order.createChannelConfig({ body : value });
4798
4663
  ```
4799
4664
 
4800
4665
 
4801
4666
 
4802
4667
 
4803
4668
 
4669
+ | Argument | Type | Required | Description |
4670
+ | --------- | ----- | -------- | ----------- |
4671
+ | body | [CreateChannelConfigData](#CreateChannelConfigData) | yes | Request body |
4672
+
4804
4673
 
4805
- getChannelConfig
4674
+ createChannelConfig
4806
4675
 
4807
4676
  *Returned Response:*
4808
4677
 
4809
4678
 
4810
4679
 
4811
4680
 
4812
- [CreateChannelConfigData](#CreateChannelConfigData)
4681
+ [CreateChannelConfigResponse](#CreateChannelConfigResponse)
4813
4682
 
4814
- Successfully created the config data
4683
+ Successfully updateShipmentStatus!
4815
4684
 
4816
4685
 
4817
4686
 
@@ -4821,27 +4690,10 @@ Successfully created the config data
4821
4690
 
4822
4691
  ```json
4823
4692
  {
4824
- "config_data": {
4825
- "payment_info": {
4826
- "payment_methods": [
4827
- {
4828
- "mode": "COD",
4829
- "collect_by": "gringotts",
4830
- "refund_by": "gringotts"
4831
- }
4832
- ],
4833
- "source": "fynd",
4834
- "mode_of_payment": "COD"
4835
- },
4836
- "dp_configuration": {
4837
- "shipping_by": "fynd"
4838
- },
4839
- "logo_url": {},
4840
- "location_reassignment": false,
4841
- "lock_states": [
4842
- "bag_packed"
4843
- ],
4844
- "shipment_assignment": "16703096324891701814"
4693
+ "data": {
4694
+ "acknowledged": true,
4695
+ "is_upserted": false,
4696
+ "is_inserted": false
4845
4697
  }
4846
4698
  }
4847
4699
  ```
@@ -5079,128 +4931,97 @@ Sms Sent successfully
5079
4931
 
5080
4932
 
5081
4933
 
5082
- #### [UserDataInfo](#UserDataInfo)
4934
+ #### [FilterInfoOption](#FilterInfoOption)
5083
4935
 
5084
4936
  | Properties | Type | Nullable | Description |
5085
4937
  | ---------- | ---- | -------- | ----------- |
5086
- | uid | number | no | |
5087
- | avis_user_id | string | no | |
5088
- | email | string | no | |
5089
- | last_name | string | no | |
4938
+ | value | string | no | |
4939
+ | text | string | yes | |
5090
4940
  | name | string | no | |
5091
- | is_anonymous_user | boolean | no | |
5092
- | gender | string | no | |
5093
- | first_name | string | no | |
5094
- | mobile | string | no | |
5095
-
5096
- ---
5097
-
5098
-
5099
-
5100
-
5101
- #### [GSTDetailsData](#GSTDetailsData)
5102
-
5103
- | Properties | Type | Nullable | Description |
5104
- | ---------- | ---- | -------- | ----------- |
5105
- | brand_calculated_amount | number | yes | |
5106
- | value_of_good | number | yes | |
5107
- | gstin_code | string | yes | |
5108
- | tax_collected_at_source | number | yes | |
5109
- | gst_fee | number | yes | |
5110
4941
 
5111
4942
  ---
5112
4943
 
5113
4944
 
5114
4945
 
5115
4946
 
5116
- #### [Prices](#Prices)
4947
+ #### [FiltersInfo](#FiltersInfo)
5117
4948
 
5118
4949
  | Properties | Type | Nullable | Description |
5119
4950
  | ---------- | ---- | -------- | ----------- |
5120
- | discount | number | no | |
5121
- | cod_charges | number | no | |
5122
- | refund_credit | number | no | |
5123
- | delivery_charge | number | no | |
5124
- | cashback_applied | number | no | |
5125
- | amount_paid | number | no | |
5126
- | tax_collected_at_source | number | no | |
5127
- | price_effective | number | no | |
5128
- | value_of_good | number | no | |
5129
- | refund_amount | number | no | |
5130
- | amount_paid_roundoff | number | no | |
5131
- | fynd_credits | number | no | |
5132
- | coupon_value | number | no | |
5133
- | cashback | number | no | |
5134
- | price_marked | number | no | |
5135
- | promotion_effective_discount | number | no | |
4951
+ | value | string | yes | |
4952
+ | text | string | yes | |
4953
+ | options | [[FilterInfoOption](#FilterInfoOption)] | no | |
4954
+ | type | string | yes | |
5136
4955
 
5137
4956
  ---
5138
4957
 
5139
4958
 
5140
4959
 
5141
4960
 
5142
- #### [PlatformItem](#PlatformItem)
4961
+ #### [UserDataInfo](#UserDataInfo)
5143
4962
 
5144
4963
  | Properties | Type | Nullable | Description |
5145
4964
  | ---------- | ---- | -------- | ----------- |
5146
- | department_id | number | no | |
5147
- | code | string | no | |
5148
- | image | [string] | no | |
5149
- | l1_category | [string] | no | |
5150
- | color | string | no | |
4965
+ | email | string | no | |
4966
+ | avis_user_id | string | no | |
4967
+ | is_anonymous_user | boolean | no | |
4968
+ | uid | number | no | |
5151
4969
  | name | string | no | |
5152
- | id | number | no | |
5153
- | l3_category | number | no | |
5154
- | size | string | no | |
5155
- | images | [string] | no | |
5156
- | can_return | boolean | no | |
5157
- | l3_category_name | string | no | |
5158
- | can_cancel | boolean | no | |
4970
+ | last_name | string | no | |
4971
+ | gender | string | no | |
4972
+ | first_name | string | no | |
4973
+ | mobile | string | no | |
5159
4974
 
5160
4975
  ---
5161
4976
 
5162
4977
 
5163
4978
 
5164
4979
 
5165
- #### [BagUnit](#BagUnit)
4980
+ #### [PaymentModeInfo](#PaymentModeInfo)
5166
4981
 
5167
4982
  | Properties | Type | Nullable | Description |
5168
4983
  | ---------- | ---- | -------- | ----------- |
5169
- | item_quantity | number | yes | |
5170
- | ordering_channel | string | yes | |
5171
- | shipment_id | string | yes | |
5172
- | total_shipment_bags | number | yes | |
5173
- | status | string | yes | |
5174
- | gst | [GSTDetailsData](#GSTDetailsData) | no | |
5175
- | prices | [Prices](#Prices) | no | |
5176
- | bag_id | number | yes | |
5177
- | item | [PlatformItem](#PlatformItem) | no | |
5178
- | can_return | boolean | no | |
5179
- | can_cancel | boolean | no | |
4984
+ | type | string | yes | |
4985
+ | logo | string | yes | |
5180
4986
 
5181
4987
  ---
5182
4988
 
5183
4989
 
5184
4990
 
5185
4991
 
5186
- #### [PaymentModeInfo](#PaymentModeInfo)
4992
+ #### [ShipmentItemFulFillingStore](#ShipmentItemFulFillingStore)
5187
4993
 
5188
4994
  | Properties | Type | Nullable | Description |
5189
4995
  | ---------- | ---- | -------- | ----------- |
5190
- | type | string | yes | |
5191
- | logo | string | yes | |
4996
+ | id | string | yes | |
4997
+ | code | string | yes | |
5192
4998
 
5193
4999
  ---
5194
5000
 
5195
5001
 
5196
5002
 
5197
5003
 
5198
- #### [ShipmentItemFulFillingStore](#ShipmentItemFulFillingStore)
5004
+ #### [Prices](#Prices)
5199
5005
 
5200
5006
  | Properties | Type | Nullable | Description |
5201
5007
  | ---------- | ---- | -------- | ----------- |
5202
- | id | string | yes | |
5203
- | code | string | yes | |
5008
+ | cashback | number | no | |
5009
+ | amount_paid | number | no | |
5010
+ | amount_paid_roundoff | number | no | |
5011
+ | transfer_price | number | no | |
5012
+ | tax_collected_at_source | number | no | |
5013
+ | promotion_effective_discount | number | no | |
5014
+ | refund_amount | number | no | |
5015
+ | cod_charges | number | no | |
5016
+ | delivery_charge | number | no | |
5017
+ | price_effective | number | no | |
5018
+ | fynd_credits | number | no | |
5019
+ | coupon_value | number | no | |
5020
+ | value_of_good | number | no | |
5021
+ | discount | number | no | |
5022
+ | price_marked | number | no | |
5023
+ | refund_credit | number | no | |
5024
+ | cashback_applied | number | no | |
5204
5025
 
5205
5026
  ---
5206
5027
 
@@ -5211,103 +5032,123 @@ Sms Sent successfully
5211
5032
 
5212
5033
  | Properties | Type | Nullable | Description |
5213
5034
  | ---------- | ---- | -------- | ----------- |
5214
- | ops_status | string | yes | |
5215
- | actual_status | string | yes | |
5216
5035
  | title | string | yes | |
5217
5036
  | status | string | yes | |
5218
5037
  | hex_code | string | yes | |
5038
+ | actual_status | string | yes | |
5039
+ | ops_status | string | yes | |
5219
5040
 
5220
5041
  ---
5221
5042
 
5222
5043
 
5223
5044
 
5224
5045
 
5225
- #### [ShipmentItem](#ShipmentItem)
5046
+ #### [GSTDetailsData](#GSTDetailsData)
5226
5047
 
5227
5048
  | Properties | Type | Nullable | Description |
5228
5049
  | ---------- | ---- | -------- | ----------- |
5229
- | sla | string | no | |
5230
- | total_bags_count | number | yes | |
5231
- | payment_methods | string | no | |
5232
- | created_at | string | yes | |
5233
- | user | [UserDataInfo](#UserDataInfo) | no | |
5234
- | bags | [[BagUnit](#BagUnit)] | no | |
5235
- | payment_mode_info | [PaymentModeInfo](#PaymentModeInfo) | no | |
5236
- | prices | [Prices](#Prices) | no | |
5237
- | id | string | yes | |
5238
- | fulfilling_store | [ShipmentItemFulFillingStore](#ShipmentItemFulFillingStore) | no | |
5239
- | shipment_status | [ShipmentStatus](#ShipmentStatus) | no | |
5240
- | application | string | no | |
5241
- | shipment_created_at | number | yes | |
5242
- | fulfilling_centre | string | yes | |
5243
- | total_shipments_in_order | number | yes | |
5244
- | channel | string | no | |
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 | |
5245
5055
 
5246
5056
  ---
5247
5057
 
5248
5058
 
5249
5059
 
5250
5060
 
5251
- #### [FilterInfoOption](#FilterInfoOption)
5061
+ #### [PlatformItem](#PlatformItem)
5252
5062
 
5253
5063
  | Properties | Type | Nullable | Description |
5254
5064
  | ---------- | ---- | -------- | ----------- |
5255
- | value | string | no | |
5065
+ | size | string | no | |
5066
+ | images | [string] | no | |
5067
+ | color | string | no | |
5256
5068
  | name | string | no | |
5257
- | text | string | yes | |
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 | |
5258
5078
 
5259
5079
  ---
5260
5080
 
5261
5081
 
5262
5082
 
5263
5083
 
5264
- #### [FiltersInfo](#FiltersInfo)
5084
+ #### [BagUnit](#BagUnit)
5265
5085
 
5266
5086
  | Properties | Type | Nullable | Description |
5267
5087
  | ---------- | ---- | -------- | ----------- |
5268
- | value | string | yes | |
5269
- | type | string | yes | |
5270
- | options | [[FilterInfoOption](#FilterInfoOption)] | no | |
5271
- | text | string | yes | |
5088
+ | shipment_id | string | yes | |
5089
+ | status | string | yes | |
5090
+ | gst | [GSTDetailsData](#GSTDetailsData) | no | |
5091
+ | total_shipment_bags | number | yes | |
5092
+ | can_return | boolean | no | |
5093
+ | prices | [Prices](#Prices) | no | |
5094
+ | can_cancel | boolean | no | |
5095
+ | item | [PlatformItem](#PlatformItem) | no | |
5096
+ | bag_id | number | yes | |
5097
+ | ordering_channel | string | yes | |
5098
+ | item_quantity | number | yes | |
5272
5099
 
5273
5100
  ---
5274
5101
 
5275
5102
 
5276
5103
 
5277
5104
 
5278
- #### [ShipmentInternalPlatformViewResponse](#ShipmentInternalPlatformViewResponse)
5105
+ #### [ShipmentItem](#ShipmentItem)
5279
5106
 
5280
5107
  | Properties | Type | Nullable | Description |
5281
5108
  | ---------- | ---- | -------- | ----------- |
5282
- | items | [[ShipmentItem](#ShipmentItem)] | no | |
5283
- | applied_filters | string | no | |
5284
- | page | string | no | |
5285
- | filters | [[FiltersInfo](#FiltersInfo)] | no | |
5286
-
5287
- ---
5288
-
5289
-
5290
-
5109
+ | user | [UserDataInfo](#UserDataInfo) | no | |
5110
+ | 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
+ | total_bags_count | number | yes | |
5117
+ | id | string | yes | |
5118
+ | channel | string | no | |
5119
+ | prices | [Prices](#Prices) | no | |
5120
+ | fulfilling_centre | string | yes | |
5121
+ | payment_methods | string | no | |
5122
+ | total_shipments_in_order | number | yes | |
5123
+ | shipment_status | [ShipmentStatus](#ShipmentStatus) | no | |
5124
+ | bags | [[BagUnit](#BagUnit)] | no | |
5125
+ | sla | string | no | |
5126
+
5127
+ ---
5128
+
5129
+
5291
5130
 
5292
- #### [Error](#Error)
5131
+
5132
+ #### [ShipmentInternalPlatformViewResponse](#ShipmentInternalPlatformViewResponse)
5293
5133
 
5294
5134
  | Properties | Type | Nullable | Description |
5295
5135
  | ---------- | ---- | -------- | ----------- |
5296
- | success | boolean | no | |
5297
- | message | string | no | |
5136
+ | applied_filters | string | no | |
5137
+ | filters | [[FiltersInfo](#FiltersInfo)] | no | |
5138
+ | page | string | no | |
5139
+ | items | [[ShipmentItem](#ShipmentItem)] | no | |
5298
5140
 
5299
5141
  ---
5300
5142
 
5301
5143
 
5302
5144
 
5303
5145
 
5304
- #### [ShipmentPayments](#ShipmentPayments)
5146
+ #### [Error](#Error)
5305
5147
 
5306
5148
  | Properties | Type | Nullable | Description |
5307
5149
  | ---------- | ---- | -------- | ----------- |
5308
- | mode | string | yes | |
5309
- | source | string | no | |
5310
- | logo | string | no | |
5150
+ | success | boolean | no | |
5151
+ | message | string | no | |
5311
5152
 
5312
5153
  ---
5313
5154
 
@@ -5318,16 +5159,16 @@ Sms Sent successfully
5318
5159
 
5319
5160
  | Properties | Type | Nullable | Description |
5320
5161
  | ---------- | ---- | -------- | ----------- |
5321
- | notify_customer | boolean | no | |
5322
- | app_facing | boolean | no | |
5323
- | journey_type | string | yes | |
5162
+ | state_type | string | yes | |
5163
+ | is_active | boolean | no | |
5324
5164
  | app_state_name | string | no | |
5325
5165
  | name | string | yes | |
5326
- | app_display_name | string | no | |
5327
- | is_active | boolean | no | |
5328
- | state_type | string | yes | |
5329
- | display_name | string | yes | |
5330
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 | |
5331
5172
 
5332
5173
  ---
5333
5174
 
@@ -5338,23 +5179,23 @@ Sms Sent successfully
5338
5179
 
5339
5180
  | Properties | Type | Nullable | Description |
5340
5181
  | ---------- | ---- | -------- | ----------- |
5341
- | forward | boolean | no | |
5342
- | bag_state_mapper | [BagStateMapper](#BagStateMapper) | yes | |
5343
- | created_at | string | yes | |
5344
- | shipment_id | string | yes | |
5345
- | delivery_awb_number | string | no | |
5346
- | kafka_sync | boolean | no | |
5347
- | reasons | [string] | no | |
5348
- | app_display_name | boolean | no | |
5182
+ | bag_state_mapper | [BagStateMapper](#BagStateMapper) | no | |
5349
5183
  | updated_at | string | no | |
5350
- | store_id | number | yes | |
5351
- | bsh_id | number | yes | |
5352
- | status | string | yes | |
5353
- | bag_id | number | yes | |
5354
5184
  | state_type | string | no | |
5355
- | display_name | boolean | no | |
5185
+ | created_at | string | no | |
5356
5186
  | delivery_partner_id | number | no | |
5357
- | state_id | number | yes | |
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 | |
5358
5199
 
5359
5200
  ---
5360
5201
 
@@ -5365,131 +5206,121 @@ Sms Sent successfully
5365
5206
 
5366
5207
  | Properties | Type | Nullable | Description |
5367
5208
  | ---------- | ---- | -------- | ----------- |
5368
- | time | string | no | |
5369
- | status | string | yes | |
5370
5209
  | text | string | yes | |
5371
- | is_current | boolean | no | |
5210
+ | status | string | yes | |
5211
+ | time | string | no | |
5372
5212
  | is_passed | boolean | no | |
5213
+ | is_current | boolean | no | |
5373
5214
 
5374
5215
  ---
5375
5216
 
5376
5217
 
5377
5218
 
5378
5219
 
5379
- #### [ShipmentStatusData](#ShipmentStatusData)
5220
+ #### [DPDetailsData](#DPDetailsData)
5380
5221
 
5381
5222
  | Properties | Type | Nullable | Description |
5382
5223
  | ---------- | ---- | -------- | ----------- |
5383
- | created_at | string | no | |
5384
- | shipment_id | string | no | |
5385
- | bag_list | [number] | no | |
5386
- | status | string | no | |
5224
+ | pincode | string | no | |
5225
+ | name | string | no | |
5387
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 | |
5388
5232
 
5389
5233
  ---
5390
5234
 
5391
5235
 
5392
5236
 
5393
5237
 
5394
- #### [UserDetailsData](#UserDetailsData)
5395
-
5396
- | Properties | Type | Nullable | Description |
5397
- | ---------- | ---- | -------- | ----------- |
5398
- | city | string | yes | |
5399
- | phone | string | yes | |
5400
- | pincode | string | yes | |
5401
- | email | string | yes | |
5402
- | name | string | yes | |
5403
- | address | string | yes | |
5404
- | state | string | yes | |
5405
- | country | string | yes | |
5406
-
5407
- ---
5408
-
5409
-
5410
-
5411
-
5412
- #### [DPDetailsData](#DPDetailsData)
5238
+ #### [Dimensions](#Dimensions)
5413
5239
 
5414
5240
  | Properties | Type | Nullable | Description |
5415
5241
  | ---------- | ---- | -------- | ----------- |
5416
- | eway_bill_id | string | no | |
5417
- | track_url | string | no | |
5418
- | pincode | string | no | |
5419
- | name | string | no | |
5420
- | gst_tag | string | no | |
5421
- | id | string | no | |
5422
- | country | string | no | |
5423
- | awb_no | string | no | |
5242
+ | width | number | no | |
5243
+ | length | number | no | |
5244
+ | is_default | boolean | no | |
5245
+ | height | number | no | |
5246
+ | unit | string | no | |
5424
5247
 
5425
5248
  ---
5426
5249
 
5427
5250
 
5428
5251
 
5429
5252
 
5430
- #### [ItemCriterias](#ItemCriterias)
5253
+ #### [Meta](#Meta)
5431
5254
 
5432
5255
  | Properties | Type | Nullable | Description |
5433
5256
  | ---------- | ---- | -------- | ----------- |
5434
- | item_brand | [number] | no | |
5257
+ | dimension | [Dimensions](#Dimensions) | no | |
5435
5258
 
5436
5259
  ---
5437
5260
 
5438
5261
 
5439
5262
 
5440
5263
 
5441
- #### [BuyRules](#BuyRules)
5264
+ #### [ShipmentPayments](#ShipmentPayments)
5442
5265
 
5443
5266
  | Properties | Type | Nullable | Description |
5444
5267
  | ---------- | ---- | -------- | ----------- |
5445
- | item_criteria | [ItemCriterias](#ItemCriterias) | no | |
5446
- | cart_conditions | string | no | |
5268
+ | mode | string | no | |
5269
+ | logo | string | no | |
5270
+ | source | string | no | |
5447
5271
 
5448
5272
  ---
5449
5273
 
5450
5274
 
5451
5275
 
5452
5276
 
5453
- #### [DiscountRules](#DiscountRules)
5277
+ #### [InvoiceInfo](#InvoiceInfo)
5454
5278
 
5455
5279
  | Properties | Type | Nullable | Description |
5456
5280
  | ---------- | ---- | -------- | ----------- |
5457
- | value | number | no | |
5458
- | type | string | no | |
5281
+ | updated_date | string | no | |
5282
+ | invoice_url | string | no | |
5283
+ | label_url | string | no | |
5284
+ | credit_note_id | string | no | |
5285
+ | store_invoice_id | string | no | |
5459
5286
 
5460
5287
  ---
5461
5288
 
5462
5289
 
5463
5290
 
5464
5291
 
5465
- #### [AppliedPromos](#AppliedPromos)
5292
+ #### [ShipmentStatusData](#ShipmentStatusData)
5466
5293
 
5467
5294
  | Properties | Type | Nullable | Description |
5468
5295
  | ---------- | ---- | -------- | ----------- |
5469
- | promotion_name | string | no | |
5470
- | amount | number | no | |
5471
- | buy_rules | [[BuyRules](#BuyRules)] | no | |
5472
- | promo_id | string | no | |
5473
- | discount_rules | [[DiscountRules](#DiscountRules)] | no | |
5474
- | mrp_promotion | boolean | no | |
5475
- | article_quantity | number | no | |
5476
- | promotion_type | string | no | |
5296
+ | created_at | string | no | |
5297
+ | shipment_id | string | no | |
5298
+ | status | string | no | |
5299
+ | bag_list | [string] | no | |
5300
+ | id | number | no | |
5477
5301
 
5478
5302
  ---
5479
5303
 
5480
5304
 
5481
5305
 
5482
5306
 
5483
- #### [BagConfigs](#BagConfigs)
5307
+ #### [CurrentStatus](#CurrentStatus)
5484
5308
 
5485
5309
  | Properties | Type | Nullable | Description |
5486
5310
  | ---------- | ---- | -------- | ----------- |
5487
- | enable_tracking | boolean | yes | |
5488
- | can_be_cancelled | boolean | yes | |
5489
- | is_customer_return_allowed | boolean | yes | |
5490
- | is_active | boolean | yes | |
5491
- | allow_force_return | boolean | yes | |
5492
- | is_returnable | boolean | yes | |
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 | |
5493
5324
 
5494
5325
  ---
5495
5326
 
@@ -5511,542 +5342,554 @@ Sms Sent successfully
5511
5342
 
5512
5343
  | Properties | Type | Nullable | Description |
5513
5344
  | ---------- | ---- | -------- | ----------- |
5514
- | coupon_value | number | yes | |
5515
- | gst_fee | string | yes | |
5516
- | hsn_code | string | yes | |
5517
- | delivery_charge | number | yes | |
5518
- | transfer_price | number | yes | |
5519
- | amount_paid | number | yes | |
5520
- | price_effective | number | yes | |
5521
- | total_units | number | yes | |
5522
- | discount | number | yes | |
5523
- | refund_credit | number | yes | |
5524
5345
  | item_name | string | yes | |
5525
- | cashback_applied | number | yes | |
5346
+ | cod_charges | number | yes | |
5347
+ | fynd_credits | number | yes | |
5348
+ | added_to_fynd_cash | boolean | yes | |
5349
+ | hsn_code | string | yes | |
5526
5350
  | gst_tax_percentage | number | yes | |
5351
+ | gst_fee | number | yes | |
5527
5352
  | brand_calculated_amount | number | yes | |
5528
- | value_of_good | number | yes | |
5529
- | tax_collected_at_source | number | no | |
5530
- | cashback | number | yes | |
5531
- | size | string | yes | |
5353
+ | coupon_value | number | yes | |
5354
+ | cashback_applied | number | yes | |
5355
+ | amount_paid | number | yes | |
5356
+ | amount_paid_roundoff | number | no | |
5532
5357
  | promotion_effective_discount | number | yes | |
5533
- | pm_price_split | string | yes | |
5534
- | cod_charges | number | yes | |
5535
- | identifiers | [Identifier](#Identifier) | yes | |
5358
+ | delivery_charge | number | yes | |
5536
5359
  | gst_tag | string | yes | |
5537
- | coupon_effective_discount | number | yes | |
5538
- | amount_paid_roundoff | number | no | |
5539
- | added_to_fynd_cash | boolean | yes | |
5540
- | fynd_credits | number | yes | |
5360
+ | discount | number | yes | |
5541
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 | |
5542
5372
 
5543
5373
  ---
5544
5374
 
5545
5375
 
5546
5376
 
5547
5377
 
5548
- #### [PlatformDeliveryAddress](#PlatformDeliveryAddress)
5378
+ #### [BagGST](#BagGST)
5549
5379
 
5550
5380
  | Properties | Type | Nullable | Description |
5551
5381
  | ---------- | ---- | -------- | ----------- |
5552
- | area | string | no | |
5553
- | city | string | no | |
5554
- | phone | string | no | |
5555
- | created_at | string | no | |
5556
- | address_category | string | no | |
5557
- | pincode | string | no | |
5558
- | landmark | string | no | |
5559
- | longitude | number | no | |
5560
- | email | string | no | |
5561
- | latitude | number | no | |
5562
- | address2 | string | no | |
5563
- | updated_at | string | no | |
5564
- | address1 | string | no | |
5565
- | contact_person | string | no | |
5566
- | address_type | string | no | |
5567
- | state | string | no | |
5568
- | country | string | no | |
5569
- | version | string | no | |
5382
+ | gstin_code | string | no | |
5383
+ | hsn_code | string | no | |
5384
+ | gst_tax_percentage | number | no | |
5385
+ | gst_fee | number | no | |
5386
+ | gst_tag | string | no | |
5387
+ | value_of_good | number | no | |
5388
+ | brand_calculated_amount | number | no | |
5389
+ | is_default_hsn_code | boolean | no | |
5570
5390
 
5571
5391
  ---
5572
5392
 
5573
5393
 
5574
5394
 
5575
5395
 
5576
- #### [OrderBrandName](#OrderBrandName)
5396
+ #### [OrderBagArticle](#OrderBagArticle)
5577
5397
 
5578
5398
  | Properties | Type | Nullable | Description |
5579
5399
  | ---------- | ---- | -------- | ----------- |
5580
- | company | string | yes | |
5581
- | modified_on | number | no | |
5582
- | id | number | yes | |
5583
- | brand_name | string | yes | |
5584
- | created_on | number | yes | |
5585
- | logo | string | yes | |
5400
+ | return_config | string | no | |
5401
+ | uid | string | no | |
5402
+ | identifiers | string | no | |
5586
5403
 
5587
5404
  ---
5588
5405
 
5589
5406
 
5590
5407
 
5591
5408
 
5592
- #### [BagGST](#BagGST)
5409
+ #### [PlatformDeliveryAddress](#PlatformDeliveryAddress)
5593
5410
 
5594
5411
  | Properties | Type | Nullable | Description |
5595
5412
  | ---------- | ---- | -------- | ----------- |
5596
- | is_default_hsn_code | boolean | no | |
5597
- | gst_tax_percentage | number | no | |
5598
- | gst_tag | string | no | |
5599
- | brand_calculated_amount | number | no | |
5600
- | value_of_good | number | no | |
5601
- | gstin_code | string | no | |
5602
- | gst_fee | number | no | |
5603
- | hsn_code | string | no | |
5604
-
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 | |
5431
+
5605
5432
  ---
5606
5433
 
5607
5434
 
5608
5435
 
5609
5436
 
5610
- #### [OrderBagArticle](#OrderBagArticle)
5437
+ #### [BagConfigs](#BagConfigs)
5611
5438
 
5612
5439
  | Properties | Type | Nullable | Description |
5613
5440
  | ---------- | ---- | -------- | ----------- |
5614
- | uid | string | no | |
5615
- | return_config | string | no | |
5616
- | identifiers | string | no | |
5441
+ | is_active | boolean | yes | |
5442
+ | is_customer_return_allowed | boolean | yes | |
5443
+ | can_be_cancelled | boolean | yes | |
5444
+ | allow_force_return | boolean | yes | |
5445
+ | is_returnable | boolean | yes | |
5446
+ | enable_tracking | boolean | yes | |
5617
5447
 
5618
5448
  ---
5619
5449
 
5620
5450
 
5621
5451
 
5622
5452
 
5623
- #### [OrderBags](#OrderBags)
5453
+ #### [ItemCriterias](#ItemCriterias)
5624
5454
 
5625
5455
  | Properties | Type | Nullable | Description |
5626
5456
  | ---------- | ---- | -------- | ----------- |
5627
- | identifier | string | no | |
5628
- | prices | [Prices](#Prices) | no | |
5629
- | display_name | string | no | |
5630
- | can_cancel | boolean | no | |
5631
- | quantity | number | no | |
5632
- | parent_promo_bags | string | no | |
5633
- | applied_promos | [[AppliedPromos](#AppliedPromos)] | no | |
5634
- | bag_configs | [BagConfigs](#BagConfigs) | no | |
5635
- | current_status | string | no | |
5636
- | financial_breakup | [[FinancialBreakup](#FinancialBreakup)] | no | |
5637
- | delivery_address | [PlatformDeliveryAddress](#PlatformDeliveryAddress) | no | |
5638
- | seller_identifier | string | no | |
5639
- | item | [PlatformItem](#PlatformItem) | no | |
5640
- | brand | [OrderBrandName](#OrderBrandName) | no | |
5641
- | gst_details | [BagGST](#BagGST) | no | |
5642
- | entity_type | string | no | |
5643
- | line_number | number | no | |
5644
- | bag_id | number | yes | |
5645
- | can_return | boolean | no | |
5646
- | article | [OrderBagArticle](#OrderBagArticle) | no | |
5457
+ | item_brand | [number] | no | |
5647
5458
 
5648
5459
  ---
5649
5460
 
5650
5461
 
5651
5462
 
5652
5463
 
5653
- #### [OrderDetailsData](#OrderDetailsData)
5464
+ #### [BuyRules](#BuyRules)
5654
5465
 
5655
5466
  | Properties | Type | Nullable | Description |
5656
5467
  | ---------- | ---- | -------- | ----------- |
5657
- | cod_charges | string | no | |
5658
- | ordering_channel | string | no | |
5659
- | ordering_channel_logo | string | no | |
5660
- | order_value | string | no | |
5661
- | source | string | no | |
5662
- | fynd_order_id | string | yes | |
5663
- | order_date | string | no | |
5664
- | tax_details | string | no | |
5665
- | affiliate_id | string | no | |
5468
+ | item_criteria | [ItemCriterias](#ItemCriterias) | no | |
5469
+ | cart_conditions | string | no | |
5666
5470
 
5667
5471
  ---
5668
5472
 
5669
5473
 
5670
5474
 
5671
5475
 
5672
- #### [FulfillingStore](#FulfillingStore)
5476
+ #### [DiscountRules](#DiscountRules)
5673
5477
 
5674
5478
  | Properties | Type | Nullable | Description |
5675
5479
  | ---------- | ---- | -------- | ----------- |
5676
- | code | string | yes | |
5677
- | phone | string | yes | |
5678
- | store_name | string | yes | |
5679
- | city | string | yes | |
5680
- | pincode | string | yes | |
5681
- | address | string | yes | |
5682
- | contact_person | string | yes | |
5683
- | id | string | yes | |
5684
- | meta | string | yes | |
5685
- | country | string | yes | |
5686
- | state | string | yes | |
5687
- | fulfillment_channel | string | yes | |
5480
+ | value | number | no | |
5481
+ | type | string | no | |
5688
5482
 
5689
5483
  ---
5690
5484
 
5691
5485
 
5692
5486
 
5693
5487
 
5694
- #### [ShipmentInfoResponse](#ShipmentInfoResponse)
5488
+ #### [AppliedPromos](#AppliedPromos)
5695
5489
 
5696
5490
  | Properties | Type | Nullable | Description |
5697
5491
  | ---------- | ---- | -------- | ----------- |
5698
- | payments | [ShipmentPayments](#ShipmentPayments) | no | |
5699
- | bag_status_history | [[BagStatusHistory](#BagStatusHistory)] | no | |
5700
- | fyndstore_emp | string | yes | |
5701
- | tracking_list | [[TrackingList](#TrackingList)] | no | |
5702
- | payment_mode | string | no | |
5703
- | lock_status | string | yes | |
5704
- | items | [string] | yes | |
5705
- | vertical | string | no | |
5706
- | operational_status | string | no | |
5707
- | delivery_slot | string | no | |
5708
- | prices | [Prices](#Prices) | no | |
5709
- | status | [ShipmentStatusData](#ShipmentStatusData) | no | |
5710
- | delivery_details | [UserDetailsData](#UserDetailsData) | no | |
5711
- | journey_type | string | no | |
5712
- | ordering_store | string | yes | |
5713
- | is_packaging_order | boolean | yes | |
5714
- | secured_delivery_flag | string | no | |
5715
- | coupon | string | no | |
5716
- | can_cancel | boolean | no | |
5717
- | enable_tracking | boolean | no | |
5718
- | is_fynd_coupon | boolean | yes | |
5719
- | go_green | boolean | no | |
5720
- | shipment_id | string | yes | |
5721
- | due_date | string | no | |
5722
- | company | string | yes | |
5723
- | is_not_fynd_source | boolean | yes | |
5724
- | pay_button | string | no | |
5725
- | order_type | string | yes | |
5726
- | current_shipment_status | string | yes | |
5727
- | shipment_status | string | no | |
5728
- | tracking_url | string | yes | |
5729
- | user_info | string | no | |
5730
- | bank_data | string | no | |
5731
- | dp_details | [DPDetailsData](#DPDetailsData) | no | |
5732
- | delivery_status | [string] | yes | |
5733
- | refund_details | string | no | |
5734
- | picked_date | string | no | |
5735
- | forward_order_status | [string] | no | |
5736
- | enable_dp_tracking | string | no | |
5737
- | shipment_quantity | number | no | |
5738
- | billing_details | [UserDetailsData](#UserDetailsData) | no | |
5739
- | bags | [[OrderBags](#OrderBags)] | no | |
5740
- | packaging_type | string | no | |
5741
- | email_id | string | yes | |
5742
- | total_bags | number | no | |
5743
- | credit_note_id | string | yes | |
5744
- | is_invoiced | boolean | yes | |
5745
- | custom_meta | [string] | no | |
5746
- | can_break | string | yes | |
5747
- | forward_shipment_status | [string] | no | |
5748
- | affiliate_shipment_id | string | yes | |
5749
- | status_progress | number | yes | |
5750
- | is_fynd_store | string | no | |
5751
- | escalation | string | no | |
5752
- | order_status | string | yes | |
5753
- | user_id | string | yes | |
5754
- | total_items | number | no | |
5755
- | gst_details | [GSTDetailsData](#GSTDetailsData) | no | |
5756
- | child_nodes | [string] | no | |
5757
- | replacement_details | string | no | |
5758
- | kirana_store_id | string | no | |
5759
- | priority_text | string | no | |
5760
- | is_pdsr | string | no | |
5761
- | order_created_time | string | no | |
5762
- | order | [OrderDetailsData](#OrderDetailsData) | no | |
5763
- | fulfilling_store | [FulfillingStore](#FulfillingStore) | no | |
5764
- | invoice | string | yes | |
5765
- | mid | string | no | |
5766
- | platform_logo | boolean | yes | |
5767
- | beneficiary_details | boolean | no | |
5768
- | can_return | boolean | no | |
5769
- | refund_text | string | no | |
5770
- | user_agent | string | no | |
5771
- | shipment_images | [string] | no | |
5772
- | forward_tracking_list | [string] | no | |
5492
+ | promotion_type | string | no | |
5493
+ | promotion_name | string | no | |
5494
+ | promo_id | string | no | |
5495
+ | article_quantity | number | no | |
5496
+ | mrp_promotion | boolean | no | |
5497
+ | amount | number | no | |
5498
+ | buy_rules | [[BuyRules](#BuyRules)] | no | |
5499
+ | discount_rules | [[DiscountRules](#DiscountRules)] | no | |
5773
5500
 
5774
5501
  ---
5775
5502
 
5776
5503
 
5777
5504
 
5778
5505
 
5779
- #### [OrderDict](#OrderDict)
5506
+ #### [OrderBrandName](#OrderBrandName)
5780
5507
 
5781
5508
  | Properties | Type | Nullable | Description |
5782
5509
  | ---------- | ---- | -------- | ----------- |
5783
- | prices | [Prices](#Prices) | no | |
5784
- | order_date | string | yes | |
5785
- | fynd_order_id | string | yes | |
5786
- | shipment_count | number | yes | |
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 | |
5787
5516
 
5788
5517
  ---
5789
5518
 
5790
5519
 
5791
5520
 
5792
5521
 
5793
- #### [PlatformShipment](#PlatformShipment)
5522
+ #### [OrderBags](#OrderBags)
5794
5523
 
5795
5524
  | Properties | Type | Nullable | Description |
5796
5525
  | ---------- | ---- | -------- | ----------- |
5797
- | payments | [ShipmentPayments](#ShipmentPayments) | no | |
5798
- | bag_status_history | [[BagStatusHistory](#BagStatusHistory)] | no | |
5799
- | tracking_list | [[TrackingList](#TrackingList)] | no | |
5800
- | payment_mode | string | no | |
5801
- | vertical | string | no | |
5802
- | operational_status | string | no | |
5803
- | delivery_slot | string | no | |
5526
+ | display_name | string | no | |
5527
+ | current_status | [CurrentStatus](#CurrentStatus) | no | |
5528
+ | financial_breakup | [FinancialBreakup](#FinancialBreakup) | no | |
5529
+ | gst_details | [BagGST](#BagGST) | no | |
5530
+ | seller_identifier | string | no | |
5531
+ | article | [OrderBagArticle](#OrderBagArticle) | no | |
5532
+ | can_return | boolean | no | |
5533
+ | delivery_address | [PlatformDeliveryAddress](#PlatformDeliveryAddress) | no | |
5534
+ | bag_configs | [BagConfigs](#BagConfigs) | no | |
5535
+ | quantity | number | no | |
5536
+ | applied_promos | [[AppliedPromos](#AppliedPromos)] | no | |
5537
+ | parent_promo_bags | string | no | |
5538
+ | can_cancel | boolean | no | |
5539
+ | brand | [OrderBrandName](#OrderBrandName) | no | |
5540
+ | entity_type | string | no | |
5804
5541
  | prices | [Prices](#Prices) | no | |
5805
- | status | [ShipmentStatusData](#ShipmentStatusData) | no | |
5806
- | delivery_details | [UserDetailsData](#UserDetailsData) | no | |
5807
- | journey_type | string | no | |
5808
- | coupon | string | no | |
5809
- | shipment_id | string | yes | |
5810
- | shipment_status | string | no | |
5811
- | dp_details | [DPDetailsData](#DPDetailsData) | no | |
5812
- | picked_date | string | no | |
5813
- | enable_dp_tracking | string | no | |
5814
- | shipment_quantity | number | no | |
5815
- | billing_details | [UserDetailsData](#UserDetailsData) | no | |
5816
- | bags | [[OrderBags](#OrderBags)] | no | |
5817
- | packaging_type | string | no | |
5818
- | total_bags | number | no | |
5819
- | custom_meta | [string] | no | |
5820
- | total_items | number | no | |
5821
- | gst_details | [GSTDetailsData](#GSTDetailsData) | no | |
5822
- | priority_text | string | no | |
5823
- | order | [OrderDetailsData](#OrderDetailsData) | no | |
5824
- | fulfilling_store | [FulfillingStore](#FulfillingStore) | no | |
5825
- | platform_logo | string | no | |
5826
- | user_agent | string | no | |
5827
- | shipment_images | [string] | no | |
5542
+ | line_number | number | no | |
5543
+ | item | [PlatformItem](#PlatformItem) | no | |
5544
+ | bag_id | number | yes | |
5545
+ | identifier | string | no | |
5828
5546
 
5829
5547
  ---
5830
5548
 
5831
5549
 
5832
5550
 
5833
5551
 
5834
- #### [ShipmentDetailsResponse](#ShipmentDetailsResponse)
5552
+ #### [OrderingStoreDetails](#OrderingStoreDetails)
5835
5553
 
5836
5554
  | Properties | Type | Nullable | Description |
5837
5555
  | ---------- | ---- | -------- | ----------- |
5838
- | order | [OrderDict](#OrderDict) | no | |
5839
- | success | boolean | yes | |
5840
- | custom_meta | [string] | no | |
5841
- | shipments | [[PlatformShipment](#PlatformShipment)] | no | |
5556
+ | phone | string | yes | |
5557
+ | meta | string | yes | |
5558
+ | pincode | string | yes | |
5559
+ | address | string | yes | |
5560
+ | contact_person | string | yes | |
5561
+ | ordering_store_id | number | yes | |
5562
+ | country | string | yes | |
5563
+ | state | string | yes | |
5564
+ | store_name | string | yes | |
5565
+ | city | string | yes | |
5566
+ | code | string | yes | |
5842
5567
 
5843
5568
  ---
5844
5569
 
5845
5570
 
5846
5571
 
5847
5572
 
5848
- #### [SubLane](#SubLane)
5573
+ #### [UserDetailsData](#UserDetailsData)
5849
5574
 
5850
5575
  | Properties | Type | Nullable | Description |
5851
5576
  | ---------- | ---- | -------- | ----------- |
5852
- | actions | [string] | no | |
5853
- | total_items | number | no | |
5854
- | text | string | no | |
5855
- | value | string | no | |
5856
- | index | number | no | |
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 | |
5857
5585
 
5858
5586
  ---
5859
5587
 
5860
5588
 
5861
5589
 
5862
5590
 
5863
- #### [SuperLane](#SuperLane)
5591
+ #### [FulfillingStore](#FulfillingStore)
5864
5592
 
5865
5593
  | Properties | Type | Nullable | Description |
5866
5594
  | ---------- | ---- | -------- | ----------- |
5867
- | value | string | yes | |
5868
- | total_items | number | no | |
5869
- | options | [[SubLane](#SubLane)] | no | |
5870
- | text | string | yes | |
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 | |
5871
5607
 
5872
5608
  ---
5873
5609
 
5874
5610
 
5875
5611
 
5876
5612
 
5877
- #### [LaneConfigResponse](#LaneConfigResponse)
5613
+ #### [ShipmentTimeStamp](#ShipmentTimeStamp)
5878
5614
 
5879
5615
  | Properties | Type | Nullable | Description |
5880
5616
  | ---------- | ---- | -------- | ----------- |
5881
- | super_lanes | [[SuperLane](#SuperLane)] | no | |
5617
+ | t_min | string | no | |
5618
+ | t_max | string | no | |
5882
5619
 
5883
5620
  ---
5884
5621
 
5885
5622
 
5886
5623
 
5887
5624
 
5888
- #### [PlatformBreakupValues](#PlatformBreakupValues)
5625
+ #### [LockData](#LockData)
5889
5626
 
5890
5627
  | Properties | Type | Nullable | Description |
5891
5628
  | ---------- | ---- | -------- | ----------- |
5892
- | value | string | no | |
5893
- | name | string | no | |
5894
- | display | string | no | |
5629
+ | locked | boolean | no | |
5630
+ | lock_message | string | no | |
5631
+ | mto | boolean | no | |
5895
5632
 
5896
5633
  ---
5897
5634
 
5898
5635
 
5899
5636
 
5900
5637
 
5901
- #### [PlatformChannel](#PlatformChannel)
5638
+ #### [DebugInfo](#DebugInfo)
5902
5639
 
5903
5640
  | Properties | Type | Nullable | Description |
5904
5641
  | ---------- | ---- | -------- | ----------- |
5905
- | name | string | no | |
5906
- | logo | string | no | |
5642
+ | stormbreaker_uuid | string | no | |
5907
5643
 
5908
5644
  ---
5909
5645
 
5910
5646
 
5911
5647
 
5912
5648
 
5913
- #### [PlatformOrderItems](#PlatformOrderItems)
5649
+ #### [EInvoice](#EInvoice)
5914
5650
 
5915
5651
  | Properties | Type | Nullable | Description |
5916
5652
  | ---------- | ---- | -------- | ----------- |
5917
- | payment_mode | string | no | |
5918
- | order_value | number | no | |
5919
- | total_order_value | number | no | |
5920
- | shipments | [[PlatformShipment](#PlatformShipment)] | no | |
5921
- | meta | string | no | |
5922
- | order_created_time | string | no | |
5923
- | order_id | string | no | |
5924
- | user_info | [UserDataInfo](#UserDataInfo) | no | |
5925
- | breakup_values | [[PlatformBreakupValues](#PlatformBreakupValues)] | no | |
5926
- | channel | [PlatformChannel](#PlatformChannel) | no | |
5653
+ | error_code | string | no | |
5654
+ | irn | string | no | |
5655
+ | acknowledge_no | number | no | |
5656
+ | error_message | string | no | |
5657
+ | acknowledge_date | string | no | |
5658
+ | signed_invoice | string | no | |
5659
+ | signed_qr_code | string | no | |
5927
5660
 
5928
5661
  ---
5929
5662
 
5930
5663
 
5931
5664
 
5932
5665
 
5933
- #### [Page](#Page)
5666
+ #### [EinvoiceInfo](#EinvoiceInfo)
5934
5667
 
5935
5668
  | Properties | Type | Nullable | Description |
5936
5669
  | ---------- | ---- | -------- | ----------- |
5937
- | has_previous | boolean | no | |
5938
- | current | number | no | |
5939
- | has_next | boolean | no | |
5940
- | type | string | no | |
5941
- | total | number | no | |
5942
- | size | number | no | |
5670
+ | credit_note | [EInvoice](#EInvoice) | no | |
5671
+ | invoice | [EInvoice](#EInvoice) | no | |
5943
5672
 
5944
5673
  ---
5945
5674
 
5946
5675
 
5947
5676
 
5948
5677
 
5949
- #### [OrderListingResponse](#OrderListingResponse)
5678
+ #### [BuyerDetails](#BuyerDetails)
5950
5679
 
5951
5680
  | Properties | Type | Nullable | Description |
5952
5681
  | ---------- | ---- | -------- | ----------- |
5953
- | items | [[PlatformOrderItems](#PlatformOrderItems)] | no | |
5954
- | message | string | no | |
5955
- | page | [Page](#Page) | no | |
5956
- | success | boolean | no | |
5957
- | total_count | number | no | |
5958
- | lane | string | no | |
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 | |
5959
5689
 
5960
5690
  ---
5961
5691
 
5962
5692
 
5963
5693
 
5964
5694
 
5965
- #### [Options](#Options)
5695
+ #### [Formatted](#Formatted)
5966
5696
 
5967
5697
  | Properties | Type | Nullable | Description |
5968
5698
  | ---------- | ---- | -------- | ----------- |
5969
- | value | number | no | |
5970
- | text | string | no | |
5699
+ | f_min | string | no | |
5700
+ | f_max | string | no | |
5971
5701
 
5972
5702
  ---
5973
5703
 
5974
5704
 
5975
5705
 
5976
5706
 
5977
- #### [MetricsCount](#MetricsCount)
5707
+ #### [ShipmentMeta](#ShipmentMeta)
5978
5708
 
5979
5709
  | Properties | Type | Nullable | Description |
5980
5710
  | ---------- | ---- | -------- | ----------- |
5981
- | value | number | yes | |
5982
- | options | [[Options](#Options)] | no | |
5983
- | text | string | yes | |
5984
- | key | string | yes | |
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 | |
5985
5747
 
5986
5748
  ---
5987
5749
 
5988
5750
 
5989
5751
 
5990
5752
 
5991
- #### [MetricCountResponse](#MetricCountResponse)
5753
+ #### [PDFLinks](#PDFLinks)
5992
5754
 
5993
5755
  | Properties | Type | Nullable | Description |
5994
5756
  | ---------- | ---- | -------- | ----------- |
5995
- | items | [[MetricsCount](#MetricsCount)] | no | |
5757
+ | label_a4 | string | no | |
5758
+ | invoice | string | no | |
5759
+ | b2b | string | no | |
5760
+ | label | string | no | |
5761
+ | invoice_type | string | yes | |
5762
+ | po_invoice | string | no | |
5763
+ | label_a6 | string | no | |
5764
+ | credit_note_url | string | no | |
5765
+ | delivery_challan_a4 | string | no | |
5766
+ | invoice_pos | string | no | |
5767
+ | label_type | string | yes | |
5768
+ | label_pos | string | no | |
5769
+ | invoice_a4 | string | no | |
5770
+ | invoice_a6 | string | no | |
5996
5771
 
5997
5772
  ---
5998
5773
 
5999
5774
 
6000
5775
 
6001
5776
 
6002
- #### [PlatformTrack](#PlatformTrack)
5777
+ #### [AffiliateMeta](#AffiliateMeta)
6003
5778
 
6004
5779
  | Properties | Type | Nullable | Description |
6005
5780
  | ---------- | ---- | -------- | ----------- |
6006
- | updated_time | string | no | |
6007
- | awb | string | no | |
6008
- | reason | string | no | |
6009
- | shipment_type | string | no | |
6010
- | updated_at | string | no | |
6011
- | status | string | no | |
6012
- | raw_status | string | no | |
6013
- | meta | string | no | |
6014
- | account_name | string | no | |
6015
- | last_location_recieved_at | string | no | |
5781
+ | size_level_total_qty | number | no | |
5782
+ | order_item_id | string | no | |
5783
+ | loyalty_discount | number | no | |
5784
+ | is_priority | boolean | no | |
5785
+ | quantity | number | no | |
5786
+ | box_type | string | no | |
5787
+ | employee_discount | number | no | |
5788
+ | channel_shipment_id | string | no | |
5789
+ | due_date | string | no | |
5790
+ | channel_order_id | string | no | |
5791
+ | coupon_code | string | no | |
6016
5792
 
6017
5793
  ---
6018
5794
 
6019
5795
 
6020
5796
 
6021
5797
 
6022
- #### [PlatformShipmentTrack](#PlatformShipmentTrack)
5798
+ #### [AffiliateDetails](#AffiliateDetails)
6023
5799
 
6024
5800
  | Properties | Type | Nullable | Description |
6025
5801
  | ---------- | ---- | -------- | ----------- |
6026
- | meta | string | no | |
6027
- | results | [[PlatformTrack](#PlatformTrack)] | no | |
5802
+ | affiliate_store_id | string | yes | |
5803
+ | ad_id | string | no | |
5804
+ | company_affiliate_tag | string | no | |
5805
+ | shipment_meta | [ShipmentMeta](#ShipmentMeta) | yes | |
5806
+ | affiliate_bag_id | string | yes | |
5807
+ | pdf_links | [PDFLinks](#PDFLinks) | no | |
5808
+ | affiliate_meta | [AffiliateMeta](#AffiliateMeta) | yes | |
5809
+ | affiliate_id | string | no | |
5810
+ | affiliate_order_id | string | yes | |
5811
+ | affiliate_shipment_id | string | yes | |
6028
5812
 
6029
5813
  ---
6030
5814
 
6031
5815
 
6032
5816
 
6033
5817
 
6034
- #### [FiltersResponse](#FiltersResponse)
5818
+ #### [OrderDetailsData](#OrderDetailsData)
6035
5819
 
6036
5820
  | Properties | Type | Nullable | Description |
6037
5821
  | ---------- | ---- | -------- | ----------- |
6038
- | advance | [string] | no | |
5822
+ | order_date | string | no | |
5823
+ | order_value | string | no | |
5824
+ | cod_charges | string | no | |
5825
+ | ordering_channel_logo | string | no | |
5826
+ | affiliate_id | string | no | |
5827
+ | source | string | no | |
5828
+ | tax_details | string | no | |
5829
+ | fynd_order_id | string | yes | |
5830
+ | ordering_channel | string | no | |
6039
5831
 
6040
5832
  ---
6041
5833
 
6042
5834
 
6043
5835
 
6044
5836
 
6045
- #### [Success](#Success)
5837
+ #### [PlatformShipment](#PlatformShipment)
6046
5838
 
6047
5839
  | Properties | Type | Nullable | Description |
6048
5840
  | ---------- | ---- | -------- | ----------- |
6049
- | success | boolean | no | |
5841
+ | shipment_id | string | yes | |
5842
+ | custom_meta | [string] | no | |
5843
+ | shipment_quantity | number | no | |
5844
+ | bag_status_history | [[BagStatusHistory](#BagStatusHistory)] | no | |
5845
+ | tracking_list | [[TrackingList](#TrackingList)] | no | |
5846
+ | dp_details | [DPDetailsData](#DPDetailsData) | no | |
5847
+ | vertical | string | no | |
5848
+ | priority_text | string | no | |
5849
+ | gst_details | [GSTDetailsData](#GSTDetailsData) | no | |
5850
+ | meta | [Meta](#Meta) | no | |
5851
+ | payments | [ShipmentPayments](#ShipmentPayments) | no | |
5852
+ | delivery_slot | string | no | |
5853
+ | invoice | [InvoiceInfo](#InvoiceInfo) | no | |
5854
+ | picked_date | string | no | |
5855
+ | status | [ShipmentStatusData](#ShipmentStatusData) | no | |
5856
+ | platform_logo | string | no | |
5857
+ | shipment_status | string | no | |
5858
+ | bags | [[OrderBags](#OrderBags)] | no | |
5859
+ | ordering_store | [OrderingStoreDetails](#OrderingStoreDetails) | no | |
5860
+ | delivery_details | [UserDetailsData](#UserDetailsData) | no | |
5861
+ | shipment_images | [string] | no | |
5862
+ | user_agent | string | no | |
5863
+ | fulfilling_store | [FulfillingStore](#FulfillingStore) | no | |
5864
+ | lock_status | boolean | no | |
5865
+ | operational_status | string | no | |
5866
+ | affiliate_details | [AffiliateDetails](#AffiliateDetails) | no | |
5867
+ | packaging_type | string | no | |
5868
+ | payment_methods | string | no | |
5869
+ | journey_type | string | no | |
5870
+ | payment_mode | string | no | |
5871
+ | total_items | number | no | |
5872
+ | forward_shipment_id | string | no | |
5873
+ | order | [OrderDetailsData](#OrderDetailsData) | no | |
5874
+ | total_bags | number | no | |
5875
+ | enable_dp_tracking | boolean | no | |
5876
+ | prices | [Prices](#Prices) | no | |
5877
+ | billing_details | [UserDetailsData](#UserDetailsData) | no | |
5878
+ | fulfilment_priority | number | no | |
5879
+ | invoice_id | string | no | |
5880
+ | coupon | string | no | |
5881
+
5882
+ ---
5883
+
5884
+
5885
+
5886
+
5887
+ #### [ShipmentInfoResponse](#ShipmentInfoResponse)
5888
+
5889
+ | Properties | Type | Nullable | Description |
5890
+ | ---------- | ---- | -------- | ----------- |
5891
+ | shipments | [[PlatformShipment](#PlatformShipment)] | no | |
5892
+ | success | boolean | yes | |
6050
5893
  | message | string | no | |
6051
5894
 
6052
5895
  ---
@@ -6054,960 +5897,893 @@ Sms Sent successfully
6054
5897
 
6055
5898
 
6056
5899
 
6057
- #### [OmsReports](#OmsReports)
5900
+ #### [OrderMeta](#OrderMeta)
6058
5901
 
6059
5902
  | Properties | Type | Nullable | Description |
6060
5903
  | ---------- | ---- | -------- | ----------- |
6061
- | report_requested_at | string | no | |
6062
- | report_type | string | no | |
6063
- | report_created_at | string | no | |
6064
- | report_id | string | no | |
6065
- | request_details | string | no | |
6066
- | status | string | no | |
6067
- | report_name | string | no | |
6068
- | s3_key | string | no | |
6069
- | display_name | string | no | |
5904
+ | customer_note | string | no | |
5905
+ | files | [string] | no | |
5906
+ | payment_type | string | no | |
5907
+ | order_child_entities | [string] | no | |
5908
+ | currency_symbol | string | no | |
5909
+ | order_platform | string | no | |
5910
+ | order_tags | [string] | no | |
5911
+ | order_type | string | no | |
5912
+ | ordering_store | number | no | |
5913
+ | comment | string | no | |
5914
+ | cart_id | number | no | |
5915
+ | extra_meta | string | no | |
5916
+ | employee_id | number | no | |
5917
+ | staff | string | no | |
5918
+ | mongo_cart_id | number | no | |
6070
5919
 
6071
5920
  ---
6072
5921
 
6073
5922
 
6074
5923
 
6075
5924
 
6076
- #### [JioCodeUpsertDataSet](#JioCodeUpsertDataSet)
5925
+ #### [OrderDict](#OrderDict)
6077
5926
 
6078
5927
  | Properties | Type | Nullable | Description |
6079
5928
  | ---------- | ---- | -------- | ----------- |
6080
- | item_id | string | no | |
6081
- | jio_code | string | no | |
6082
- | article_id | string | no | |
6083
- | company_id | string | no | |
5929
+ | meta | [OrderMeta](#OrderMeta) | no | |
5930
+ | fynd_order_id | string | yes | |
5931
+ | prices | [Prices](#Prices) | no | |
5932
+ | payment_methods | string | no | |
5933
+ | tax_details | string | no | |
5934
+ | order_date | string | yes | |
6084
5935
 
6085
5936
  ---
6086
5937
 
6087
5938
 
6088
5939
 
6089
5940
 
6090
- #### [JioCodeUpsertPayload](#JioCodeUpsertPayload)
5941
+ #### [ShipmentDetailsResponse](#ShipmentDetailsResponse)
6091
5942
 
6092
5943
  | Properties | Type | Nullable | Description |
6093
5944
  | ---------- | ---- | -------- | ----------- |
6094
- | data | [[JioCodeUpsertDataSet](#JioCodeUpsertDataSet)] | no | |
5945
+ | success | boolean | yes | |
5946
+ | shipments | [[PlatformShipment](#PlatformShipment)] | no | |
5947
+ | order | [OrderDict](#OrderDict) | no | |
6095
5948
 
6096
5949
  ---
6097
5950
 
6098
5951
 
6099
5952
 
6100
5953
 
6101
- #### [NestedErrorSchemaDataSet](#NestedErrorSchemaDataSet)
5954
+ #### [SubLane](#SubLane)
6102
5955
 
6103
5956
  | Properties | Type | Nullable | Description |
6104
5957
  | ---------- | ---- | -------- | ----------- |
5958
+ | text | string | no | |
5959
+ | index | number | no | |
5960
+ | total_items | number | no | |
5961
+ | actions | [string] | no | |
6105
5962
  | value | string | no | |
6106
- | type | string | no | |
6107
- | message | string | no | |
6108
5963
 
6109
5964
  ---
6110
5965
 
6111
5966
 
6112
5967
 
6113
5968
 
6114
- #### [JioCodeUpsertResponse](#JioCodeUpsertResponse)
5969
+ #### [SuperLane](#SuperLane)
6115
5970
 
6116
5971
  | Properties | Type | Nullable | Description |
6117
5972
  | ---------- | ---- | -------- | ----------- |
6118
- | error | [[NestedErrorSchemaDataSet](#NestedErrorSchemaDataSet)] | no | |
6119
- | trace_id | string | no | |
6120
- | identifier | string | no | |
6121
- | success | boolean | no | |
6122
- | data | [string] | no | |
5973
+ | value | string | yes | |
5974
+ | text | string | yes | |
5975
+ | options | [[SubLane](#SubLane)] | no | |
5976
+ | total_items | number | no | |
6123
5977
 
6124
5978
  ---
6125
5979
 
6126
5980
 
6127
5981
 
6128
5982
 
6129
- #### [BulkInvoicingResponse](#BulkInvoicingResponse)
5983
+ #### [LaneConfigResponse](#LaneConfigResponse)
6130
5984
 
6131
5985
  | Properties | Type | Nullable | Description |
6132
5986
  | ---------- | ---- | -------- | ----------- |
6133
- | success | boolean | yes | |
6134
- | message | string | no | |
5987
+ | super_lanes | [[SuperLane](#SuperLane)] | no | |
6135
5988
 
6136
5989
  ---
6137
5990
 
6138
5991
 
6139
5992
 
6140
5993
 
6141
- #### [BulkInvoiceLabelResponse](#BulkInvoiceLabelResponse)
5994
+ #### [Page](#Page)
6142
5995
 
6143
5996
  | Properties | Type | Nullable | Description |
6144
5997
  | ---------- | ---- | -------- | ----------- |
6145
- | invoice_status | string | no | |
6146
- | batch_id | string | yes | |
6147
- | store_name | string | no | |
6148
- | company_id | string | no | |
6149
- | store_code | string | no | |
6150
- | do_invoice_label_generated | boolean | yes | |
6151
- | store_id | string | no | |
6152
- | label | string | no | |
6153
- | invoice | string | no | |
6154
- | data | string | no | |
5998
+ | has_previous | boolean | no | |
5999
+ | total | number | no | |
6000
+ | current | number | no | |
6001
+ | type | string | no | |
6002
+ | has_next | boolean | no | |
6003
+ | size | number | no | |
6155
6004
 
6156
6005
  ---
6157
6006
 
6158
6007
 
6159
6008
 
6160
6009
 
6161
- #### [FileUploadResponse](#FileUploadResponse)
6010
+ #### [PlatformBreakupValues](#PlatformBreakupValues)
6162
6011
 
6163
6012
  | Properties | Type | Nullable | Description |
6164
6013
  | ---------- | ---- | -------- | ----------- |
6165
- | expiry | number | no | |
6166
- | url | string | no | |
6014
+ | value | string | no | |
6015
+ | name | string | no | |
6016
+ | display | string | no | |
6167
6017
 
6168
6018
  ---
6169
6019
 
6170
6020
 
6171
6021
 
6172
6022
 
6173
- #### [URL](#URL)
6023
+ #### [PlatformChannel](#PlatformChannel)
6174
6024
 
6175
6025
  | Properties | Type | Nullable | Description |
6176
6026
  | ---------- | ---- | -------- | ----------- |
6177
- | url | string | no | |
6027
+ | name | string | no | |
6028
+ | logo | string | no | |
6178
6029
 
6179
6030
  ---
6180
6031
 
6181
6032
 
6182
6033
 
6183
6034
 
6184
- #### [FileResponse](#FileResponse)
6035
+ #### [PlatformOrderItems](#PlatformOrderItems)
6185
6036
 
6186
6037
  | Properties | Type | Nullable | Description |
6187
6038
  | ---------- | ---- | -------- | ----------- |
6188
- | content_type | string | no | |
6189
- | file_path | string | no | |
6190
- | tags | [string] | no | |
6191
- | upload | [FileUploadResponse](#FileUploadResponse) | no | |
6192
- | method | string | no | |
6193
- | operation | string | no | |
6194
- | cdn | [URL](#URL) | no | |
6195
- | file_name | string | no | |
6196
- | namespace | string | no | |
6197
- | size | number | no | |
6039
+ | meta | string | no | |
6040
+ | payment_mode | string | no | |
6041
+ | shipments | [[PlatformShipment](#PlatformShipment)] | no | |
6042
+ | breakup_values | [[PlatformBreakupValues](#PlatformBreakupValues)] | no | |
6043
+ | order_created_time | string | no | |
6044
+ | order_value | number | no | |
6045
+ | channel | [PlatformChannel](#PlatformChannel) | no | |
6046
+ | total_order_value | number | no | |
6047
+ | user_info | [UserDataInfo](#UserDataInfo) | no | |
6048
+ | order_id | string | no | |
6198
6049
 
6199
6050
  ---
6200
6051
 
6201
6052
 
6202
6053
 
6203
6054
 
6204
- #### [BulkListingPage](#BulkListingPage)
6055
+ #### [OrderListingResponse](#OrderListingResponse)
6205
6056
 
6206
6057
  | Properties | Type | Nullable | Description |
6207
6058
  | ---------- | ---- | -------- | ----------- |
6208
- | has_previous | boolean | no | |
6209
- | current | number | no | |
6210
- | has_next | boolean | no | |
6211
- | type | string | no | |
6212
- | total | number | no | |
6213
- | size | number | no | |
6059
+ | total_count | number | no | |
6060
+ | page | [Page](#Page) | no | |
6061
+ | message | string | no | |
6062
+ | success | boolean | no | |
6063
+ | lane | string | no | |
6064
+ | items | [[PlatformOrderItems](#PlatformOrderItems)] | no | |
6214
6065
 
6215
6066
  ---
6216
6067
 
6217
6068
 
6218
6069
 
6219
6070
 
6220
- #### [bulkListingData](#bulkListingData)
6071
+ #### [Options](#Options)
6221
6072
 
6222
6073
  | Properties | Type | Nullable | Description |
6223
6074
  | ---------- | ---- | -------- | ----------- |
6224
- | processing | number | no | |
6225
- | successful | number | no | |
6226
- | status | string | no | |
6227
- | file_name | string | no | |
6228
- | batch_id | string | no | |
6229
- | store_name | string | no | |
6230
- | store_code | string | no | |
6231
- | processing_shipments | [string] | no | |
6232
- | company_id | number | no | |
6233
- | failed_shipments | [string] | no | |
6234
- | user_name | string | no | |
6235
- | excel_url | string | no | |
6236
- | id | string | no | |
6237
- | successful_shipments | [string] | no | |
6238
- | user_id | string | no | |
6239
- | failed | number | no | |
6240
- | store_id | number | no | |
6241
- | total | number | no | |
6242
- | uploaded_on | string | no | |
6075
+ | value | number | no | |
6076
+ | text | string | no | |
6243
6077
 
6244
6078
  ---
6245
6079
 
6246
6080
 
6247
6081
 
6248
6082
 
6249
- #### [BulkListingResponse](#BulkListingResponse)
6083
+ #### [MetricsCount](#MetricsCount)
6250
6084
 
6251
6085
  | Properties | Type | Nullable | Description |
6252
6086
  | ---------- | ---- | -------- | ----------- |
6253
- | page | [BulkListingPage](#BulkListingPage) | no | |
6254
- | success | boolean | no | |
6255
- | data | [[bulkListingData](#bulkListingData)] | no | |
6256
- | error | string | no | |
6087
+ | value | number | yes | |
6088
+ | text | string | yes | |
6089
+ | options | [[Options](#Options)] | no | |
6090
+ | key | string | yes | |
6257
6091
 
6258
6092
  ---
6259
6093
 
6260
6094
 
6261
6095
 
6262
6096
 
6263
- #### [DateRange](#DateRange)
6097
+ #### [MetricCountResponse](#MetricCountResponse)
6264
6098
 
6265
6099
  | Properties | Type | Nullable | Description |
6266
6100
  | ---------- | ---- | -------- | ----------- |
6267
- | from_date | string | no | |
6268
- | to_date | string | no | |
6101
+ | items | [[MetricsCount](#MetricsCount)] | no | |
6269
6102
 
6270
6103
  ---
6271
6104
 
6272
6105
 
6273
6106
 
6274
6107
 
6275
- #### [ManifestFilter](#ManifestFilter)
6108
+ #### [PlatformTrack](#PlatformTrack)
6276
6109
 
6277
6110
  | Properties | Type | Nullable | Description |
6278
6111
  | ---------- | ---- | -------- | ----------- |
6279
- | dp_name | string | no | |
6280
- | store_name | string | no | |
6281
- | sales_channel_name | string | no | |
6282
- | stores | string | no | |
6283
- | date_range | [DateRange](#DateRange) | no | |
6284
- | dp_ids | string | no | |
6285
- | sales_channels | string | no | |
6286
- | lane | string | no | |
6112
+ | meta | string | no | |
6113
+ | updated_at | string | no | |
6114
+ | status | string | no | |
6115
+ | last_location_recieved_at | string | no | |
6116
+ | raw_status | string | no | |
6117
+ | updated_time | string | no | |
6118
+ | account_name | string | no | |
6119
+ | awb | string | no | |
6120
+ | reason | string | no | |
6121
+ | shipment_type | string | no | |
6287
6122
 
6288
6123
  ---
6289
6124
 
6290
6125
 
6291
6126
 
6292
6127
 
6293
- #### [GeneratedManifestItem](#GeneratedManifestItem)
6128
+ #### [PlatformShipmentTrack](#PlatformShipmentTrack)
6294
6129
 
6295
6130
  | Properties | Type | Nullable | Description |
6296
6131
  | ---------- | ---- | -------- | ----------- |
6297
- | company_id | number | no | |
6298
- | created_at | string | no | |
6299
- | is_active | boolean | no | |
6300
- | created_by | string | no | |
6301
- | status | string | no | |
6302
- | manifest_id | string | no | |
6303
- | filters | [ManifestFilter](#ManifestFilter) | no | |
6132
+ | meta | string | no | |
6133
+ | results | [[PlatformTrack](#PlatformTrack)] | no | |
6304
6134
 
6305
6135
  ---
6306
6136
 
6307
6137
 
6308
6138
 
6309
6139
 
6310
- #### [ManifestPage](#ManifestPage)
6140
+ #### [FiltersResponse](#FiltersResponse)
6311
6141
 
6312
6142
  | Properties | Type | Nullable | Description |
6313
6143
  | ---------- | ---- | -------- | ----------- |
6314
- | has_previous | boolean | no | |
6315
- | current | string | no | |
6316
- | has_next | boolean | no | |
6317
- | type | string | no | |
6318
- | total | number | no | |
6319
- | size | string | no | |
6144
+ | advance | [string] | no | |
6320
6145
 
6321
6146
  ---
6322
6147
 
6323
6148
 
6324
6149
 
6325
6150
 
6326
- #### [GeneratedManifestResponse](#GeneratedManifestResponse)
6151
+ #### [Success](#Success)
6327
6152
 
6328
6153
  | Properties | Type | Nullable | Description |
6329
6154
  | ---------- | ---- | -------- | ----------- |
6330
- | items | [[GeneratedManifestItem](#GeneratedManifestItem)] | no | |
6331
- | page | [ManifestPage](#ManifestPage) | no | |
6155
+ | success | boolean | no | |
6156
+ | message | string | no | |
6332
6157
 
6333
6158
  ---
6334
6159
 
6335
6160
 
6336
6161
 
6337
6162
 
6338
- #### [ManifestDetailItem](#ManifestDetailItem)
6163
+ #### [OmsReports](#OmsReports)
6339
6164
 
6340
6165
  | Properties | Type | Nullable | Description |
6341
6166
  | ---------- | ---- | -------- | ----------- |
6342
- | shipment_id | string | no | |
6343
- | awb | string | no | |
6344
- | invoice_id | string | no | |
6345
- | order_id | string | no | |
6346
- | item_qty | number | no | |
6167
+ | report_created_at | string | no | |
6168
+ | status | string | no | |
6169
+ | report_name | string | no | |
6170
+ | request_details | string | no | |
6171
+ | report_id | string | no | |
6172
+ | display_name | string | no | |
6173
+ | report_requested_at | string | no | |
6174
+ | s3_key | string | no | |
6175
+ | report_type | string | no | |
6347
6176
 
6348
6177
  ---
6349
6178
 
6350
6179
 
6351
6180
 
6352
6181
 
6353
- #### [ManifestDetailTotalShipmentPricesCount](#ManifestDetailTotalShipmentPricesCount)
6182
+ #### [JioCodeUpsertDataSet](#JioCodeUpsertDataSet)
6354
6183
 
6355
6184
  | Properties | Type | Nullable | Description |
6356
6185
  | ---------- | ---- | -------- | ----------- |
6357
- | total_price | number | no | |
6358
- | shipment_count | number | no | |
6186
+ | company_id | string | no | |
6187
+ | item_id | string | no | |
6188
+ | article_id | string | no | |
6189
+ | jio_code | string | no | |
6359
6190
 
6360
6191
  ---
6361
6192
 
6362
6193
 
6363
6194
 
6364
6195
 
6365
- #### [ManifestDetailMeta](#ManifestDetailMeta)
6196
+ #### [JioCodeUpsertPayload](#JioCodeUpsertPayload)
6366
6197
 
6367
6198
  | Properties | Type | Nullable | Description |
6368
6199
  | ---------- | ---- | -------- | ----------- |
6369
- | filters | [ManifestFilter](#ManifestFilter) | no | |
6370
- | total_shipment_prices_count | [ManifestDetailTotalShipmentPricesCount](#ManifestDetailTotalShipmentPricesCount) | no | |
6200
+ | data | [[JioCodeUpsertDataSet](#JioCodeUpsertDataSet)] | no | |
6371
6201
 
6372
6202
  ---
6373
6203
 
6374
6204
 
6375
6205
 
6376
6206
 
6377
- #### [ManifestDetail](#ManifestDetail)
6207
+ #### [NestedErrorSchemaDataSet](#NestedErrorSchemaDataSet)
6378
6208
 
6379
6209
  | Properties | Type | Nullable | Description |
6380
6210
  | ---------- | ---- | -------- | ----------- |
6381
- | uid | number | no | |
6382
- | company_id | number | no | |
6383
- | created_at | string | no | |
6384
- | user_id | number | no | |
6385
- | is_active | boolean | no | |
6386
- | created_by | string | no | |
6387
- | meta | [ManifestDetailMeta](#ManifestDetailMeta) | no | |
6388
- | status | string | no | |
6389
- | id | number | no | |
6390
- | manifest_id | string | no | |
6391
- | filters | [ManifestFilter](#ManifestFilter) | no | |
6211
+ | value | string | no | |
6212
+ | type | string | no | |
6213
+ | message | string | no | |
6392
6214
 
6393
6215
  ---
6394
6216
 
6395
6217
 
6396
6218
 
6397
6219
 
6398
- #### [ManifestDetailResponse](#ManifestDetailResponse)
6220
+ #### [JioCodeUpsertResponse](#JioCodeUpsertResponse)
6399
6221
 
6400
6222
  | Properties | Type | Nullable | Description |
6401
6223
  | ---------- | ---- | -------- | ----------- |
6402
- | items | [[ManifestDetailItem](#ManifestDetailItem)] | no | |
6403
- | page | [ManifestPage](#ManifestPage) | no | |
6404
- | additional_shipment_count | number | no | |
6405
- | manifest_details | [[ManifestDetail](#ManifestDetail)] | no | |
6224
+ | data | [string] | no | |
6225
+ | success | boolean | no | |
6226
+ | trace_id | string | no | |
6227
+ | identifier | string | no | |
6228
+ | error | [[NestedErrorSchemaDataSet](#NestedErrorSchemaDataSet)] | no | |
6406
6229
 
6407
6230
  ---
6408
6231
 
6409
6232
 
6410
6233
 
6411
6234
 
6412
- #### [QuestionSet](#QuestionSet)
6235
+ #### [BulkInvoicingResponse](#BulkInvoicingResponse)
6413
6236
 
6414
6237
  | Properties | Type | Nullable | Description |
6415
6238
  | ---------- | ---- | -------- | ----------- |
6416
- | id | number | no | |
6417
- | display_name | string | no | |
6239
+ | success | boolean | yes | |
6240
+ | message | string | no | |
6418
6241
 
6419
6242
  ---
6420
6243
 
6421
6244
 
6422
6245
 
6423
6246
 
6424
- #### [Reason](#Reason)
6247
+ #### [BulkInvoiceLabelResponse](#BulkInvoiceLabelResponse)
6425
6248
 
6426
6249
  | Properties | Type | Nullable | Description |
6427
6250
  | ---------- | ---- | -------- | ----------- |
6428
- | id | number | no | |
6429
- | question_set | [[QuestionSet](#QuestionSet)] | no | |
6430
- | qc_type | [string] | no | |
6431
- | display_name | string | no | |
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
+ | store_name | string | no | |
6259
+ | batch_id | string | yes | |
6260
+ | invoice_status | string | no | |
6432
6261
 
6433
6262
  ---
6434
6263
 
6435
6264
 
6436
6265
 
6437
6266
 
6438
- #### [PlatformShipmentReasonsResponse](#PlatformShipmentReasonsResponse)
6267
+ #### [FileUploadResponse](#FileUploadResponse)
6439
6268
 
6440
6269
  | Properties | Type | Nullable | Description |
6441
6270
  | ---------- | ---- | -------- | ----------- |
6442
- | success | boolean | no | |
6443
- | reasons | [[Reason](#Reason)] | no | |
6271
+ | url | string | no | |
6272
+ | expiry | number | no | |
6444
6273
 
6445
6274
  ---
6446
6275
 
6447
6276
 
6448
6277
 
6449
6278
 
6450
- #### [BulkActionPayload](#BulkActionPayload)
6279
+ #### [URL](#URL)
6451
6280
 
6452
6281
  | Properties | Type | Nullable | Description |
6453
6282
  | ---------- | ---- | -------- | ----------- |
6454
- | url | string | yes | |
6283
+ | url | string | no | |
6455
6284
 
6456
6285
  ---
6457
6286
 
6458
6287
 
6459
6288
 
6460
6289
 
6461
- #### [BulkActionResponse](#BulkActionResponse)
6290
+ #### [FileResponse](#FileResponse)
6462
6291
 
6463
6292
  | Properties | Type | Nullable | Description |
6464
6293
  | ---------- | ---- | -------- | ----------- |
6465
- | status | boolean | no | |
6466
- | message | string | no | |
6294
+ | upload | [FileUploadResponse](#FileUploadResponse) | no | |
6295
+ | method | string | no | |
6296
+ | tags | [string] | no | |
6297
+ | file_path | string | no | |
6298
+ | file_name | string | no | |
6299
+ | operation | string | no | |
6300
+ | cdn | [URL](#URL) | no | |
6301
+ | namespace | string | no | |
6302
+ | content_type | string | no | |
6303
+ | size | number | no | |
6467
6304
 
6468
6305
  ---
6469
6306
 
6470
6307
 
6471
6308
 
6472
6309
 
6473
- #### [BulkActionDetailsDataField](#BulkActionDetailsDataField)
6310
+ #### [BulkListingPage](#BulkListingPage)
6474
6311
 
6475
6312
  | Properties | Type | Nullable | Description |
6476
6313
  | ---------- | ---- | -------- | ----------- |
6477
- | batch_id | string | no | |
6478
- | total_shipments_count | number | no | |
6479
- | company_id | string | no | |
6480
- | successful_shipment_ids | [string] | no | |
6481
- | successful_shipments_count | number | no | |
6482
- | processing_shipments_count | number | no | |
6483
- | failed_shipments_count | number | no | |
6314
+ | has_previous | boolean | no | |
6315
+ | total | number | no | |
6316
+ | current | number | no | |
6317
+ | type | string | no | |
6318
+ | has_next | boolean | no | |
6319
+ | size | number | no | |
6484
6320
 
6485
6321
  ---
6486
6322
 
6487
6323
 
6488
6324
 
6489
6325
 
6490
- #### [BulkActionDetailsResponse](#BulkActionDetailsResponse)
6326
+ #### [bulkListingData](#bulkListingData)
6491
6327
 
6492
6328
  | Properties | Type | Nullable | Description |
6493
6329
  | ---------- | ---- | -------- | ----------- |
6494
- | error | [string] | no | |
6330
+ | failed_shipments | [string] | no | |
6331
+ | successful_shipments | [string] | no | |
6332
+ | file_name | string | no | |
6333
+ | total | number | no | |
6334
+ | store_code | string | no | |
6495
6335
  | user_id | string | no | |
6496
- | status | boolean | no | |
6497
- | failed_records | [string] | no | |
6498
- | message | string | no | |
6499
- | uploaded_by | string | no | |
6336
+ | processing | number | no | |
6337
+ | excel_url | string | no | |
6338
+ | status | string | no | |
6339
+ | id | string | no | |
6500
6340
  | uploaded_on | string | no | |
6501
- | success | string | no | |
6502
- | data | [[BulkActionDetailsDataField](#BulkActionDetailsDataField)] | 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 | |
6503
6349
 
6504
6350
  ---
6505
6351
 
6506
6352
 
6507
6353
 
6508
6354
 
6509
- #### [ArticleDetails](#ArticleDetails)
6355
+ #### [BulkListingResponse](#BulkListingResponse)
6510
6356
 
6511
6357
  | Properties | Type | Nullable | Description |
6512
6358
  | ---------- | ---- | -------- | ----------- |
6513
- | status | string | no | |
6514
-
6359
+ | success | boolean | no | |
6360
+ | error | string | no | |
6361
+ | page | [BulkListingPage](#BulkListingPage) | no | |
6362
+ | data | [[bulkListingData](#bulkListingData)] | no | |
6363
+
6515
6364
  ---
6516
6365
 
6517
6366
 
6518
6367
 
6519
6368
 
6520
- #### [Dates](#Dates)
6369
+ #### [QuestionSet](#QuestionSet)
6521
6370
 
6522
6371
  | Properties | Type | Nullable | Description |
6523
6372
  | ---------- | ---- | -------- | ----------- |
6524
- | delivery_date | any | no | |
6525
- | order_created | string | no | |
6373
+ | display_name | string | no | |
6374
+ | id | number | no | |
6526
6375
 
6527
6376
  ---
6528
6377
 
6529
6378
 
6530
6379
 
6531
6380
 
6532
- #### [B2BPODetails](#B2BPODetails)
6381
+ #### [Reason](#Reason)
6533
6382
 
6534
6383
  | Properties | Type | Nullable | Description |
6535
6384
  | ---------- | ---- | -------- | ----------- |
6536
- | docker_number | string | no | |
6537
- | po_line_amount | number | no | |
6538
- | item_base_price | number | no | |
6539
- | partial_can_ret | boolean | no | |
6540
- | total_gst_percentage | number | no | |
6541
- | po_tax_amount | number | no | |
6385
+ | question_set | [[QuestionSet](#QuestionSet)] | no | |
6386
+ | display_name | string | no | |
6387
+ | id | number | no | |
6388
+ | qc_type | [string] | no | |
6542
6389
 
6543
6390
  ---
6544
6391
 
6545
6392
 
6546
6393
 
6547
6394
 
6548
- #### [BagMeta](#BagMeta)
6395
+ #### [PlatformShipmentReasonsResponse](#PlatformShipmentReasonsResponse)
6549
6396
 
6550
6397
  | Properties | Type | Nullable | Description |
6551
6398
  | ---------- | ---- | -------- | ----------- |
6552
- | b2b_po_details | [B2BPODetails](#B2BPODetails) | no | |
6399
+ | success | boolean | no | |
6400
+ | reasons | [[Reason](#Reason)] | no | |
6553
6401
 
6554
6402
  ---
6555
6403
 
6556
6404
 
6557
6405
 
6558
6406
 
6559
- #### [BagReturnableCancelableStatus](#BagReturnableCancelableStatus)
6407
+ #### [BulkActionPayload](#BulkActionPayload)
6560
6408
 
6561
6409
  | Properties | Type | Nullable | Description |
6562
6410
  | ---------- | ---- | -------- | ----------- |
6563
- | enable_tracking | boolean | yes | |
6564
- | can_be_cancelled | boolean | yes | |
6565
- | is_customer_return_allowed | boolean | yes | |
6566
- | is_active | boolean | yes | |
6567
- | is_returnable | boolean | yes | |
6411
+ | url | string | yes | |
6568
6412
 
6569
6413
  ---
6570
6414
 
6571
6415
 
6572
6416
 
6573
6417
 
6574
- #### [EInvoicePortalDetails](#EInvoicePortalDetails)
6418
+ #### [BulkActionResponse](#BulkActionResponse)
6575
6419
 
6576
6420
  | Properties | Type | Nullable | Description |
6577
6421
  | ---------- | ---- | -------- | ----------- |
6578
- | user | string | no | |
6579
- | username | string | no | |
6580
- | password | string | no | |
6422
+ | status | boolean | no | |
6423
+ | message | string | no | |
6581
6424
 
6582
6425
  ---
6583
6426
 
6584
6427
 
6585
6428
 
6586
6429
 
6587
- #### [Document](#Document)
6430
+ #### [BulkActionDetailsDataField](#BulkActionDetailsDataField)
6588
6431
 
6589
6432
  | Properties | Type | Nullable | Description |
6590
6433
  | ---------- | ---- | -------- | ----------- |
6591
- | url | string | no | |
6592
- | legal_name | string | yes | |
6593
- | verified | boolean | yes | |
6594
- | value | string | yes | |
6595
- | ds_type | string | yes | |
6434
+ | failed_shipments_count | number | no | |
6435
+ | successful_shipment_ids | [string] | no | |
6436
+ | processing_shipments_count | number | no | |
6437
+ | company_id | string | no | |
6438
+ | successful_shipments_count | number | no | |
6439
+ | batch_id | string | no | |
6440
+ | total_shipments_count | number | no | |
6596
6441
 
6597
6442
  ---
6598
6443
 
6599
6444
 
6600
6445
 
6601
6446
 
6602
- #### [StoreDocuments](#StoreDocuments)
6447
+ #### [BulkActionDetailsResponse](#BulkActionDetailsResponse)
6603
6448
 
6604
6449
  | Properties | Type | Nullable | Description |
6605
6450
  | ---------- | ---- | -------- | ----------- |
6606
- | gst | [Document](#Document) | no | |
6451
+ | uploaded_by | string | no | |
6452
+ | user_id | string | no | |
6453
+ | data | [[BulkActionDetailsDataField](#BulkActionDetailsDataField)] | no | |
6454
+ | status | boolean | no | |
6455
+ | failed_records | [string] | no | |
6456
+ | message | string | no | |
6457
+ | success | string | no | |
6458
+ | error | [string] | no | |
6459
+ | uploaded_on | string | no | |
6607
6460
 
6608
6461
  ---
6609
6462
 
6610
6463
 
6611
6464
 
6612
6465
 
6613
- #### [StoreEwaybill](#StoreEwaybill)
6466
+ #### [BagGSTDetails](#BagGSTDetails)
6614
6467
 
6615
6468
  | Properties | Type | Nullable | Description |
6616
6469
  | ---------- | ---- | -------- | ----------- |
6617
- | enabled | boolean | no | |
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 | |
6618
6486
 
6619
6487
  ---
6620
6488
 
6621
6489
 
6622
6490
 
6623
6491
 
6624
- #### [StoreEinvoice](#StoreEinvoice)
6492
+ #### [B2BPODetails](#B2BPODetails)
6625
6493
 
6626
6494
  | Properties | Type | Nullable | Description |
6627
6495
  | ---------- | ---- | -------- | ----------- |
6628
- | user | string | no | |
6629
- | enabled | boolean | yes | |
6630
- | username | string | no | |
6631
- | password | string | no | |
6496
+ | po_tax_amount | number | no | |
6497
+ | docker_number | string | no | |
6498
+ | total_gst_percentage | number | no | |
6499
+ | po_line_amount | number | no | |
6500
+ | item_base_price | number | no | |
6501
+ | partial_can_ret | boolean | no | |
6632
6502
 
6633
6503
  ---
6634
6504
 
6635
6505
 
6636
6506
 
6637
6507
 
6638
- #### [StoreGstCredentials](#StoreGstCredentials)
6508
+ #### [BagMeta](#BagMeta)
6639
6509
 
6640
6510
  | Properties | Type | Nullable | Description |
6641
6511
  | ---------- | ---- | -------- | ----------- |
6642
- | e_waybill | [StoreEwaybill](#StoreEwaybill) | no | |
6643
- | e_invoice | [StoreEinvoice](#StoreEinvoice) | no | |
6512
+ | b2b_po_details | [B2BPODetails](#B2BPODetails) | no | |
6644
6513
 
6645
6514
  ---
6646
6515
 
6647
6516
 
6648
6517
 
6649
6518
 
6650
- #### [StoreMeta](#StoreMeta)
6519
+ #### [ReturnConfig](#ReturnConfig)
6651
6520
 
6652
6521
  | Properties | Type | Nullable | Description |
6653
6522
  | ---------- | ---- | -------- | ----------- |
6654
- | einvoice_portal_details | [EInvoicePortalDetails](#EInvoicePortalDetails) | no | |
6655
- | ewaybill_portal_details | string | no | |
6656
- | documents | [StoreDocuments](#StoreDocuments) | no | |
6657
- | additional_contact_details | string | no | |
6658
- | notification_emails | [string] | no | |
6659
- | stage | string | yes | |
6660
- | timing | [string] | no | |
6661
- | gst_credentials | [StoreGstCredentials](#StoreGstCredentials) | yes | |
6662
- | product_return_config | string | no | |
6663
- | display_name | string | yes | |
6664
- | gst_number | string | no | |
6523
+ | time | number | no | |
6524
+ | returnable | boolean | no | |
6525
+ | unit | string | no | |
6665
6526
 
6666
6527
  ---
6667
6528
 
6668
6529
 
6669
6530
 
6670
6531
 
6671
- #### [StoreAddress](#StoreAddress)
6532
+ #### [Weight](#Weight)
6672
6533
 
6673
6534
  | Properties | Type | Nullable | Description |
6674
6535
  | ---------- | ---- | -------- | ----------- |
6675
- | address_category | string | yes | |
6676
- | created_at | string | yes | |
6677
- | email | string | no | |
6678
- | address2 | string | no | |
6679
- | contact_person | string | yes | |
6680
- | address1 | string | yes | |
6681
- | country_code | string | yes | |
6682
- | city | string | yes | |
6683
- | pincode | number | yes | |
6684
- | updated_at | string | yes | |
6685
- | address_type | string | yes | |
6686
- | area | string | no | |
6687
- | state | string | yes | |
6688
- | landmark | string | no | |
6689
- | longitude | number | yes | |
6690
- | latitude | number | yes | |
6691
- | country | string | yes | |
6692
- | phone | string | yes | |
6693
- | version | string | no | |
6536
+ | is_default | boolean | no | |
6537
+ | shipping | number | no | |
6538
+ | unit | string | no | |
6694
6539
 
6695
6540
  ---
6696
6541
 
6697
6542
 
6698
6543
 
6699
6544
 
6700
- #### [Store](#Store)
6545
+ #### [Article](#Article)
6701
6546
 
6702
6547
  | Properties | Type | Nullable | Description |
6703
6548
  | ---------- | ---- | -------- | ----------- |
6549
+ | a_set | string | no | |
6550
+ | _id | string | yes | |
6551
+ | raw_meta | any | no | |
6552
+ | identifiers | [Identifier](#Identifier) | yes | |
6553
+ | seller_identifier | string | yes | |
6554
+ | uid | string | yes | |
6555
+ | child_details | string | no | |
6556
+ | return_config | [ReturnConfig](#ReturnConfig) | no | |
6557
+ | dimensions | [Dimensions](#Dimensions) | no | |
6558
+ | weight | [Weight](#Weight) | no | |
6559
+ | esp_modified | any | no | |
6560
+ | is_set | boolean | no | |
6561
+ | size | string | yes | |
6704
6562
  | code | string | no | |
6705
- | created_at | string | yes | |
6706
- | store_active_from | string | no | |
6707
- | alohomora_user_id | number | no | |
6708
- | mall_area | string | no | |
6709
- | order_integration_id | string | no | |
6710
- | address2 | string | no | |
6711
- | contact_person | string | yes | |
6712
- | address1 | string | yes | |
6713
- | meta | [StoreMeta](#StoreMeta) | yes | |
6714
- | packaging_material_count | number | no | |
6715
- | city | string | yes | |
6716
- | parent_store_id | number | no | |
6717
- | pincode | string | yes | |
6718
- | is_enabled_for_recon | boolean | no | |
6719
- | is_active | boolean | no | |
6720
- | updated_at | string | no | |
6721
- | state | string | yes | |
6722
- | brand_id | any | no | |
6723
- | company_id | number | yes | |
6724
- | vat_no | string | no | |
6725
- | location_type | string | yes | |
6726
- | longitude | number | yes | |
6727
- | name | string | yes | |
6728
- | latitude | number | yes | |
6729
- | store_email | string | yes | |
6730
- | login_username | string | yes | |
6731
- | country | string | yes | |
6732
- | brand_store_tags | [string] | no | |
6733
- | store_address_json | [StoreAddress](#StoreAddress) | no | |
6734
- | s_id | string | yes | |
6735
- | is_archived | boolean | no | |
6736
- | phone | number | yes | |
6737
- | mall_name | string | no | |
6738
- | fulfillment_channel | string | yes | |
6739
6563
 
6740
6564
  ---
6741
6565
 
6742
6566
 
6743
6567
 
6744
6568
 
6745
- #### [AffiliateMeta](#AffiliateMeta)
6569
+ #### [BagReturnableCancelableStatus](#BagReturnableCancelableStatus)
6746
6570
 
6747
6571
  | Properties | Type | Nullable | Description |
6748
6572
  | ---------- | ---- | -------- | ----------- |
6749
- | loyalty_discount | number | no | |
6750
- | channel_order_id | string | no | |
6751
- | channel_shipment_id | string | no | |
6752
- | quantity | number | no | |
6753
- | due_date | string | no | |
6754
- | is_priority | boolean | no | |
6755
- | size_level_total_qty | number | no | |
6756
- | box_type | string | no | |
6757
- | coupon_code | string | no | |
6758
- | employee_discount | number | no | |
6759
- | order_item_id | string | no | |
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 | |
6760
6578
 
6761
6579
  ---
6762
6580
 
6763
6581
 
6764
6582
 
6765
6583
 
6766
- #### [AffiliateBagDetails](#AffiliateBagDetails)
6584
+ #### [ArticleDetails](#ArticleDetails)
6767
6585
 
6768
6586
  | Properties | Type | Nullable | Description |
6769
6587
  | ---------- | ---- | -------- | ----------- |
6770
- | affiliate_order_id | string | yes | |
6771
- | loyalty_discount | number | no | |
6772
- | affiliate_bag_id | string | yes | |
6773
- | employee_discount | number | no | |
6774
- | affiliate_meta | [AffiliateMeta](#AffiliateMeta) | yes | |
6588
+ | status | string | no | |
6775
6589
 
6776
6590
  ---
6777
6591
 
6778
6592
 
6779
6593
 
6780
6594
 
6781
- #### [PDFLinks](#PDFLinks)
6595
+ #### [Document](#Document)
6782
6596
 
6783
6597
  | Properties | Type | Nullable | Description |
6784
6598
  | ---------- | ---- | -------- | ----------- |
6785
- | invoice_a4 | string | no | |
6786
- | b2b | string | no | |
6787
- | invoice_a6 | string | no | |
6788
- | invoice_pos | string | no | |
6789
- | label_a4 | string | no | |
6790
- | label_a6 | string | no | |
6791
- | label_pos | string | no | |
6792
- | label | string | no | |
6793
- | invoice | string | no | |
6794
- | label_type | string | yes | |
6795
- | invoice_type | string | yes | |
6796
- | po_invoice | string | no | |
6797
- | credit_note_url | string | no | |
6599
+ | ds_type | string | yes | |
6600
+ | legal_name | string | yes | |
6601
+ | url | string | no | |
6602
+ | verified | boolean | yes | |
6603
+ | value | string | yes | |
6798
6604
 
6799
6605
  ---
6800
6606
 
6801
6607
 
6802
6608
 
6803
6609
 
6804
- #### [EInvoice](#EInvoice)
6610
+ #### [StoreDocuments](#StoreDocuments)
6805
6611
 
6806
6612
  | Properties | Type | Nullable | Description |
6807
6613
  | ---------- | ---- | -------- | ----------- |
6808
- | irn | string | no | |
6809
- | error_message | string | no | |
6810
- | acknowledge_no | number | no | |
6811
- | error_code | string | no | |
6812
- | signed_invoice | string | no | |
6813
- | signed_qr_code | string | no | |
6814
- | acknowledge_date | string | no | |
6614
+ | gst | [Document](#Document) | no | |
6815
6615
 
6816
6616
  ---
6817
6617
 
6818
6618
 
6819
6619
 
6820
6620
 
6821
- #### [EinvoiceInfo](#EinvoiceInfo)
6621
+ #### [EInvoicePortalDetails](#EInvoicePortalDetails)
6822
6622
 
6823
6623
  | Properties | Type | Nullable | Description |
6824
6624
  | ---------- | ---- | -------- | ----------- |
6825
- | credit_note | [EInvoice](#EInvoice) | no | |
6826
- | invoice | [EInvoice](#EInvoice) | no | |
6827
-
6828
- ---
6829
-
6830
-
6831
-
6832
-
6833
- #### [Formatted](#Formatted)
6834
-
6835
- | Properties | Type | Nullable | Description |
6836
- | ---------- | ---- | -------- | ----------- |
6837
- | f_min | string | no | |
6838
- | f_max | string | no | |
6625
+ | user | string | no | |
6626
+ | password | string | no | |
6627
+ | username | string | no | |
6839
6628
 
6840
6629
  ---
6841
6630
 
6842
6631
 
6843
6632
 
6844
6633
 
6845
- #### [ShipmentTimeStamp](#ShipmentTimeStamp)
6634
+ #### [StoreEwaybill](#StoreEwaybill)
6846
6635
 
6847
6636
  | Properties | Type | Nullable | Description |
6848
6637
  | ---------- | ---- | -------- | ----------- |
6849
- | t_max | string | no | |
6850
- | t_min | string | no | |
6638
+ | enabled | boolean | no | |
6851
6639
 
6852
6640
  ---
6853
6641
 
6854
6642
 
6855
6643
 
6856
6644
 
6857
- #### [DebugInfo](#DebugInfo)
6645
+ #### [StoreEinvoice](#StoreEinvoice)
6858
6646
 
6859
6647
  | Properties | Type | Nullable | Description |
6860
6648
  | ---------- | ---- | -------- | ----------- |
6861
- | stormbreaker_uuid | string | no | |
6649
+ | user | string | no | |
6650
+ | password | string | no | |
6651
+ | enabled | boolean | yes | |
6652
+ | username | string | no | |
6862
6653
 
6863
6654
  ---
6864
6655
 
6865
6656
 
6866
6657
 
6867
6658
 
6868
- #### [BuyerDetails](#BuyerDetails)
6659
+ #### [StoreGstCredentials](#StoreGstCredentials)
6869
6660
 
6870
6661
  | Properties | Type | Nullable | Description |
6871
6662
  | ---------- | ---- | -------- | ----------- |
6872
- | gstin | string | yes | |
6873
- | city | string | yes | |
6874
- | pincode | number | yes | |
6875
- | name | string | yes | |
6876
- | address | string | yes | |
6877
- | ajio_site_id | string | no | |
6878
- | state | string | yes | |
6663
+ | e_waybill | [StoreEwaybill](#StoreEwaybill) | no | |
6664
+ | e_invoice | [StoreEinvoice](#StoreEinvoice) | no | |
6879
6665
 
6880
6666
  ---
6881
6667
 
6882
6668
 
6883
6669
 
6884
6670
 
6885
- #### [LockData](#LockData)
6671
+ #### [StoreMeta](#StoreMeta)
6886
6672
 
6887
6673
  | Properties | Type | Nullable | Description |
6888
6674
  | ---------- | ---- | -------- | ----------- |
6889
- | lock_message | string | no | |
6890
- | mto | boolean | no | |
6891
- | locked | boolean | no | |
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 | |
6892
6686
 
6893
6687
  ---
6894
6688
 
6895
6689
 
6896
6690
 
6897
6691
 
6898
- #### [ShipmentMeta](#ShipmentMeta)
6692
+ #### [StoreAddress](#StoreAddress)
6899
6693
 
6900
6694
  | Properties | Type | Nullable | Description |
6901
6695
  | ---------- | ---- | -------- | ----------- |
6902
- | dp_sort_key | string | no | |
6903
- | assign_dp_from_sb | boolean | no | |
6904
- | dp_name | string | no | |
6905
- | return_affiliate_order_id | string | no | |
6906
- | box_type | string | no | |
6907
- | b2c_buyer_details | string | no | |
6908
- | shipment_weight | number | no | |
6909
- | return_details | string | no | |
6910
- | forward_affiliate_order_id | string | no | |
6911
- | due_date | string | no | |
6912
- | einvoice_info | [EinvoiceInfo](#EinvoiceInfo) | no | |
6913
- | shipment_volumetric_weight | number | no | |
6914
- | order_type | string | no | |
6915
- | fulfilment_priority_text | string | no | |
6916
- | return_affiliate_shipment_id | string | no | |
6917
- | dp_id | string | no | |
6918
- | weight | number | yes | |
6919
- | store_invoice_updated_date | string | no | |
6920
- | dp_options | string | no | |
6921
- | same_store_available | boolean | yes | |
6922
- | auto_trigger_dp_assignment_acf | boolean | yes | |
6923
- | ewaybill_info | string | no | |
6924
- | return_store_node | number | no | |
6925
- | po_number | string | no | |
6926
- | formatted | [Formatted](#Formatted) | no | |
6927
- | bag_weight | string | no | |
6928
- | timestamp | [ShipmentTimeStamp](#ShipmentTimeStamp) | no | |
6929
- | debug_info | [DebugInfo](#DebugInfo) | no | |
6930
- | forward_affiliate_shipment_id | string | no | |
6931
- | b2b_buyer_details | [BuyerDetails](#BuyerDetails) | no | |
6932
- | awb_number | string | no | |
6933
- | return_awb_number | string | no | |
6934
- | marketplace_store_id | string | no | |
6935
- | external | string | no | |
6936
- | packaging_name | string | no | |
6937
- | lock_data | [LockData](#LockData) | no | |
6696
+ | phone | string | yes | |
6697
+ | email | string | no | |
6698
+ | pincode | number | yes | |
6699
+ | country_code | string | yes | |
6700
+ | updated_at | string | yes | |
6701
+ | version | string | no | |
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 | |
6938
6715
 
6939
6716
  ---
6940
6717
 
6941
6718
 
6942
6719
 
6943
6720
 
6944
- #### [AffiliateDetails](#AffiliateDetails)
6721
+ #### [Store](#Store)
6945
6722
 
6946
6723
  | Properties | Type | Nullable | Description |
6947
6724
  | ---------- | ---- | -------- | ----------- |
6948
- | affiliate_store_id | string | yes | |
6949
- | affiliate_order_id | string | yes | |
6950
- | ad_id | string | no | |
6951
- | affiliate_shipment_id | string | yes | |
6952
- | affiliate_bag_id | string | yes | |
6953
- | pdf_links | [PDFLinks](#PDFLinks) | no | |
6954
- | company_affiliate_tag | string | no | |
6955
- | shipment_meta | [ShipmentMeta](#ShipmentMeta) | yes | |
6956
- | affiliate_id | string | no | |
6957
- | affiliate_meta | [AffiliateMeta](#AffiliateMeta) | yes | |
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 | |
6958
6760
 
6959
6761
  ---
6960
6762
 
6961
6763
 
6962
6764
 
6963
6765
 
6964
- #### [Attributes](#Attributes)
6766
+ #### [AffiliateBagDetails](#AffiliateBagDetails)
6965
6767
 
6966
6768
  | Properties | Type | Nullable | Description |
6967
6769
  | ---------- | ---- | -------- | ----------- |
6968
- | essential | string | no | |
6969
- | name | string | no | |
6970
- | marketer_address | string | no | |
6971
- | gender | [string] | no | |
6972
- | primary_color | string | no | |
6973
- | brand_name | string | no | |
6974
- | marketer_name | string | no | |
6975
- | primary_material | string | no | |
6976
- | primary_color_hex | string | no | |
6770
+ | affiliate_bag_id | string | yes | |
6771
+ | loyalty_discount | number | no | |
6772
+ | affiliate_meta | [AffiliateMeta](#AffiliateMeta) | yes | |
6773
+ | employee_discount | number | no | |
6774
+ | affiliate_order_id | string | yes | |
6977
6775
 
6978
6776
  ---
6979
6777
 
6980
6778
 
6981
6779
 
6982
6780
 
6983
- #### [Item](#Item)
6781
+ #### [Dates](#Dates)
6984
6782
 
6985
6783
  | Properties | Type | Nullable | Description |
6986
6784
  | ---------- | ---- | -------- | ----------- |
6987
- | code | string | no | |
6988
- | image | [string] | yes | |
6989
- | l1_category | [string] | no | |
6990
- | meta | string | no | |
6991
- | item_id | number | yes | |
6992
- | l3_category_name | string | no | |
6993
- | can_return | boolean | no | |
6994
- | can_cancel | boolean | no | |
6995
- | l2_category | [string] | no | |
6996
- | department_id | number | no | |
6997
- | l2_category_id | number | no | |
6998
- | brand_id | number | yes | |
6999
- | webstore_product_url | string | no | |
7000
- | color | string | no | |
7001
- | name | string | yes | |
7002
- | attributes | [Attributes](#Attributes) | yes | |
7003
- | l3_category | number | no | |
7004
- | gender | string | no | |
7005
- | branch_url | string | no | |
7006
- | last_updated_at | string | no | |
7007
- | size | string | yes | |
7008
- | brand | string | yes | |
7009
- | slug_key | string | yes | |
7010
- | l1_category_id | number | no | |
6785
+ | delivery_date | any | no | |
6786
+ | order_created | string | no | |
7011
6787
 
7012
6788
  ---
7013
6789
 
@@ -7018,110 +6794,72 @@ Sms Sent successfully
7018
6794
 
7019
6795
  | Properties | Type | Nullable | Description |
7020
6796
  | ---------- | ---- | -------- | ----------- |
7021
- | brand_id | number | yes | |
7022
- | company | string | yes | |
7023
- | pickup_location | string | no | |
6797
+ | created_on | number | no | |
6798
+ | credit_note_expiry_days | number | no | |
6799
+ | script_last_ran | string | no | |
7024
6800
  | invoice_prefix | string | no | |
7025
- | start_date | string | no | |
7026
- | is_virtual_invoice | boolean | no | |
7027
6801
  | modified_on | number | no | |
7028
- | script_last_ran | string | no | |
6802
+ | pickup_location | string | no | |
6803
+ | start_date | string | no | |
7029
6804
  | brand_name | string | yes | |
7030
- | created_on | number | no | |
7031
- | credit_note_allowed | boolean | no | |
6805
+ | company | string | yes | |
7032
6806
  | logo | string | no | |
7033
- | credit_note_expiry_days | number | no | |
7034
-
7035
- ---
7036
-
7037
-
7038
-
7039
-
7040
- #### [BagGSTDetails](#BagGSTDetails)
7041
-
7042
- | Properties | Type | Nullable | Description |
7043
- | ---------- | ---- | -------- | ----------- |
7044
- | cgst_gst_fee | string | yes | |
7045
- | is_default_hsn_code | boolean | no | |
7046
- | cgst_tax_percentage | number | yes | |
7047
- | igst_gst_fee | string | yes | |
7048
- | sgst_gst_fee | string | yes | |
7049
- | gst_tax_percentage | number | yes | |
7050
- | gst_tag | string | yes | |
7051
- | brand_calculated_amount | number | yes | |
7052
- | gst_fee | number | yes | |
7053
- | value_of_good | number | yes | |
7054
- | igst_tax_percentage | number | yes | |
7055
- | sgst_tax_percentage | number | yes | |
7056
- | gstin_code | string | no | |
7057
- | tax_collected_at_source | number | yes | |
7058
- | hsn_code_id | string | yes | |
7059
- | hsn_code | string | yes | |
7060
-
7061
- ---
7062
-
7063
-
7064
-
7065
-
7066
- #### [ReturnConfig](#ReturnConfig)
7067
-
7068
- | Properties | Type | Nullable | Description |
7069
- | ---------- | ---- | -------- | ----------- |
7070
- | unit | string | no | |
7071
- | time | number | no | |
7072
- | returnable | boolean | no | |
7073
-
7074
- ---
7075
-
7076
-
7077
-
7078
-
7079
- #### [Weight](#Weight)
7080
-
7081
- | Properties | Type | Nullable | Description |
7082
- | ---------- | ---- | -------- | ----------- |
7083
- | is_default | boolean | no | |
7084
- | unit | string | no | |
7085
- | shipping | number | no | |
6807
+ | brand_id | number | yes | |
6808
+ | credit_note_allowed | boolean | no | |
6809
+ | is_virtual_invoice | boolean | no | |
7086
6810
 
7087
6811
  ---
7088
6812
 
7089
6813
 
7090
6814
 
7091
6815
 
7092
- #### [Dimensions](#Dimensions)
6816
+ #### [Attributes](#Attributes)
7093
6817
 
7094
- | Properties | Type | Nullable | Description |
7095
- | ---------- | ---- | -------- | ----------- |
7096
- | unit | string | no | |
7097
- | height | number | no | |
7098
- | length | number | no | |
7099
- | is_default | boolean | no | |
7100
- | width | number | no | |
6818
+ | Properties | Type | Nullable | Description |
6819
+ | ---------- | ---- | -------- | ----------- |
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 | |
7101
6829
 
7102
6830
  ---
7103
6831
 
7104
6832
 
7105
6833
 
7106
6834
 
7107
- #### [Article](#Article)
6835
+ #### [Item](#Item)
7108
6836
 
7109
6837
  | Properties | Type | Nullable | Description |
7110
6838
  | ---------- | ---- | -------- | ----------- |
7111
- | child_details | string | no | |
7112
- | _id | string | yes | |
6839
+ | color | string | no | |
6840
+ | name | string | yes | |
6841
+ | last_updated_at | string | no | |
6842
+ | department_id | number | no | |
6843
+ | l2_category | [string] | no | |
6844
+ | webstore_product_url | string | no | |
6845
+ | l1_category_id | number | no | |
6846
+ | meta | string | no | |
6847
+ | gender | string | no | |
6848
+ | can_return | boolean | no | |
6849
+ | attributes | [Attributes](#Attributes) | yes | |
6850
+ | item_id | number | yes | |
6851
+ | can_cancel | boolean | no | |
6852
+ | image | [string] | yes | |
6853
+ | l3_category | number | no | |
6854
+ | brand | string | yes | |
7113
6855
  | code | string | no | |
7114
- | uid | string | yes | |
7115
- | identifiers | [Identifier](#Identifier) | yes | |
7116
- | is_set | boolean | no | |
7117
- | return_config | [ReturnConfig](#ReturnConfig) | no | |
7118
- | raw_meta | any | no | |
7119
- | weight | [Weight](#Weight) | no | |
7120
- | a_set | string | no | |
7121
- | seller_identifier | string | yes | |
7122
- | esp_modified | any | no | |
7123
- | dimensions | [Dimensions](#Dimensions) | no | |
7124
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 | |
7125
6863
 
7126
6864
  ---
7127
6865
 
@@ -7132,45 +6870,45 @@ Sms Sent successfully
7132
6870
 
7133
6871
  | Properties | Type | Nullable | Description |
7134
6872
  | ---------- | ---- | -------- | ----------- |
7135
- | article_details | [ArticleDetails](#ArticleDetails) | no | |
6873
+ | shipment_id | string | no | |
6874
+ | b_id | number | yes | |
7136
6875
  | bag_status_history | [BagStatusHistory](#BagStatusHistory) | no | |
7137
- | dates | [Dates](#Dates) | no | |
7138
- | order_integration_id | string | no | |
7139
- | operational_status | string | no | |
7140
- | reasons | [string] | no | |
7141
- | bag_update_time | number | no | |
7142
- | identifier | string | no | |
6876
+ | display_name | string | no | |
6877
+ | current_status | [BagStatusHistory](#BagStatusHistory) | yes | |
6878
+ | financial_breakup | [[FinancialBreakup](#FinancialBreakup)] | yes | |
6879
+ | gst_details | [BagGSTDetails](#BagGSTDetails) | yes | |
7143
6880
  | meta | [BagMeta](#BagMeta) | no | |
7144
- | prices | [Prices](#Prices) | yes | |
6881
+ | bag_status | [[BagStatusHistory](#BagStatusHistory)] | yes | |
6882
+ | reasons | [string] | no | |
6883
+ | seller_identifier | string | no | |
6884
+ | order_integration_id | string | no | |
6885
+ | article | [Article](#Article) | yes | |
7145
6886
  | status | [BagReturnableCancelableStatus](#BagReturnableCancelableStatus) | yes | |
7146
- | qc_required | any | no | |
7147
- | journey_type | string | yes | |
7148
- | display_name | string | no | |
7149
- | ordering_store | [Store](#Store) | no | |
7150
- | affiliate_bag_details | [AffiliateBagDetails](#AffiliateBagDetails) | yes | |
6887
+ | article_details | [ArticleDetails](#ArticleDetails) | no | |
6888
+ | bag_update_time | number | no | |
7151
6889
  | quantity | number | no | |
7152
- | shipment_id | string | no | |
7153
- | b_type | string | no | |
7154
6890
  | restore_coupon | boolean | no | |
7155
- | parent_promo_bags | string | no | |
6891
+ | no_of_bags_order | number | no | |
6892
+ | restore_promos | string | no | |
6893
+ | b_type | string | no | |
7156
6894
  | applied_promos | [string] | no | |
7157
- | b_id | number | yes | |
7158
- | bag_status | [[BagStatusHistory](#BagStatusHistory)] | yes | |
7159
- | current_status | [BagStatusHistory](#BagStatusHistory) | yes | |
7160
- | financial_breakup | [[FinancialBreakup](#FinancialBreakup)] | yes | |
7161
- | seller_identifier | string | no | |
6895
+ | ordering_store | [Store](#Store) | no | |
6896
+ | affiliate_bag_details | [AffiliateBagDetails](#AffiliateBagDetails) | yes | |
6897
+ | parent_promo_bags | string | no | |
6898
+ | tags | [string] | no | |
6899
+ | operational_status | string | no | |
7162
6900
  | affiliate_details | [AffiliateDetails](#AffiliateDetails) | no | |
7163
- | item | [Item](#Item) | yes | |
7164
- | original_bag_list | [number] | no | |
7165
6901
  | current_operational_status | [BagStatusHistory](#BagStatusHistory) | yes | |
7166
- | no_of_bags_order | number | no | |
6902
+ | journey_type | string | yes | |
6903
+ | dates | [Dates](#Dates) | no | |
7167
6904
  | brand | [Brand](#Brand) | yes | |
7168
- | tags | [string] | no | |
7169
- | gst_details | [BagGSTDetails](#BagGSTDetails) | yes | |
7170
- | restore_promos | string | no | |
6905
+ | original_bag_list | [number] | no | |
6906
+ | qc_required | any | no | |
7171
6907
  | entity_type | string | no | |
6908
+ | prices | [Prices](#Prices) | yes | |
7172
6909
  | line_number | number | no | |
7173
- | article | [Article](#Article) | yes | |
6910
+ | item | [Item](#Item) | yes | |
6911
+ | identifier | string | no | |
7174
6912
 
7175
6913
  ---
7176
6914
 
@@ -7181,8 +6919,8 @@ Sms Sent successfully
7181
6919
 
7182
6920
  | Properties | Type | Nullable | Description |
7183
6921
  | ---------- | ---- | -------- | ----------- |
7184
- | message | string | yes | |
7185
6922
  | error | string | yes | |
6923
+ | message | string | yes | |
7186
6924
 
7187
6925
  ---
7188
6926
 
@@ -7193,9 +6931,9 @@ Sms Sent successfully
7193
6931
 
7194
6932
  | Properties | Type | Nullable | Description |
7195
6933
  | ---------- | ---- | -------- | ----------- |
7196
- | item_total | number | yes | |
7197
6934
  | page_type | string | yes | |
7198
6935
  | current | number | yes | |
6936
+ | item_total | number | yes | |
7199
6937
  | has_next | boolean | yes | |
7200
6938
  | size | number | yes | |
7201
6939
 
@@ -7208,8 +6946,8 @@ Sms Sent successfully
7208
6946
 
7209
6947
  | Properties | Type | Nullable | Description |
7210
6948
  | ---------- | ---- | -------- | ----------- |
7211
- | items | [[BagDetailsPlatformResponse](#BagDetailsPlatformResponse)] | yes | |
7212
6949
  | page | [Page1](#Page1) | yes | |
6950
+ | items | [[BagDetailsPlatformResponse](#BagDetailsPlatformResponse)] | yes | |
7213
6951
 
7214
6952
  ---
7215
6953
 
@@ -7231,9 +6969,9 @@ Sms Sent successfully
7231
6969
 
7232
6970
  | Properties | Type | Nullable | Description |
7233
6971
  | ---------- | ---- | -------- | ----------- |
7234
- | status | number | no | |
7235
6972
  | message | string | no | |
7236
6973
  | shipment_id | string | no | |
6974
+ | status | number | no | |
7237
6975
  | error | string | no | |
7238
6976
 
7239
6977
  ---
@@ -7256,9 +6994,9 @@ Sms Sent successfully
7256
6994
 
7257
6995
  | Properties | Type | Nullable | Description |
7258
6996
  | ---------- | ---- | -------- | ----------- |
7259
- | status | number | yes | |
7260
- | error_trace | string | no | |
7261
6997
  | message | string | yes | |
6998
+ | error_trace | string | no | |
6999
+ | status | number | yes | |
7262
7000
 
7263
7001
  ---
7264
7002
 
@@ -7269,16 +7007,16 @@ Sms Sent successfully
7269
7007
 
7270
7008
  | Properties | Type | Nullable | Description |
7271
7009
  | ---------- | ---- | -------- | ----------- |
7272
- | affiliate_order_id | string | no | |
7273
- | bag_id | number | no | |
7274
- | affiliate_bag_id | string | no | |
7275
7010
  | set_id | string | no | |
7276
- | affiliate_id | string | no | |
7277
7011
  | reason_ids | [number] | no | |
7012
+ | affiliate_order_id | string | no | |
7013
+ | affiliate_id | string | no | |
7014
+ | bag_id | number | no | |
7015
+ | fynd_order_id | string | no | |
7278
7016
  | item_id | string | no | |
7279
7017
  | mongo_article_id | string | no | |
7280
7018
  | store_id | number | yes | |
7281
- | fynd_order_id | string | no | |
7019
+ | affiliate_bag_id | string | no | |
7282
7020
 
7283
7021
  ---
7284
7022
 
@@ -7289,8 +7027,8 @@ Sms Sent successfully
7289
7027
 
7290
7028
  | Properties | Type | Nullable | Description |
7291
7029
  | ---------- | ---- | -------- | ----------- |
7292
- | success | boolean | no | |
7293
7030
  | message | string | no | |
7031
+ | success | boolean | no | |
7294
7032
 
7295
7033
  ---
7296
7034
 
@@ -7301,12 +7039,12 @@ Sms Sent successfully
7301
7039
 
7302
7040
  | Properties | Type | Nullable | Description |
7303
7041
  | ---------- | ---- | -------- | ----------- |
7042
+ | reason_text | string | yes | |
7304
7043
  | affiliate_order_id | string | no | |
7305
- | affiliate_bag_id | string | no | |
7306
7044
  | affiliate_id | string | no | |
7307
7045
  | affiliate_shipment_id | string | no | |
7308
7046
  | id | string | no | |
7309
- | reason_text | string | yes | |
7047
+ | affiliate_bag_id | string | no | |
7310
7048
 
7311
7049
  ---
7312
7050
 
@@ -7331,8 +7069,8 @@ Sms Sent successfully
7331
7069
 
7332
7070
  | Properties | Type | Nullable | Description |
7333
7071
  | ---------- | ---- | -------- | ----------- |
7334
- | affiliate_shipment_id | string | no | |
7335
7072
  | affiliate_id | string | no | |
7073
+ | affiliate_shipment_id | string | no | |
7336
7074
 
7337
7075
  ---
7338
7076
 
@@ -7343,10 +7081,10 @@ Sms Sent successfully
7343
7081
 
7344
7082
  | Properties | Type | Nullable | Description |
7345
7083
  | ---------- | ---- | -------- | ----------- |
7346
- | affiliate_order_id | string | no | |
7084
+ | is_locked | boolean | no | |
7347
7085
  | bag_id | number | no | |
7348
7086
  | affiliate_bag_id | string | no | |
7349
- | is_locked | boolean | no | |
7087
+ | affiliate_order_id | string | no | |
7350
7088
 
7351
7089
  ---
7352
7090
 
@@ -7357,15 +7095,15 @@ Sms Sent successfully
7357
7095
 
7358
7096
  | Properties | Type | Nullable | Description |
7359
7097
  | ---------- | ---- | -------- | ----------- |
7098
+ | shipment_id | string | no | |
7360
7099
  | is_bag_locked | boolean | no | |
7361
- | lock_status | boolean | no | |
7362
- | original_filter | [OriginalFilter](#OriginalFilter) | no | |
7363
- | status | string | no | |
7364
7100
  | affiliate_id | string | no | |
7365
7101
  | affiliate_shipment_id | string | no | |
7366
7102
  | is_shipment_locked | boolean | no | |
7103
+ | original_filter | [OriginalFilter](#OriginalFilter) | no | |
7367
7104
  | bags | [[Bags](#Bags)] | no | |
7368
- | shipment_id | string | no | |
7105
+ | status | string | no | |
7106
+ | lock_status | boolean | no | |
7369
7107
 
7370
7108
  ---
7371
7109
 
@@ -7376,9 +7114,9 @@ Sms Sent successfully
7376
7114
 
7377
7115
  | Properties | Type | Nullable | Description |
7378
7116
  | ---------- | ---- | -------- | ----------- |
7117
+ | message | string | no | |
7379
7118
  | check_response | [[CheckResponse](#CheckResponse)] | no | |
7380
7119
  | success | boolean | no | |
7381
- | message | string | no | |
7382
7120
 
7383
7121
  ---
7384
7122
 
@@ -7389,15 +7127,15 @@ Sms Sent successfully
7389
7127
 
7390
7128
  | Properties | Type | Nullable | Description |
7391
7129
  | ---------- | ---- | -------- | ----------- |
7392
- | platform_id | string | no | |
7393
7130
  | from_datetime | string | no | |
7394
- | platform_name | string | no | |
7395
- | created_at | string | no | |
7396
7131
  | logo_url | string | no | |
7397
- | to_datetime | string | no | |
7398
- | company_id | number | no | |
7399
7132
  | title | string | no | |
7133
+ | created_at | string | no | |
7134
+ | platform_id | string | no | |
7135
+ | company_id | number | no | |
7400
7136
  | id | number | yes | |
7137
+ | platform_name | string | no | |
7138
+ | to_datetime | string | no | |
7401
7139
  | description | string | no | |
7402
7140
 
7403
7141
  ---
@@ -7420,8 +7158,8 @@ Sms Sent successfully
7420
7158
 
7421
7159
  | Properties | Type | Nullable | Description |
7422
7160
  | ---------- | ---- | -------- | ----------- |
7423
- | success | boolean | yes | |
7424
7161
  | message | string | yes | |
7162
+ | success | boolean | yes | |
7425
7163
 
7426
7164
  ---
7427
7165
 
@@ -7432,129 +7170,129 @@ Sms Sent successfully
7432
7170
 
7433
7171
  | Properties | Type | Nullable | Description |
7434
7172
  | ---------- | ---- | -------- | ----------- |
7435
- | status | boolean | yes | |
7436
7173
  | call_id | string | yes | |
7174
+ | status | boolean | yes | |
7437
7175
 
7438
7176
  ---
7439
7177
 
7440
7178
 
7441
7179
 
7442
7180
 
7443
- #### [Products](#Products)
7181
+ #### [ProductsDataUpdatesFilters](#ProductsDataUpdatesFilters)
7444
7182
 
7445
7183
  | Properties | Type | Nullable | Description |
7446
7184
  | ---------- | ---- | -------- | ----------- |
7447
- | identifier | string | no | |
7448
- | quantity | number | no | |
7449
7185
  | line_number | number | no | |
7186
+ | identifier | string | no | |
7450
7187
 
7451
7188
  ---
7452
7189
 
7453
7190
 
7454
7191
 
7455
7192
 
7456
- #### [ProductsReasonsData](#ProductsReasonsData)
7193
+ #### [ProductsDataUpdates](#ProductsDataUpdates)
7457
7194
 
7458
7195
  | Properties | Type | Nullable | Description |
7459
7196
  | ---------- | ---- | -------- | ----------- |
7460
- | reason_id | number | no | |
7461
- | reason_text | string | no | |
7197
+ | data | string | no | |
7198
+ | filters | [[ProductsDataUpdatesFilters](#ProductsDataUpdatesFilters)] | no | |
7462
7199
 
7463
7200
  ---
7464
7201
 
7465
7202
 
7466
7203
 
7467
7204
 
7468
- #### [ProductsReasonsFilters](#ProductsReasonsFilters)
7205
+ #### [EntitiesDataUpdates](#EntitiesDataUpdates)
7469
7206
 
7470
7207
  | Properties | Type | Nullable | Description |
7471
7208
  | ---------- | ---- | -------- | ----------- |
7472
- | identifier | string | no | |
7473
- | quantity | number | no | |
7474
- | line_number | number | no | |
7209
+ | data | string | no | |
7210
+ | filters | [string] | no | |
7475
7211
 
7476
7212
  ---
7477
7213
 
7478
7214
 
7479
7215
 
7480
7216
 
7481
- #### [ProductsReasons](#ProductsReasons)
7217
+ #### [DataUpdates](#DataUpdates)
7482
7218
 
7483
7219
  | Properties | Type | Nullable | Description |
7484
7220
  | ---------- | ---- | -------- | ----------- |
7485
- | data | [ProductsReasonsData](#ProductsReasonsData) | no | |
7486
- | filters | [[ProductsReasonsFilters](#ProductsReasonsFilters)] | no | |
7221
+ | products | [[ProductsDataUpdates](#ProductsDataUpdates)] | no | |
7222
+ | entities | [[EntitiesDataUpdates](#EntitiesDataUpdates)] | no | |
7487
7223
 
7488
7224
  ---
7489
7225
 
7490
7226
 
7491
7227
 
7492
7228
 
7493
- #### [EntityReasonData](#EntityReasonData)
7229
+ #### [Products](#Products)
7494
7230
 
7495
7231
  | Properties | Type | Nullable | Description |
7496
7232
  | ---------- | ---- | -------- | ----------- |
7497
- | reason_id | number | no | |
7498
- | reason_text | string | no | |
7233
+ | line_number | number | no | |
7234
+ | quantity | number | no | |
7235
+ | identifier | string | no | |
7499
7236
 
7500
7237
  ---
7501
7238
 
7502
7239
 
7503
7240
 
7504
7241
 
7505
- #### [EntitiesReasons](#EntitiesReasons)
7242
+ #### [ProductsReasonsData](#ProductsReasonsData)
7506
7243
 
7507
7244
  | Properties | Type | Nullable | Description |
7508
7245
  | ---------- | ---- | -------- | ----------- |
7509
- | data | [EntityReasonData](#EntityReasonData) | no | |
7510
- | filters | [string] | no | |
7246
+ | reason_text | string | no | |
7247
+ | reason_id | number | no | |
7511
7248
 
7512
7249
  ---
7513
7250
 
7514
7251
 
7515
7252
 
7516
7253
 
7517
- #### [ReasonsData](#ReasonsData)
7254
+ #### [ProductsReasonsFilters](#ProductsReasonsFilters)
7518
7255
 
7519
7256
  | Properties | Type | Nullable | Description |
7520
7257
  | ---------- | ---- | -------- | ----------- |
7521
- | products | [[ProductsReasons](#ProductsReasons)] | no | |
7522
- | entities | [[EntitiesReasons](#EntitiesReasons)] | no | |
7258
+ | line_number | number | no | |
7259
+ | quantity | number | no | |
7260
+ | identifier | string | no | |
7523
7261
 
7524
7262
  ---
7525
7263
 
7526
7264
 
7527
7265
 
7528
7266
 
7529
- #### [ProductsDataUpdatesFilters](#ProductsDataUpdatesFilters)
7267
+ #### [ProductsReasons](#ProductsReasons)
7530
7268
 
7531
7269
  | Properties | Type | Nullable | Description |
7532
7270
  | ---------- | ---- | -------- | ----------- |
7533
- | identifier | string | no | |
7534
- | line_number | number | no | |
7271
+ | data | [ProductsReasonsData](#ProductsReasonsData) | no | |
7272
+ | filters | [[ProductsReasonsFilters](#ProductsReasonsFilters)] | no | |
7535
7273
 
7536
7274
  ---
7537
7275
 
7538
7276
 
7539
7277
 
7540
7278
 
7541
- #### [ProductsDataUpdates](#ProductsDataUpdates)
7279
+ #### [EntityReasonData](#EntityReasonData)
7542
7280
 
7543
7281
  | Properties | Type | Nullable | Description |
7544
7282
  | ---------- | ---- | -------- | ----------- |
7545
- | data | string | no | |
7546
- | filters | [[ProductsDataUpdatesFilters](#ProductsDataUpdatesFilters)] | no | |
7283
+ | reason_text | string | no | |
7284
+ | reason_id | number | no | |
7547
7285
 
7548
7286
  ---
7549
7287
 
7550
7288
 
7551
7289
 
7552
7290
 
7553
- #### [EntitiesDataUpdates](#EntitiesDataUpdates)
7291
+ #### [EntitiesReasons](#EntitiesReasons)
7554
7292
 
7555
7293
  | Properties | Type | Nullable | Description |
7556
7294
  | ---------- | ---- | -------- | ----------- |
7557
- | data | string | no | |
7295
+ | data | [EntityReasonData](#EntityReasonData) | no | |
7558
7296
  | filters | [string] | no | |
7559
7297
 
7560
7298
  ---
@@ -7562,12 +7300,12 @@ Sms Sent successfully
7562
7300
 
7563
7301
 
7564
7302
 
7565
- #### [DataUpdates](#DataUpdates)
7303
+ #### [ReasonsData](#ReasonsData)
7566
7304
 
7567
7305
  | Properties | Type | Nullable | Description |
7568
7306
  | ---------- | ---- | -------- | ----------- |
7569
- | products | [[ProductsDataUpdates](#ProductsDataUpdates)] | no | |
7570
- | entities | [[EntitiesDataUpdates](#EntitiesDataUpdates)] | no | |
7307
+ | products | [[ProductsReasons](#ProductsReasons)] | no | |
7308
+ | entities | [[EntitiesReasons](#EntitiesReasons)] | no | |
7571
7309
 
7572
7310
  ---
7573
7311
 
@@ -7578,10 +7316,10 @@ Sms Sent successfully
7578
7316
 
7579
7317
  | Properties | Type | Nullable | Description |
7580
7318
  | ---------- | ---- | -------- | ----------- |
7319
+ | data_updates | [DataUpdates](#DataUpdates) | no | |
7581
7320
  | products | [[Products](#Products)] | no | |
7582
7321
  | reasons | [ReasonsData](#ReasonsData) | no | |
7583
7322
  | identifier | string | yes | |
7584
- | data_updates | [DataUpdates](#DataUpdates) | no | |
7585
7323
 
7586
7324
  ---
7587
7325
 
@@ -7592,8 +7330,8 @@ Sms Sent successfully
7592
7330
 
7593
7331
  | Properties | Type | Nullable | Description |
7594
7332
  | ---------- | ---- | -------- | ----------- |
7595
- | status | string | no | |
7596
7333
  | shipments | [[ShipmentsRequest](#ShipmentsRequest)] | no | |
7334
+ | status | string | no | |
7597
7335
  | exclude_bags_next_state | string | no | |
7598
7336
 
7599
7337
  ---
@@ -7605,11 +7343,11 @@ Sms Sent successfully
7605
7343
 
7606
7344
  | Properties | Type | Nullable | Description |
7607
7345
  | ---------- | ---- | -------- | ----------- |
7608
- | task | boolean | no | |
7609
- | statuses | [[StatuesRequest](#StatuesRequest)] | no | |
7610
7346
  | unlock_before_transition | boolean | no | |
7611
7347
  | lock_after_transition | boolean | no | |
7612
7348
  | force_transition | boolean | no | |
7349
+ | task | boolean | no | |
7350
+ | statuses | [[StatuesRequest](#StatuesRequest)] | no | |
7613
7351
 
7614
7352
  ---
7615
7353
 
@@ -7620,14 +7358,14 @@ Sms Sent successfully
7620
7358
 
7621
7359
  | Properties | Type | Nullable | Description |
7622
7360
  | ---------- | ---- | -------- | ----------- |
7361
+ | final_state | string | no | |
7623
7362
  | identifier | string | no | |
7363
+ | exception | string | no | |
7364
+ | meta | string | no | |
7365
+ | message | string | no | |
7624
7366
  | status | number | no | |
7625
7367
  | code | string | no | |
7626
- | message | string | no | |
7627
7368
  | stack_trace | string | no | |
7628
- | final_state | string | no | |
7629
- | exception | string | no | |
7630
- | meta | string | no | |
7631
7369
 
7632
7370
  ---
7633
7371
 
@@ -7649,19 +7387,7 @@ Sms Sent successfully
7649
7387
 
7650
7388
  | Properties | Type | Nullable | Description |
7651
7389
  | ---------- | ---- | -------- | ----------- |
7652
- | statuses | [[StatuesResponse](#StatuesResponse)] | no | |
7653
-
7654
- ---
7655
-
7656
-
7657
-
7658
-
7659
- #### [AffiliateStoreIdMapping](#AffiliateStoreIdMapping)
7660
-
7661
- | Properties | Type | Nullable | Description |
7662
- | ---------- | ---- | -------- | ----------- |
7663
- | marketplace_store_id | string | yes | |
7664
- | store_id | number | yes | |
7390
+ | statuses | [[StatuesResponse](#StatuesResponse)] | no | |
7665
7391
 
7666
7392
  ---
7667
7393
 
@@ -7672,8 +7398,8 @@ Sms Sent successfully
7672
7398
 
7673
7399
  | Properties | Type | Nullable | Description |
7674
7400
  | ---------- | ---- | -------- | ----------- |
7675
- | value | string | yes | |
7676
7401
  | name | string | yes | |
7402
+ | value | string | yes | |
7677
7403
 
7678
7404
  ---
7679
7405
 
@@ -7684,14 +7410,14 @@ Sms Sent successfully
7684
7410
 
7685
7411
  | Properties | Type | Nullable | Description |
7686
7412
  | ---------- | ---- | -------- | ----------- |
7687
- | name | string | yes | |
7688
- | owner | string | yes | |
7689
- | secret | string | yes | |
7690
- | created_at | string | yes | |
7691
7413
  | updated_at | string | yes | |
7692
7414
  | meta | [[AffiliateAppConfigMeta](#AffiliateAppConfigMeta)] | no | |
7415
+ | owner | string | yes | |
7416
+ | created_at | string | yes | |
7693
7417
  | token | string | yes | |
7418
+ | name | string | yes | |
7694
7419
  | id | string | yes | |
7420
+ | secret | string | yes | |
7695
7421
  | description | string | no | |
7696
7422
 
7697
7423
  ---
@@ -7699,11 +7425,11 @@ Sms Sent successfully
7699
7425
 
7700
7426
 
7701
7427
 
7702
- #### [AffiliateInventoryLogisticsConfig](#AffiliateInventoryLogisticsConfig)
7428
+ #### [AffiliateInventoryArticleAssignmentConfig](#AffiliateInventoryArticleAssignmentConfig)
7703
7429
 
7704
7430
  | Properties | Type | Nullable | Description |
7705
7431
  | ---------- | ---- | -------- | ----------- |
7706
- | dp_assignment | boolean | no | |
7432
+ | post_order_reassignment | boolean | no | |
7707
7433
 
7708
7434
  ---
7709
7435
 
@@ -7722,33 +7448,33 @@ Sms Sent successfully
7722
7448
 
7723
7449
 
7724
7450
 
7725
- #### [AffiliateInventoryOrderConfig](#AffiliateInventoryOrderConfig)
7451
+ #### [AffiliateInventoryStoreConfig](#AffiliateInventoryStoreConfig)
7726
7452
 
7727
7453
  | Properties | Type | Nullable | Description |
7728
7454
  | ---------- | ---- | -------- | ----------- |
7729
- | force_reassignment | boolean | no | |
7455
+ | store | string | no | |
7730
7456
 
7731
7457
  ---
7732
7458
 
7733
7459
 
7734
7460
 
7735
7461
 
7736
- #### [AffiliateInventoryArticleAssignmentConfig](#AffiliateInventoryArticleAssignmentConfig)
7462
+ #### [AffiliateInventoryOrderConfig](#AffiliateInventoryOrderConfig)
7737
7463
 
7738
7464
  | Properties | Type | Nullable | Description |
7739
7465
  | ---------- | ---- | -------- | ----------- |
7740
- | post_order_reassignment | boolean | no | |
7466
+ | force_reassignment | boolean | no | |
7741
7467
 
7742
7468
  ---
7743
7469
 
7744
7470
 
7745
7471
 
7746
7472
 
7747
- #### [AffiliateInventoryStoreConfig](#AffiliateInventoryStoreConfig)
7473
+ #### [AffiliateInventoryLogisticsConfig](#AffiliateInventoryLogisticsConfig)
7748
7474
 
7749
7475
  | Properties | Type | Nullable | Description |
7750
7476
  | ---------- | ---- | -------- | ----------- |
7751
- | store | string | no | |
7477
+ | dp_assignment | boolean | no | |
7752
7478
 
7753
7479
  ---
7754
7480
 
@@ -7759,11 +7485,11 @@ Sms Sent successfully
7759
7485
 
7760
7486
  | Properties | Type | Nullable | Description |
7761
7487
  | ---------- | ---- | -------- | ----------- |
7762
- | logistics | [AffiliateInventoryLogisticsConfig](#AffiliateInventoryLogisticsConfig) | no | |
7763
- | payment | [AffiliateInventoryPaymentConfig](#AffiliateInventoryPaymentConfig) | no | |
7764
- | order | [AffiliateInventoryOrderConfig](#AffiliateInventoryOrderConfig) | no | |
7765
7488
  | article_assignment | [AffiliateInventoryArticleAssignmentConfig](#AffiliateInventoryArticleAssignmentConfig) | no | |
7489
+ | payment | [AffiliateInventoryPaymentConfig](#AffiliateInventoryPaymentConfig) | no | |
7766
7490
  | inventory | [AffiliateInventoryStoreConfig](#AffiliateInventoryStoreConfig) | no | |
7491
+ | order | [AffiliateInventoryOrderConfig](#AffiliateInventoryOrderConfig) | no | |
7492
+ | logistics | [AffiliateInventoryLogisticsConfig](#AffiliateInventoryLogisticsConfig) | no | |
7767
7493
 
7768
7494
  ---
7769
7495
 
@@ -7786,9 +7512,21 @@ Sms Sent successfully
7786
7512
 
7787
7513
  | Properties | Type | Nullable | Description |
7788
7514
  | ---------- | ---- | -------- | ----------- |
7789
- | token | string | yes | |
7790
- | id | string | yes | |
7791
7515
  | config | [AffiliateConfig](#AffiliateConfig) | no | |
7516
+ | id | string | yes | |
7517
+ | token | string | yes | |
7518
+
7519
+ ---
7520
+
7521
+
7522
+
7523
+
7524
+ #### [AffiliateStoreIdMapping](#AffiliateStoreIdMapping)
7525
+
7526
+ | Properties | Type | Nullable | Description |
7527
+ | ---------- | ---- | -------- | ----------- |
7528
+ | store_id | number | yes | |
7529
+ | marketplace_store_id | string | yes | |
7792
7530
 
7793
7531
  ---
7794
7532
 
@@ -7799,12 +7537,12 @@ Sms Sent successfully
7799
7537
 
7800
7538
  | Properties | Type | Nullable | Description |
7801
7539
  | ---------- | ---- | -------- | ----------- |
7802
- | article_lookup | string | no | |
7803
- | store_lookup | string | no | |
7540
+ | affiliate | [Affiliate](#Affiliate) | yes | |
7804
7541
  | bag_end_state | string | no | |
7805
7542
  | affiliate_store_id_mapping | [[AffiliateStoreIdMapping](#AffiliateStoreIdMapping)] | yes | |
7543
+ | article_lookup | string | no | |
7806
7544
  | create_user | boolean | no | |
7807
- | affiliate | [Affiliate](#Affiliate) | yes | |
7545
+ | store_lookup | string | no | |
7808
7546
 
7809
7547
  ---
7810
7548
 
@@ -7815,17 +7553,29 @@ Sms Sent successfully
7815
7553
 
7816
7554
  | Properties | Type | Nullable | Description |
7817
7555
  | ---------- | ---- | -------- | ----------- |
7556
+ | city | string | yes | |
7818
7557
  | mobile | number | yes | |
7819
- | state | string | yes | |
7820
- | address2 | string | no | |
7821
- | country | string | yes | |
7822
- | email | string | yes | |
7558
+ | last_name | string | yes | |
7823
7559
  | pincode | string | yes | |
7824
7560
  | phone | number | yes | |
7825
- | city | string | yes | |
7826
- | last_name | string | yes | |
7827
- | first_name | string | yes | |
7561
+ | state | string | yes | |
7828
7562
  | address1 | string | no | |
7563
+ | first_name | string | yes | |
7564
+ | address2 | string | no | |
7565
+ | email | string | yes | |
7566
+ | country | string | yes | |
7567
+
7568
+ ---
7569
+
7570
+
7571
+
7572
+
7573
+ #### [UserData](#UserData)
7574
+
7575
+ | Properties | Type | Nullable | Description |
7576
+ | ---------- | ---- | -------- | ----------- |
7577
+ | shipping_user | [OrderUser](#OrderUser) | no | |
7578
+ | billing_user | [OrderUser](#OrderUser) | no | |
7829
7579
 
7830
7580
  ---
7831
7581
 
@@ -7837,42 +7587,42 @@ Sms Sent successfully
7837
7587
  | Properties | Type | Nullable | Description |
7838
7588
  | ---------- | ---- | -------- | ----------- |
7839
7589
  | category | string | yes | |
7840
- | weight | string | yes | |
7590
+ | _id | string | yes | |
7841
7591
  | quantity | number | yes | |
7592
+ | dimension | string | yes | |
7593
+ | weight | string | yes | |
7842
7594
  | attributes | string | yes | |
7843
- | _id | string | yes | |
7844
7595
  | brand_id | number | yes | |
7845
- | dimension | string | yes | |
7846
7596
 
7847
7597
  ---
7848
7598
 
7849
7599
 
7850
7600
 
7851
7601
 
7852
- #### [ShipmentDetails](#ShipmentDetails)
7602
+ #### [LocationDetails](#LocationDetails)
7853
7603
 
7854
7604
  | Properties | Type | Nullable | Description |
7855
7605
  | ---------- | ---- | -------- | ----------- |
7856
- | articles | [[ArticleDetails1](#ArticleDetails1)] | yes | |
7857
- | box_type | string | no | |
7858
- | affiliate_shipment_id | string | yes | |
7859
- | shipments | number | yes | |
7860
- | dp_id | number | no | |
7861
- | meta | string | no | |
7862
7606
  | fulfillment_id | number | yes | |
7607
+ | fulfillment_type | string | yes | |
7608
+ | articles | [[ArticleDetails1](#ArticleDetails1)] | yes | |
7863
7609
 
7864
7610
  ---
7865
7611
 
7866
7612
 
7867
7613
 
7868
7614
 
7869
- #### [LocationDetails](#LocationDetails)
7615
+ #### [ShipmentDetails](#ShipmentDetails)
7870
7616
 
7871
7617
  | Properties | Type | Nullable | Description |
7872
7618
  | ---------- | ---- | -------- | ----------- |
7873
- | articles | [[ArticleDetails1](#ArticleDetails1)] | yes | |
7874
7619
  | fulfillment_id | number | yes | |
7875
- | fulfillment_type | string | 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 | |
7876
7626
 
7877
7627
  ---
7878
7628
 
@@ -7883,14 +7633,14 @@ Sms Sent successfully
7883
7633
 
7884
7634
  | Properties | Type | Nullable | Description |
7885
7635
  | ---------- | ---- | -------- | ----------- |
7886
- | journey | string | yes | |
7636
+ | location_details | [LocationDetails](#LocationDetails) | no | |
7637
+ | action | string | yes | |
7887
7638
  | identifier | string | yes | |
7888
7639
  | shipment | [[ShipmentDetails](#ShipmentDetails)] | yes | |
7889
- | to_pincode | string | yes | |
7890
- | action | string | yes | |
7891
- | payment_mode | string | yes | |
7892
- | location_details | [LocationDetails](#LocationDetails) | no | |
7893
7640
  | source | string | yes | |
7641
+ | payment_mode | string | yes | |
7642
+ | journey | string | yes | |
7643
+ | to_pincode | string | yes | |
7894
7644
 
7895
7645
  ---
7896
7646
 
@@ -7908,25 +7658,12 @@ Sms Sent successfully
7908
7658
 
7909
7659
 
7910
7660
 
7911
- #### [OrderPriority](#OrderPriority)
7912
-
7913
- | Properties | Type | Nullable | Description |
7914
- | ---------- | ---- | -------- | ----------- |
7915
- | fulfilment_priority_text | string | no | |
7916
- | fulfilment_priority | number | no | |
7917
- | affiliate_priority_code | string | no | |
7918
-
7919
- ---
7920
-
7921
-
7922
-
7923
-
7924
7661
  #### [MarketPlacePdf](#MarketPlacePdf)
7925
7662
 
7926
7663
  | Properties | Type | Nullable | Description |
7927
7664
  | ---------- | ---- | -------- | ----------- |
7928
- | invoice | string | no | |
7929
7665
  | label | string | no | |
7666
+ | invoice | string | no | |
7930
7667
 
7931
7668
  ---
7932
7669
 
@@ -7937,41 +7674,42 @@ Sms Sent successfully
7937
7674
 
7938
7675
  | Properties | Type | Nullable | Description |
7939
7676
  | ---------- | ---- | -------- | ----------- |
7677
+ | avl_qty | number | yes | |
7940
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 | |
7941
7685
  | transfer_price | number | yes | |
7942
- | sku | string | yes | |
7943
- | unit_price | number | yes | |
7944
- | company_id | number | yes | |
7945
- | delivery_charge | number | yes | |
7686
+ | item_size | string | yes | |
7946
7687
  | price_effective | number | yes | |
7947
- | amount_paid | number | yes | |
7688
+ | modified_on | string | yes | |
7689
+ | affiliate_meta | string | yes | |
7690
+ | hsn_code_id | string | yes | |
7691
+ | _id | string | yes | |
7948
7692
  | price_marked | number | yes | |
7949
- | item_size | string | yes | |
7693
+ | company_id | number | yes | |
7694
+ | delivery_charge | number | yes | |
7950
7695
  | item_id | number | yes | |
7951
- | store_id | number | yes | |
7952
- | discount | number | yes | |
7953
- | affiliate_meta | string | yes | |
7954
- | modified_on | string | yes | |
7696
+ | sku | string | yes | |
7955
7697
  | identifier | string | yes | |
7956
- | affiliate_store_id | string | yes | |
7957
7698
  | pdf_links | [MarketPlacePdf](#MarketPlacePdf) | no | |
7958
- | hsn_code_id | string | yes | |
7959
- | fynd_store_id | string | yes | |
7960
- | avl_qty | number | yes | |
7961
- | seller_identifier | string | yes | |
7962
- | _id | string | yes | |
7699
+ | unit_price | number | yes | |
7963
7700
 
7964
7701
  ---
7965
7702
 
7966
7703
 
7967
7704
 
7968
7705
 
7969
- #### [UserData](#UserData)
7706
+ #### [OrderPriority](#OrderPriority)
7970
7707
 
7971
7708
  | Properties | Type | Nullable | Description |
7972
7709
  | ---------- | ---- | -------- | ----------- |
7973
- | shipping_user | [OrderUser](#OrderUser) | no | |
7974
- | billing_user | [OrderUser](#OrderUser) | no | |
7710
+ | fulfilment_priority_text | string | no | |
7711
+ | fulfilment_priority | number | no | |
7712
+ | affiliate_priority_code | string | no | |
7975
7713
 
7976
7714
  ---
7977
7715
 
@@ -7982,21 +7720,21 @@ Sms Sent successfully
7982
7720
 
7983
7721
  | Properties | Type | Nullable | Description |
7984
7722
  | ---------- | ---- | -------- | ----------- |
7723
+ | payment | string | no | |
7985
7724
  | affiliate_order_id | string | no | |
7986
- | order_value | number | yes | |
7987
- | cod_charges | number | yes | |
7725
+ | user | [UserData](#UserData) | yes | |
7726
+ | shipping_address | [OrderUser](#OrderUser) | yes | |
7988
7727
  | billing_address | [OrderUser](#OrderUser) | yes | |
7989
7728
  | shipment | [ShipmentData](#ShipmentData) | no | |
7990
- | order_priority | [OrderPriority](#OrderPriority) | no | |
7991
- | shipping_address | [OrderUser](#OrderUser) | yes | |
7992
- | delivery_charges | number | yes | |
7993
- | payment | string | no | |
7994
7729
  | discount | number | yes | |
7995
- | items | string | yes | |
7996
7730
  | payment_mode | string | yes | |
7997
7731
  | bags | [[AffiliateBag](#AffiliateBag)] | yes | |
7998
7732
  | coupon | string | no | |
7999
- | user | [UserData](#UserData) | yes | |
7733
+ | cod_charges | number | yes | |
7734
+ | delivery_charges | number | yes | |
7735
+ | order_value | number | yes | |
7736
+ | items | string | yes | |
7737
+ | order_priority | [OrderPriority](#OrderPriority) | no | |
8000
7738
 
8001
7739
  ---
8002
7740
 
@@ -8007,8 +7745,8 @@ Sms Sent successfully
8007
7745
 
8008
7746
  | Properties | Type | Nullable | Description |
8009
7747
  | ---------- | ---- | -------- | ----------- |
8010
- | order_config | [OrderConfig](#OrderConfig) | yes | |
8011
7748
  | affiliate_id | string | yes | |
7749
+ | order_config | [OrderConfig](#OrderConfig) | yes | |
8012
7750
  | order_info | [OrderInfo](#OrderInfo) | yes | |
8013
7751
 
8014
7752
  ---
@@ -8042,8 +7780,8 @@ Sms Sent successfully
8042
7780
 
8043
7781
  | Properties | Type | Nullable | Description |
8044
7782
  | ---------- | ---- | -------- | ----------- |
8045
- | success | boolean | no | |
8046
7783
  | message | string | no | |
7784
+ | success | boolean | no | |
8047
7785
 
8048
7786
  ---
8049
7787
 
@@ -8054,10 +7792,10 @@ Sms Sent successfully
8054
7792
 
8055
7793
  | Properties | Type | Nullable | Description |
8056
7794
  | ---------- | ---- | -------- | ----------- |
8057
- | description | string | yes | |
8058
7795
  | display_text | string | yes | |
8059
- | id | number | yes | |
8060
7796
  | slug | string | yes | |
7797
+ | id | number | yes | |
7798
+ | description | string | yes | |
8061
7799
 
8062
7800
  ---
8063
7801
 
@@ -8079,16 +7817,16 @@ Sms Sent successfully
8079
7817
 
8080
7818
  | Properties | Type | Nullable | Description |
8081
7819
  | ---------- | ---- | -------- | ----------- |
8082
- | createdat | string | yes | |
8083
- | l1_detail | string | no | |
8084
- | bag_id | number | no | |
8085
- | ticket_url | string | no | |
8086
- | message | string | yes | |
8087
7820
  | type | string | yes | |
7821
+ | user | string | yes | |
8088
7822
  | l2_detail | string | no | |
7823
+ | bag_id | number | no | |
8089
7824
  | ticket_id | string | no | |
7825
+ | message | string | yes | |
7826
+ | createdat | string | yes | |
7827
+ | ticket_url | string | no | |
7828
+ | l1_detail | string | no | |
8090
7829
  | l3_detail | string | no | |
8091
- | user | string | yes | |
8092
7830
 
8093
7831
  ---
8094
7832
 
@@ -8099,7 +7837,7 @@ Sms Sent successfully
8099
7837
 
8100
7838
  | Properties | Type | Nullable | Description |
8101
7839
  | ---------- | ---- | -------- | ----------- |
8102
- | activity_history | [[HistoryDict](#HistoryDict)] | no | |
7840
+ | activity_history | [[HistoryDict](#HistoryDict)] | yes | |
8103
7841
 
8104
7842
  ---
8105
7843
 
@@ -8110,8 +7848,67 @@ Sms Sent successfully
8110
7848
 
8111
7849
  | Properties | Type | Nullable | Description |
8112
7850
  | ---------- | ---- | -------- | ----------- |
8113
- | success | boolean | no | |
8114
7851
  | message | string | no | |
7852
+ | success | boolean | no | |
7853
+
7854
+ ---
7855
+
7856
+
7857
+
7858
+
7859
+ #### [PostHistoryData](#PostHistoryData)
7860
+
7861
+ | Properties | Type | Nullable | Description |
7862
+ | ---------- | ---- | -------- | ----------- |
7863
+ | message | string | yes | |
7864
+ | user_name | string | yes | |
7865
+
7866
+ ---
7867
+
7868
+
7869
+
7870
+
7871
+ #### [PostHistoryFilters](#PostHistoryFilters)
7872
+
7873
+ | Properties | Type | Nullable | Description |
7874
+ | ---------- | ---- | -------- | ----------- |
7875
+ | shipment_id | string | yes | |
7876
+ | line_number | string | no | |
7877
+ | identifier | string | no | |
7878
+
7879
+ ---
7880
+
7881
+
7882
+
7883
+
7884
+ #### [PostActivityHistory](#PostActivityHistory)
7885
+
7886
+ | Properties | Type | Nullable | Description |
7887
+ | ---------- | ---- | -------- | ----------- |
7888
+ | data | [PostHistoryData](#PostHistoryData) | yes | |
7889
+ | filters | [[PostHistoryFilters](#PostHistoryFilters)] | yes | |
7890
+
7891
+ ---
7892
+
7893
+
7894
+
7895
+
7896
+ #### [PostHistoryDict](#PostHistoryDict)
7897
+
7898
+ | Properties | Type | Nullable | Description |
7899
+ | ---------- | ---- | -------- | ----------- |
7900
+ | activity_history | [PostActivityHistory](#PostActivityHistory) | yes | |
7901
+
7902
+ ---
7903
+
7904
+
7905
+
7906
+
7907
+ #### [PostShipmentHistory](#PostShipmentHistory)
7908
+
7909
+ | Properties | Type | Nullable | Description |
7910
+ | ---------- | ---- | -------- | ----------- |
7911
+ | activity_history | [[PostHistoryDict](#PostHistoryDict)] | no | |
8115
7912
 
8116
7913
  ---
8117
7914
 
@@ -8122,15 +7919,15 @@ Sms Sent successfully
8122
7919
 
8123
7920
  | Properties | Type | Nullable | Description |
8124
7921
  | ---------- | ---- | -------- | ----------- |
7922
+ | order_id | string | yes | |
7923
+ | shipment_id | number | yes | |
8125
7924
  | amount_paid | number | yes | |
7925
+ | payment_mode | string | yes | |
7926
+ | phone_number | number | yes | |
8126
7927
  | message | string | yes | |
7928
+ | customer_name | string | yes | |
8127
7929
  | country_code | string | yes | |
8128
- | phone_number | number | yes | |
8129
7930
  | brand_name | string | yes | |
8130
- | order_id | string | yes | |
8131
- | customer_name | string | yes | |
8132
- | payment_mode | string | yes | |
8133
- | shipment_id | number | yes | |
8134
7931
 
8135
7932
  ---
8136
7933
 
@@ -8141,49 +7938,49 @@ Sms Sent successfully
8141
7938
 
8142
7939
  | Properties | Type | Nullable | Description |
8143
7940
  | ---------- | ---- | -------- | ----------- |
8144
- | data | [SmsDataPayload](#SmsDataPayload) | no | |
8145
- | bag_id | number | yes | |
8146
7941
  | slug | string | yes | |
7942
+ | bag_id | number | yes | |
7943
+ | data | [SmsDataPayload](#SmsDataPayload) | no | |
8147
7944
 
8148
7945
  ---
8149
7946
 
8150
7947
 
8151
7948
 
8152
7949
 
8153
- #### [Meta](#Meta)
7950
+ #### [OrderDetails](#OrderDetails)
8154
7951
 
8155
7952
  | Properties | Type | Nullable | Description |
8156
7953
  | ---------- | ---- | -------- | ----------- |
8157
- | kafka_emission_status | number | no | |
8158
- | state_manager_used | string | no | |
7954
+ | created_at | string | no | |
7955
+ | fynd_order_id | string | no | |
8159
7956
 
8160
7957
  ---
8161
7958
 
8162
7959
 
8163
7960
 
8164
7961
 
8165
- #### [ShipmentDetail](#ShipmentDetail)
7962
+ #### [Meta1](#Meta1)
8166
7963
 
8167
7964
  | Properties | Type | Nullable | Description |
8168
7965
  | ---------- | ---- | -------- | ----------- |
8169
- | status | string | no | |
8170
- | bag_list | [number] | no | |
8171
- | remarks | string | no | |
8172
- | meta | [Meta](#Meta) | yes | |
8173
- | id | number | yes | |
8174
- | shipment_id | string | no | |
7966
+ | state_manager_used | string | no | |
7967
+ | kafka_emission_status | number | no | |
8175
7968
 
8176
7969
  ---
8177
7970
 
8178
7971
 
8179
7972
 
8180
7973
 
8181
- #### [OrderDetails](#OrderDetails)
7974
+ #### [ShipmentDetail](#ShipmentDetail)
8182
7975
 
8183
7976
  | Properties | Type | Nullable | Description |
8184
7977
  | ---------- | ---- | -------- | ----------- |
8185
- | fynd_order_id | string | no | |
8186
- | created_at | string | no | |
7978
+ | shipment_id | string | no | |
7979
+ | remarks | string | no | |
7980
+ | bag_list | [number] | no | |
7981
+ | meta | [Meta1](#Meta1) | yes | |
7982
+ | status | string | no | |
7983
+ | id | number | yes | |
8187
7984
 
8188
7985
  ---
8189
7986
 
@@ -8194,9 +7991,9 @@ Sms Sent successfully
8194
7991
 
8195
7992
  | Properties | Type | Nullable | Description |
8196
7993
  | ---------- | ---- | -------- | ----------- |
8197
- | shipment_details | [[ShipmentDetail](#ShipmentDetail)] | no | |
8198
7994
  | errors | [string] | no | |
8199
7995
  | order_details | [OrderDetails](#OrderDetails) | yes | |
7996
+ | shipment_details | [[ShipmentDetail](#ShipmentDetail)] | no | |
8200
7997
 
8201
7998
  ---
8202
7999
 
@@ -8219,10 +8016,10 @@ Sms Sent successfully
8219
8016
 
8220
8017
  | Properties | Type | Nullable | Description |
8221
8018
  | ---------- | ---- | -------- | ----------- |
8019
+ | shipment_ids | [string] | no | |
8020
+ | dp_id | number | yes | |
8222
8021
  | order_type | string | yes | |
8223
8022
  | qc_required | string | yes | |
8224
- | dp_id | number | yes | |
8225
- | shipment_ids | [string] | no | |
8226
8023
 
8227
8024
  ---
8228
8025
 
@@ -8233,37 +8030,51 @@ Sms Sent successfully
8233
8030
 
8234
8031
  | Properties | Type | Nullable | Description |
8235
8032
  | ---------- | ---- | -------- | ----------- |
8236
- | success | string | yes | |
8237
8033
  | errors | [string] | no | |
8034
+ | success | string | yes | |
8238
8035
 
8239
8036
  ---
8240
8037
 
8241
8038
 
8242
8039
 
8243
8040
 
8244
- #### [Tax](#Tax)
8041
+ #### [TaxInfo](#TaxInfo)
8245
8042
 
8246
8043
  | Properties | Type | Nullable | Description |
8247
8044
  | ---------- | ---- | -------- | ----------- |
8248
- | rate | number | yes | |
8249
- | amount | string | yes | |
8250
- | breakup | [string] | no | |
8251
- | name | string | yes | |
8045
+ | gstin | string | no | |
8046
+ | b2b_gstin_number | string | no | |
8252
8047
 
8253
8048
  ---
8254
8049
 
8255
8050
 
8256
8051
 
8257
8052
 
8258
- #### [Charge](#Charge)
8053
+ #### [BillingInfo](#BillingInfo)
8259
8054
 
8260
8055
  | Properties | Type | Nullable | Description |
8261
8056
  | ---------- | ---- | -------- | ----------- |
8262
- | name | string | yes | |
8263
- | code | string | no | |
8264
- | type | string | yes | |
8265
- | tax | [Tax](#Tax) | no | |
8266
- | amount | string | yes | |
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 | |
8267
8078
 
8268
8079
  ---
8269
8080
 
@@ -8274,104 +8085,90 @@ Sms Sent successfully
8274
8085
 
8275
8086
  | Properties | Type | Nullable | Description |
8276
8087
  | ---------- | ---- | -------- | ----------- |
8277
- | house_no | string | no | |
8278
- | country_code | string | no | |
8279
- | pincode | string | yes | |
8280
- | slot | [string] | no | |
8281
8088
  | state_code | string | no | |
8089
+ | pincode | string | yes | |
8090
+ | shipping_type | string | no | |
8282
8091
  | customer_code | string | no | |
8283
8092
  | alternate_mobile_number | string | no | |
8284
- | address1 | string | yes | |
8285
- | external_customer_code | string | no | |
8286
- | floor_no | string | no | |
8287
- | middle_name | string | no | |
8288
- | state | string | yes | |
8289
- | gender | string | no | |
8290
- | country | string | yes | |
8291
8093
  | address_type | string | no | |
8094
+ | middle_name | string | no | |
8095
+ | geo_location | string | no | |
8292
8096
  | title | string | no | |
8097
+ | house_no | string | no | |
8098
+ | first_name | string | yes | |
8099
+ | gender | string | no | |
8100
+ | last_name | string | no | |
8101
+ | slot | [string] | no | |
8102
+ | city | string | yes | |
8103
+ | alternate_email | string | no | |
8293
8104
  | primary_email | string | yes | |
8294
- | landmark | string | no | |
8295
8105
  | address2 | string | no | |
8296
- | shipping_type | string | no | |
8297
- | alternate_email | string | no | |
8298
8106
  | primary_mobile_number | string | yes | |
8299
- | city | string | yes | |
8300
- | last_name | string | no | |
8301
- | geo_location | string | no | |
8302
- | first_name | string | yes | |
8107
+ | external_customer_code | string | no | |
8108
+ | state | string | yes | |
8109
+ | address1 | string | yes | |
8110
+ | floor_no | string | no | |
8111
+ | landmark | string | no | |
8112
+ | country_code | string | no | |
8113
+ | country | string | yes | |
8303
8114
 
8304
8115
  ---
8305
8116
 
8306
8117
 
8307
8118
 
8308
8119
 
8309
- #### [BillingInfo](#BillingInfo)
8120
+ #### [PaymentMethod](#PaymentMethod)
8310
8121
 
8311
8122
  | Properties | Type | Nullable | Description |
8312
8123
  | ---------- | ---- | -------- | ----------- |
8313
- | house_no | string | no | |
8314
- | country_code | string | no | |
8315
- | pincode | string | yes | |
8316
- | state_code | string | no | |
8317
- | customer_code | string | no | |
8318
- | alternate_mobile_number | string | no | |
8319
- | address1 | string | yes | |
8320
- | external_customer_code | string | no | |
8321
- | floor_no | string | no | |
8322
- | middle_name | string | no | |
8323
- | state | string | yes | |
8324
- | gender | string | no | |
8325
- | country | string | yes | |
8326
- | title | string | no | |
8327
- | primary_email | string | yes | |
8328
- | address2 | string | no | |
8329
- | alternate_email | string | no | |
8330
- | primary_mobile_number | string | yes | |
8331
- | city | string | yes | |
8332
- | last_name | string | no | |
8333
- | first_name | string | yes | |
8124
+ | refund_by | string | yes | |
8125
+ | mode | string | yes | |
8126
+ | meta | string | no | |
8127
+ | amount | number | yes | |
8128
+ | name | string | yes | |
8129
+ | transaction_data | string | no | |
8130
+ | collect_by | string | yes | |
8334
8131
 
8335
8132
  ---
8336
8133
 
8337
8134
 
8338
8135
 
8339
8136
 
8340
- #### [TaxInfo](#TaxInfo)
8137
+ #### [PaymentInfo](#PaymentInfo)
8341
8138
 
8342
8139
  | Properties | Type | Nullable | Description |
8343
8140
  | ---------- | ---- | -------- | ----------- |
8344
- | gstin | string | no | |
8345
- | b2b_gstin_number | string | no | |
8141
+ | payment_methods | [[PaymentMethod](#PaymentMethod)] | no | |
8142
+ | primary_mode | string | yes | |
8346
8143
 
8347
8144
  ---
8348
8145
 
8349
8146
 
8350
8147
 
8351
8148
 
8352
- #### [PaymentMethod](#PaymentMethod)
8149
+ #### [Tax](#Tax)
8353
8150
 
8354
8151
  | Properties | Type | Nullable | Description |
8355
8152
  | ---------- | ---- | -------- | ----------- |
8356
- | collect_by | string | yes | |
8357
8153
  | name | string | yes | |
8358
- | refund_by | string | yes | |
8359
- | mode | string | yes | |
8360
- | transaction_data | string | no | |
8361
- | meta | string | no | |
8362
- | amount | number | yes | |
8154
+ | breakup | [string] | no | |
8155
+ | amount | string | yes | |
8156
+ | rate | number | yes | |
8363
8157
 
8364
8158
  ---
8365
8159
 
8366
8160
 
8367
8161
 
8368
8162
 
8369
- #### [PaymentInfo](#PaymentInfo)
8163
+ #### [Charge](#Charge)
8370
8164
 
8371
8165
  | Properties | Type | Nullable | Description |
8372
8166
  | ---------- | ---- | -------- | ----------- |
8373
- | payment_methods | [[PaymentMethod](#PaymentMethod)] | no | |
8374
- | primary_mode | string | yes | |
8167
+ | type | string | yes | |
8168
+ | tax | [Tax](#Tax) | no | |
8169
+ | amount | string | yes | |
8170
+ | name | string | yes | |
8171
+ | code | string | no | |
8375
8172
 
8376
8173
  ---
8377
8174
 
@@ -8384,10 +8181,10 @@ Sms Sent successfully
8384
8181
  | ---------- | ---- | -------- | ----------- |
8385
8182
  | pack_by_date | string | no | |
8386
8183
  | dispatch_by_date | string | no | |
8387
- | dispatch_after_date | string | no | |
8388
- | dp_pickup_slot | string | no | |
8389
8184
  | confirm_by_date | string | no | |
8390
8185
  | customer_pickup_slot | string | no | |
8186
+ | dp_pickup_slot | string | no | |
8187
+ | dispatch_after_date | string | no | |
8391
8188
 
8392
8189
  ---
8393
8190
 
@@ -8398,11 +8195,11 @@ Sms Sent successfully
8398
8195
 
8399
8196
  | Properties | Type | Nullable | Description |
8400
8197
  | ---------- | ---- | -------- | ----------- |
8401
- | quantity | number | no | |
8402
- | charges | [[Charge](#Charge)] | no | |
8403
8198
  | external_line_id | string | no | |
8404
- | seller_identifier | string | yes | |
8405
8199
  | meta | string | no | |
8200
+ | quantity | number | no | |
8201
+ | seller_identifier | string | yes | |
8202
+ | charges | [[Charge](#Charge)] | no | |
8406
8203
  | custom_messasge | string | no | |
8407
8204
 
8408
8205
  ---
@@ -8415,11 +8212,11 @@ Sms Sent successfully
8415
8212
  | Properties | Type | Nullable | Description |
8416
8213
  | ---------- | ---- | -------- | ----------- |
8417
8214
  | processing_dates | [ProcessingDates](#ProcessingDates) | no | |
8418
- | location_id | number | yes | |
8419
- | external_shipment_id | string | no | |
8420
- | priority | number | no | |
8421
8215
  | meta | string | no | |
8216
+ | external_shipment_id | string | no | |
8217
+ | location_id | number | yes | |
8422
8218
  | line_items | [[LineItem](#LineItem)] | yes | |
8219
+ | priority | number | no | |
8423
8220
 
8424
8221
  ---
8425
8222
 
@@ -8430,16 +8227,16 @@ Sms Sent successfully
8430
8227
 
8431
8228
  | Properties | Type | Nullable | Description |
8432
8229
  | ---------- | ---- | -------- | ----------- |
8433
- | charges | [[Charge](#Charge)] | no | |
8434
- | shipping_info | [ShippingInfo](#ShippingInfo) | yes | |
8435
- | billing_info | [BillingInfo](#BillingInfo) | yes | |
8436
- | currency_info | string | no | |
8437
8230
  | tax_info | [TaxInfo](#TaxInfo) | no | |
8231
+ | billing_info | [BillingInfo](#BillingInfo) | yes | |
8232
+ | shipping_info | [ShippingInfo](#ShippingInfo) | yes | |
8233
+ | meta | string | no | |
8438
8234
  | external_creation_date | string | no | |
8439
8235
  | payment_info | [PaymentInfo](#PaymentInfo) | yes | |
8236
+ | charges | [[Charge](#Charge)] | no | |
8237
+ | currency_info | string | no | |
8440
8238
  | shipments | [[Shipment](#Shipment)] | yes | |
8441
8239
  | external_order_id | string | no | |
8442
- | meta | string | no | |
8443
8240
 
8444
8241
  ---
8445
8242
 
@@ -8450,51 +8247,51 @@ Sms Sent successfully
8450
8247
 
8451
8248
  | Properties | Type | Nullable | Description |
8452
8249
  | ---------- | ---- | -------- | ----------- |
8453
- | status | number | yes | |
8454
- | code | string | no | |
8455
- | message | string | yes | |
8456
- | stack_trace | string | no | |
8457
- | exception | string | no | |
8458
8250
  | request_id | string | no | |
8251
+ | exception | string | no | |
8459
8252
  | meta | string | no | |
8253
+ | message | string | yes | |
8254
+ | status | number | yes | |
8255
+ | code | string | no | |
8460
8256
  | info | any | no | |
8257
+ | stack_trace | string | no | |
8461
8258
 
8462
8259
  ---
8463
8260
 
8464
8261
 
8465
8262
 
8466
8263
 
8467
- #### [DpConfiguration](#DpConfiguration)
8264
+ #### [PaymentMethods](#PaymentMethods)
8468
8265
 
8469
8266
  | Properties | Type | Nullable | Description |
8470
8267
  | ---------- | ---- | -------- | ----------- |
8471
- | shipping_by | string | no | |
8268
+ | collect_by | string | no | |
8269
+ | mode | string | no | |
8270
+ | refund_by | string | no | |
8472
8271
 
8473
8272
  ---
8474
8273
 
8475
8274
 
8476
8275
 
8477
8276
 
8478
- #### [PaymentMethods](#PaymentMethods)
8277
+ #### [CreateChannelPaymentInfo](#CreateChannelPaymentInfo)
8479
8278
 
8480
8279
  | Properties | Type | Nullable | Description |
8481
8280
  | ---------- | ---- | -------- | ----------- |
8482
- | collect_by | string | no | |
8483
- | refund_by | string | no | |
8484
- | mode | string | no | |
8281
+ | mode_of_payment | string | no | |
8282
+ | source | string | no | |
8283
+ | payment_methods | [[PaymentMethods](#PaymentMethods)] | no | |
8485
8284
 
8486
8285
  ---
8487
8286
 
8488
8287
 
8489
8288
 
8490
8289
 
8491
- #### [CreateChannelPaymentInfo](#CreateChannelPaymentInfo)
8290
+ #### [DpConfiguration](#DpConfiguration)
8492
8291
 
8493
8292
  | Properties | Type | Nullable | Description |
8494
8293
  | ---------- | ---- | -------- | ----------- |
8495
- | payment_methods | [[PaymentMethods](#PaymentMethods)] | no | |
8496
- | mode_of_payment | string | no | |
8497
- | source | string | no | |
8294
+ | shipping_by | string | no | |
8498
8295
 
8499
8296
  ---
8500
8297
 
@@ -8505,12 +8302,12 @@ Sms Sent successfully
8505
8302
 
8506
8303
  | Properties | Type | Nullable | Description |
8507
8304
  | ---------- | ---- | -------- | ----------- |
8508
- | shipment_assignment | string | no | |
8305
+ | lock_states | [string] | no | |
8306
+ | logo_url | string | no | |
8509
8307
  | location_reassignment | boolean | no | |
8510
- | dp_configuration | [DpConfiguration](#DpConfiguration) | no | |
8308
+ | shipment_assignment | string | no | |
8511
8309
  | payment_info | [CreateChannelPaymentInfo](#CreateChannelPaymentInfo) | no | |
8512
- | logo_url | string | no | |
8513
- | lock_states | [string] | no | |
8310
+ | dp_configuration | [DpConfiguration](#DpConfiguration) | no | |
8514
8311
 
8515
8312
  ---
8516
8313
 
@@ -8528,24 +8325,24 @@ Sms Sent successfully
8528
8325
 
8529
8326
 
8530
8327
 
8531
- #### [CreateChannelConfigResponse](#CreateChannelConfigResponse)
8328
+ #### [CreateChannelConifgErrorResponse](#CreateChannelConifgErrorResponse)
8532
8329
 
8533
8330
  | Properties | Type | Nullable | Description |
8534
8331
  | ---------- | ---- | -------- | ----------- |
8535
- | acknowledged | boolean | no | |
8536
- | is_inserted | boolean | no | |
8537
- | is_upserted | boolean | no | |
8332
+ | error | string | no | |
8538
8333
 
8539
8334
  ---
8540
8335
 
8541
8336
 
8542
8337
 
8543
8338
 
8544
- #### [CreateChannelConifgErrorResponse](#CreateChannelConifgErrorResponse)
8339
+ #### [CreateChannelConfigResponse](#CreateChannelConfigResponse)
8545
8340
 
8546
8341
  | Properties | Type | Nullable | Description |
8547
8342
  | ---------- | ---- | -------- | ----------- |
8548
- | error | string | no | |
8343
+ | is_upserted | boolean | no | |
8344
+ | is_inserted | boolean | no | |
8345
+ | acknowledged | boolean | no | |
8549
8346
 
8550
8347
  ---
8551
8348
 
@@ -8556,8 +8353,8 @@ Sms Sent successfully
8556
8353
 
8557
8354
  | Properties | Type | Nullable | Description |
8558
8355
  | ---------- | ---- | -------- | ----------- |
8559
- | manifest_id | string | yes | |
8560
8356
  | consent_url | string | yes | |
8357
+ | manifest_id | string | yes | |
8561
8358
 
8562
8359
  ---
8563
8360
 
@@ -8579,8 +8376,8 @@ Sms Sent successfully
8579
8376
 
8580
8377
  | Properties | Type | Nullable | Description |
8581
8378
  | ---------- | ---- | -------- | ----------- |
8582
- | success | boolean | no | |
8583
8379
  | message | [string] | no | |
8380
+ | success | boolean | no | |
8584
8381
 
8585
8382
  ---
8586
8383
 
@@ -8604,8 +8401,8 @@ Sms Sent successfully
8604
8401
  | ---------- | ---- | -------- | ----------- |
8605
8402
  | end_date | string | yes | |
8606
8403
  | mobile | number | yes | |
8607
- | start_date | string | yes | |
8608
8404
  | order_details | [[FyndOrderIdList](#FyndOrderIdList)] | no | |
8405
+ | start_date | string | yes | |
8609
8406
 
8610
8407
  ---
8611
8408