@gofynd/fdk-client-javascript 0.1.36 → 1.0.0

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