@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
@@ -3385,8 +3385,8 @@ Success. Check the example shown below
3385
3385
  "data": {
3386
3386
  "amount": 2190000,
3387
3387
  "order_id": "order_JeaZ5ryKO01rno",
3388
- "email": "pratikpatel@gofynd.com",
3389
- "contact": "8879805874",
3388
+ "email": "abc@example.com",
3389
+ "contact": "9999999999",
3390
3390
  "currency": "INR",
3391
3391
  "customer_id": "cust_CZgcLVGsGP8BUQ",
3392
3392
  "callback_url": "https://api.fyndx0.com/service/webhooks/payment/v1.0/callback/link/?razorpay_order_id=order_JeaZ5ryKO01rno",
@@ -3824,16 +3824,16 @@ Success. Returns the status of payment. Check the example shown below or refer `
3824
3824
 
3825
3825
  | Properties | Type | Nullable | Description |
3826
3826
  | ---------- | ---- | -------- | ----------- |
3827
+ | config_type | string | yes | Fynd or self payment gateway |
3828
+ | key | string | yes | Payment gateway api key |
3829
+ | verify_api | string | no | Payment gateway verify payment api endpoint |
3827
3830
  | pin | string | no | Masked pin |
3831
+ | secret | string | yes | Masked payment gateway api secret |
3828
3832
  | merchant_id | string | no | Unique merchant id |
3829
- | api | string | no | Payment gateway api endpoint |
3833
+ | user_id | string | no | Registered User id |
3830
3834
  | sdk | boolean | no | SDK |
3831
- | secret | string | yes | Masked payment gateway api secret |
3832
- | config_type | string | yes | Fynd or self payment gateway |
3833
- | verify_api | string | no | Payment gateway verify payment api endpoint |
3835
+ | api | string | no | Payment gateway api endpoint |
3834
3836
  | merchant_key | string | no | Unique merchant key |
3835
- | key | string | yes | Payment gateway api key |
3836
- | user_id | string | no | Registered User id |
3837
3837
 
3838
3838
  ---
3839
3839
 
@@ -3844,16 +3844,16 @@ Success. Returns the status of payment. Check the example shown below or refer `
3844
3844
 
3845
3845
  | Properties | Type | Nullable | Description |
3846
3846
  | ---------- | ---- | -------- | ----------- |
3847
+ | env | string | yes | Environment i.e Live or Test |
3848
+ | ccavenue | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
3847
3849
  | juspay | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
3848
- | simpl | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
3849
- | success | boolean | yes | |
3850
- | stripe | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
3851
- | rupifi | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
3852
3850
  | mswipe | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
3853
3851
  | razorpay | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
3854
- | env | string | yes | Environment i.e Live or Test |
3855
- | ccavenue | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
3852
+ | simpl | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
3856
3853
  | payumoney | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
3854
+ | stripe | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
3855
+ | success | boolean | yes | |
3856
+ | rupifi | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
3857
3857
 
3858
3858
  ---
3859
3859
 
@@ -3864,8 +3864,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
3864
3864
 
3865
3865
  | Properties | Type | Nullable | Description |
3866
3866
  | ---------- | ---- | -------- | ----------- |
3867
- | description | string | yes | Error human understandable description. |
3868
3867
  | code | string | yes | Error descrption code. |
3868
+ | description | string | yes | Error human understandable description. |
3869
3869
 
3870
3870
  ---
3871
3871
 
@@ -3876,8 +3876,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
3876
3876
 
3877
3877
  | Properties | Type | Nullable | Description |
3878
3878
  | ---------- | ---- | -------- | ----------- |
3879
- | error | [ErrorCodeAndDescription](#ErrorCodeAndDescription) | yes | |
3880
3879
  | success | boolean | yes | Response is successful or not |
3880
+ | error | [ErrorCodeAndDescription](#ErrorCodeAndDescription) | yes | |
3881
3881
 
3882
3882
  ---
3883
3883
 
@@ -3890,8 +3890,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
3890
3890
  | ---------- | ---- | -------- | ----------- |
3891
3891
  | card_id | string | yes | Card token of payment gateway. |
3892
3892
  | nickname | string | no | |
3893
- | refresh | boolean | no | Refresh cache flag. |
3894
3893
  | name_on_card | string | no | |
3894
+ | refresh | boolean | no | Refresh cache flag. |
3895
3895
 
3896
3896
  ---
3897
3897
 
@@ -3915,8 +3915,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
3915
3915
 
3916
3916
  | Properties | Type | Nullable | Description |
3917
3917
  | ---------- | ---- | -------- | ----------- |
3918
- | aggregator | string | yes | Payment gateway name. |
3919
3918
  | customer_id | string | no | Payment gateway customer id. |
3919
+ | aggregator | string | yes | Payment gateway name. |
3920
3920
  | api | string | no | Payment gateway CARD api endpoint |
3921
3921
 
3922
3922
  ---
@@ -3928,8 +3928,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
3928
3928
 
3929
3929
  | Properties | Type | Nullable | Description |
3930
3930
  | ---------- | ---- | -------- | ----------- |
3931
- | success | boolean | yes | Response is successful or not. |
3932
3931
  | cards | [CardPaymentGateway](#CardPaymentGateway) | yes | Card's payment gateway with customer id. |
3932
+ | success | boolean | yes | Response is successful or not. |
3933
3933
  | message | string | yes | Human readable message. |
3934
3934
 
3935
3935
  ---
@@ -3941,23 +3941,23 @@ Success. Returns the status of payment. Check the example shown below or refer `
3941
3941
 
3942
3942
  | Properties | Type | Nullable | Description |
3943
3943
  | ---------- | ---- | -------- | ----------- |
3944
- | card_id | string | no | card_id |
3945
- | nickname | string | no | nickname |
3946
3944
  | card_reference | string | no | card_reference |
3947
- | card_type | string | no | card_type |
3948
- | compliant_with_tokenisation_guidelines | boolean | no | If card is tokenised or not |
3949
- | card_brand_image | string | no | card_brand_image |
3950
- | card_token | string | no | card_token |
3951
- | card_number | string | no | card_number |
3945
+ | card_fingerprint | string | no | card_fingerprint |
3952
3946
  | card_isin | string | no | card_isin |
3947
+ | card_brand | string | no | card_brand |
3948
+ | compliant_with_tokenisation_guidelines | boolean | no | If card is tokenised or not |
3953
3949
  | exp_year | number | no | exp_year |
3954
- | exp_month | number | no | exp_month |
3955
- | card_name | string | no | card_name |
3956
3950
  | aggregator_name | string | yes | aggregator_name |
3957
- | expired | boolean | no | expired |
3958
- | card_fingerprint | string | no | card_fingerprint |
3959
- | card_brand | string | no | card_brand |
3960
3951
  | card_issuer | string | no | card_issuer |
3952
+ | nickname | string | no | nickname |
3953
+ | card_token | string | no | card_token |
3954
+ | card_name | string | no | card_name |
3955
+ | expired | boolean | no | expired |
3956
+ | exp_month | number | no | exp_month |
3957
+ | card_brand_image | string | no | card_brand_image |
3958
+ | card_number | string | no | card_number |
3959
+ | card_id | string | no | card_id |
3960
+ | card_type | string | no | card_type |
3961
3961
 
3962
3962
  ---
3963
3963
 
@@ -4004,14 +4004,14 @@ Success. Returns the status of payment. Check the example shown below or refer `
4004
4004
 
4005
4005
  | Properties | Type | Nullable | Description |
4006
4006
  | ---------- | ---- | -------- | ----------- |
4007
- | delivery_address | string | no | Extra meta fields. |
4008
- | order_items | [string] | no | Extra meta fields. |
4007
+ | merchant_params | string | no | Extra meta fields. |
4008
+ | transaction_amount_in_paise | number | yes | Payable amount in paise |
4009
4009
  | phone_number | string | yes | User mobile number without country code. |
4010
+ | aggregator | string | yes | Payment gateway name in camel case i.e Simpl, Rupifi |
4010
4011
  | billing_address | string | no | Extra meta fields. |
4011
4012
  | payload | string | no | Hashed payload string. |
4012
- | transaction_amount_in_paise | number | yes | Payable amount in paise |
4013
- | aggregator | string | yes | Payment gateway name in camel case i.e Simpl, Rupifi |
4014
- | merchant_params | string | no | Extra meta fields. |
4013
+ | order_items | [string] | no | Extra meta fields. |
4014
+ | delivery_address | string | no | Extra meta fields. |
4015
4015
 
4016
4016
  ---
4017
4017
 
@@ -4035,10 +4035,10 @@ Success. Returns the status of payment. Check the example shown below or refer `
4035
4035
 
4036
4036
  | Properties | Type | Nullable | Description |
4037
4037
  | ---------- | ---- | -------- | ----------- |
4038
- | verified | boolean | no | Already Verified flag from payment gateway i.e Mswipe |
4039
- | order_id | string | yes | Unique order id. |
4040
4038
  | transaction_token | string | no | Transaction token of payment gateway. |
4041
4039
  | aggregator | string | yes | Payment gateway name i.e Simpl, Mswipe |
4040
+ | order_id | string | yes | Unique order id. |
4041
+ | verified | boolean | no | Already Verified flag from payment gateway i.e Mswipe |
4042
4042
  | amount | number | yes | Chargable amount of order. |
4043
4043
 
4044
4044
  ---
@@ -4050,13 +4050,13 @@ Success. Returns the status of payment. Check the example shown below or refer `
4050
4050
 
4051
4051
  | Properties | Type | Nullable | Description |
4052
4052
  | ---------- | ---- | -------- | ----------- |
4053
- | success | boolean | yes | Response is successful or not. |
4054
- | status | string | yes | Status of charged payment. |
4053
+ | aggregator | string | yes | Payment gateway name i.e Simpl, Mswipe |
4055
4054
  | order_id | string | yes | Unique order id. |
4056
- | cart_id | string | no | Cart id of customer |
4057
4055
  | message | string | yes | Human readable message. |
4056
+ | cart_id | string | no | Cart id of customer |
4058
4057
  | delivery_address_id | string | no | Delivery adddress id of customer |
4059
- | aggregator | string | yes | Payment gateway name i.e Simpl, Mswipe |
4058
+ | success | boolean | yes | Response is successful or not. |
4059
+ | status | string | yes | Status of charged payment. |
4060
4060
 
4061
4061
  ---
4062
4062
 
@@ -4067,18 +4067,18 @@ Success. Returns the status of payment. Check the example shown below or refer `
4067
4067
 
4068
4068
  | Properties | Type | Nullable | Description |
4069
4069
  | ---------- | ---- | -------- | ----------- |
4070
- | currency | string | yes | Currency code. |
4071
- | timeout | number | no | Payment polling timeout if not recieved response |
4072
4070
  | email | string | yes | Customer valid email |
4071
+ | vpa | string | no | Customer vpa address |
4072
+ | aggregator | string | yes | Payment gateway name |
4073
4073
  | merchant_order_id | string | yes | Unique fynd order id |
4074
4074
  | order_id | string | yes | Payment gateway order id |
4075
- | customer_id | string | yes | Payment gateway customer id. |
4075
+ | currency | string | yes | Currency code. |
4076
+ | timeout | number | no | Payment polling timeout if not recieved response |
4076
4077
  | contact | string | yes | Customer valid mobile number |
4077
- | vpa | string | no | Customer vpa address |
4078
- | aggregator | string | yes | Payment gateway name |
4079
- | razorpay_payment_id | string | no | Payment gateway payment id |
4080
4078
  | amount | number | yes | Payable amount. |
4079
+ | customer_id | string | yes | Payment gateway customer id. |
4081
4080
  | method | string | yes | Payment method |
4081
+ | razorpay_payment_id | string | no | Payment gateway payment id |
4082
4082
 
4083
4083
  ---
4084
4084
 
@@ -4089,21 +4089,21 @@ Success. Returns the status of payment. Check the example shown below or refer `
4089
4089
 
4090
4090
  | Properties | Type | Nullable | Description |
4091
4091
  | ---------- | ---- | -------- | ----------- |
4092
- | currency | string | no | Currency code. |
4093
- | success | boolean | yes | Response is successful or not. |
4094
- | aggregator_order_id | string | no | Payment order id |
4095
- | timeout | number | no | timeout. |
4096
- | status | string | no | Status of payment. |
4097
- | bqr_image | string | no | Bharath qr image url. |
4098
- | upi_poll_url | string | no | UPI poll url. |
4099
- | customer_id | string | no | Payment gateway customer id. |
4100
- | virtual_id | string | no | Payment virtual address. |
4101
- | razorpay_payment_id | string | no | Payment id. |
4102
- | polling_url | string | yes | Polling url. |
4103
4092
  | vpa | string | no | Customer vpa address |
4104
- | aggregator | string | yes | Payment gateway name |
4093
+ | polling_url | string | yes | Polling url. |
4094
+ | upi_poll_url | string | no | UPI poll url. |
4105
4095
  | merchant_order_id | string | yes | order id |
4096
+ | aggregator | string | yes | Payment gateway name |
4097
+ | virtual_id | string | no | Payment virtual address. |
4098
+ | currency | string | no | Currency code. |
4099
+ | timeout | number | no | timeout. |
4106
4100
  | amount | number | no | Payable amount. |
4101
+ | aggregator_order_id | string | no | Payment order id |
4102
+ | razorpay_payment_id | string | no | Payment id. |
4103
+ | customer_id | string | no | Payment gateway customer id. |
4104
+ | success | boolean | yes | Response is successful or not. |
4105
+ | bqr_image | string | no | Bharath qr image url. |
4106
+ | status | string | no | Status of payment. |
4107
4107
  | method | string | yes | Payment method |
4108
4108
 
4109
4109
  ---
@@ -4115,16 +4115,16 @@ Success. Returns the status of payment. Check the example shown below or refer `
4115
4115
 
4116
4116
  | Properties | Type | Nullable | Description |
4117
4117
  | ---------- | ---- | -------- | ----------- |
4118
- | currency | string | yes | Currency code. |
4119
4118
  | email | string | yes | Customer valid email |
4120
- | status | string | yes | Status of payment. |
4121
- | order_id | string | yes | Payment gateway order id |
4122
- | customer_id | string | yes | Payment gateway customer id. |
4123
- | contact | string | yes | Customer valid mobile number |
4124
4119
  | vpa | string | yes | Customer vpa address |
4125
4120
  | aggregator | string | yes | Payment gateway name |
4126
4121
  | merchant_order_id | string | yes | Unique fynd order id |
4122
+ | order_id | string | yes | Payment gateway order id |
4123
+ | currency | string | yes | Currency code. |
4124
+ | contact | string | yes | Customer valid mobile number |
4127
4125
  | amount | number | yes | Payable amount. |
4126
+ | customer_id | string | yes | Payment gateway customer id. |
4127
+ | status | string | yes | Status of payment. |
4128
4128
  | method | string | yes | Payment method |
4129
4129
 
4130
4130
  ---
@@ -4136,11 +4136,48 @@ Success. Returns the status of payment. Check the example shown below or refer `
4136
4136
 
4137
4137
  | Properties | Type | Nullable | Description |
4138
4138
  | ---------- | ---- | -------- | ----------- |
4139
- | success | boolean | no | Response is successful or not |
4139
+ | retry | boolean | yes | Response is successful or not. |
4140
+ | aggregator_name | string | yes | Payment gateway name |
4140
4141
  | redirect_url | string | no | Redirect url |
4142
+ | success | boolean | no | Response is successful or not |
4141
4143
  | status | string | yes | Payment status |
4142
- | aggregator_name | string | yes | Payment gateway name |
4143
- | retry | boolean | yes | Response is successful or not. |
4144
+
4145
+ ---
4146
+
4147
+
4148
+
4149
+
4150
+ #### [AggregatorRoute](#AggregatorRoute)
4151
+
4152
+ | Properties | Type | Nullable | Description |
4153
+ | ---------- | ---- | -------- | ----------- |
4154
+ | payment_flow | string | no | payment_flow |
4155
+ | data | string | no | Data |
4156
+ | api_link | string | no | api_link |
4157
+ | payment_flow_data | string | no | payment_flow_data |
4158
+
4159
+ ---
4160
+
4161
+
4162
+
4163
+
4164
+ #### [PaymentFlow](#PaymentFlow)
4165
+
4166
+ | Properties | Type | Nullable | Description |
4167
+ | ---------- | ---- | -------- | ----------- |
4168
+ | fynd | [AggregatorRoute](#AggregatorRoute) | no | Fynd |
4169
+ | bqr_razorpay | [AggregatorRoute](#AggregatorRoute) | no | BQR_Razorpay |
4170
+ | juspay | [AggregatorRoute](#AggregatorRoute) | no | Juspay |
4171
+ | ccavenue | [AggregatorRoute](#AggregatorRoute) | no | Ccavenue |
4172
+ | jiopay | [AggregatorRoute](#AggregatorRoute) | no | Jiopay |
4173
+ | mswipe | [AggregatorRoute](#AggregatorRoute) | no | mswipe |
4174
+ | upi_razorpay | [AggregatorRoute](#AggregatorRoute) | no | UPI_Razorpay |
4175
+ | razorpay | [AggregatorRoute](#AggregatorRoute) | no | Razorpay |
4176
+ | simpl | [AggregatorRoute](#AggregatorRoute) | no | simpl |
4177
+ | epaylater | [AggregatorRoute](#AggregatorRoute) | no | Epaylater |
4178
+ | stripe | [AggregatorRoute](#AggregatorRoute) | no | Stripe |
4179
+ | rupifi | [AggregatorRoute](#AggregatorRoute) | no | Rupifi |
4180
+ | payubiz | [AggregatorRoute](#AggregatorRoute) | no | Payubiz |
4144
4181
 
4145
4182
  ---
4146
4183
 
@@ -4151,8 +4188,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
4151
4188
 
4152
4189
  | Properties | Type | Nullable | Description |
4153
4190
  | ---------- | ---- | -------- | ----------- |
4154
- | small | string | yes | smalll |
4155
4191
  | large | string | yes | large |
4192
+ | small | string | yes | smalll |
4156
4193
 
4157
4194
  ---
4158
4195
 
@@ -4164,9 +4201,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
4164
4201
  | Properties | Type | Nullable | Description |
4165
4202
  | ---------- | ---- | -------- | ----------- |
4166
4203
  | code | string | no | code |
4204
+ | display_name | string | no | display_name |
4167
4205
  | logos | [PaymentModeLogo](#PaymentModeLogo) | no | logos |
4168
4206
  | package_name | string | no | package_name |
4169
- | display_name | string | no | display_name |
4170
4207
 
4171
4208
  ---
4172
4209
 
@@ -4177,8 +4214,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
4177
4214
 
4178
4215
  | Properties | Type | Nullable | Description |
4179
4216
  | ---------- | ---- | -------- | ----------- |
4180
- | package_name | string | no | package_name |
4181
4217
  | code | string | no | code |
4218
+ | package_name | string | no | package_name |
4182
4219
 
4183
4220
  ---
4184
4221
 
@@ -4189,39 +4226,39 @@ Success. Returns the status of payment. Check the example shown below or refer `
4189
4226
 
4190
4227
  | Properties | Type | Nullable | Description |
4191
4228
  | ---------- | ---- | -------- | ----------- |
4192
- | nickname | string | no | nickname |
4193
- | card_reference | string | no | card_reference |
4194
- | card_type | string | no | card_type |
4195
- | intent_flow | boolean | no | intent_flow |
4196
- | card_brand_image | string | no | card_brand_image |
4197
- | display_name | string | no | display name |
4198
- | card_number | string | no | card_number |
4229
+ | card_issuer | string | no | card_issuer |
4230
+ | aggregator_name | string | yes | aggregator_name |
4231
+ | card_name | string | no | card_name |
4232
+ | expired | boolean | no | expired |
4233
+ | name | string | no | name |
4199
4234
  | exp_month | number | no | exp_month |
4200
- | display_priority | number | no | Dispaly Priority |
4201
4235
  | timeout | number | no | timeout |
4236
+ | card_brand | string | no | card_brand |
4237
+ | card_id | string | no | card_id |
4202
4238
  | intent_app | [[IntentApp](#IntentApp)] | no | intent_app |
4203
- | card_name | string | no | card_name |
4204
- | card_issuer | string | no | card_issuer |
4205
- | intent_app_error_list | [string] | no | intent_app_error_list |
4206
- | cod_limit_per_order | number | no | Cod limit per order |
4207
- | logo_url | [PaymentModeLogo](#PaymentModeLogo) | no | Logo |
4208
- | retry_count | number | no | retry_count |
4209
- | card_fingerprint | string | no | card_fingerprint |
4210
- | name | string | no | name |
4211
4239
  | intent_app_error_dict_list | [[IntentAppErrorList](#IntentAppErrorList)] | no | intent_app_error_dict_list |
4212
- | cod_limit | number | no | cod limit |
4240
+ | retry_count | number | no | retry_count |
4241
+ | exp_year | number | no | exp_year |
4242
+ | display_priority | number | no | Dispaly Priority |
4243
+ | card_token | string | no | card_token |
4213
4244
  | fynd_vpa | string | no | fynd_vpa |
4245
+ | cod_limit_per_order | number | no | Cod limit per order |
4246
+ | cod_limit | number | no | cod limit |
4247
+ | card_type | string | no | card_type |
4248
+ | display_name | string | no | display name |
4249
+ | card_reference | string | no | card_reference |
4250
+ | card_isin | string | no | card_isin |
4251
+ | compliant_with_tokenisation_guidelines | boolean | no | If card is tokenised or not |
4252
+ | card_brand_image | string | no | card_brand_image |
4214
4253
  | code | string | no | code |
4215
- | card_token | string | no | card_token |
4254
+ | card_fingerprint | string | no | card_fingerprint |
4255
+ | intent_flow | boolean | no | intent_flow |
4256
+ | logo_url | [PaymentModeLogo](#PaymentModeLogo) | no | Logo |
4257
+ | nickname | string | no | nickname |
4216
4258
  | merchant_code | string | no | merchant code |
4217
- | card_isin | string | no | card_isin |
4218
4259
  | remaining_limit | number | no | Remaining limit |
4219
- | card_id | string | no | card_id |
4220
- | compliant_with_tokenisation_guidelines | boolean | no | If card is tokenised or not |
4221
- | exp_year | number | no | exp_year |
4222
- | expired | boolean | no | expired |
4223
- | aggregator_name | string | yes | aggregator_name |
4224
- | card_brand | string | no | card_brand |
4260
+ | card_number | string | no | card_number |
4261
+ | intent_app_error_list | [string] | no | intent_app_error_list |
4225
4262
 
4226
4263
  ---
4227
4264
 
@@ -4232,14 +4269,14 @@ Success. Returns the status of payment. Check the example shown below or refer `
4232
4269
 
4233
4270
  | Properties | Type | Nullable | Description |
4234
4271
  | ---------- | ---- | -------- | ----------- |
4235
- | save_card | boolean | no | Card save or not |
4236
4272
  | display_name | string | yes | Payment mode display name |
4237
- | name | string | yes | Payment mode name |
4273
+ | save_card | boolean | no | Card save or not |
4238
4274
  | add_card_enabled | boolean | no | Annonymous card flag |
4239
- | is_pay_by_card_pl | boolean | no | This flag will be true in case of Payment link payment through card |
4240
- | list | [[PaymentModeList](#PaymentModeList)] | no | Payment mode |
4241
4275
  | aggregator_name | string | no | Dispaly Priority |
4242
4276
  | display_priority | number | yes | Dispaly Priority |
4277
+ | list | [[PaymentModeList](#PaymentModeList)] | no | Payment mode |
4278
+ | name | string | yes | Payment mode name |
4279
+ | is_pay_by_card_pl | boolean | no | This flag will be true in case of Payment link payment through card |
4243
4280
  | anonymous_enable | boolean | no | Annonymous card flag |
4244
4281
 
4245
4282
  ---
@@ -4247,49 +4284,12 @@ Success. Returns the status of payment. Check the example shown below or refer `
4247
4284
 
4248
4285
 
4249
4286
 
4250
- #### [AggregatorRoute](#AggregatorRoute)
4251
-
4252
- | Properties | Type | Nullable | Description |
4253
- | ---------- | ---- | -------- | ----------- |
4254
- | api_link | string | no | api_link |
4255
- | payment_flow_data | string | no | payment_flow_data |
4256
- | data | string | no | Data |
4257
- | payment_flow | string | no | payment_flow |
4258
-
4259
- ---
4260
-
4261
-
4262
-
4263
-
4264
- #### [PaymentFlow](#PaymentFlow)
4265
-
4266
- | Properties | Type | Nullable | Description |
4267
- | ---------- | ---- | -------- | ----------- |
4268
- | simpl | [AggregatorRoute](#AggregatorRoute) | no | simpl |
4269
- | juspay | [AggregatorRoute](#AggregatorRoute) | no | Juspay |
4270
- | stripe | [AggregatorRoute](#AggregatorRoute) | no | Stripe |
4271
- | rupifi | [AggregatorRoute](#AggregatorRoute) | no | Rupifi |
4272
- | payubiz | [AggregatorRoute](#AggregatorRoute) | no | Payubiz |
4273
- | mswipe | [AggregatorRoute](#AggregatorRoute) | no | mswipe |
4274
- | razorpay | [AggregatorRoute](#AggregatorRoute) | no | Razorpay |
4275
- | bqr_razorpay | [AggregatorRoute](#AggregatorRoute) | no | BQR_Razorpay |
4276
- | ccavenue | [AggregatorRoute](#AggregatorRoute) | no | Ccavenue |
4277
- | fynd | [AggregatorRoute](#AggregatorRoute) | no | Fynd |
4278
- | epaylater | [AggregatorRoute](#AggregatorRoute) | no | Epaylater |
4279
- | jiopay | [AggregatorRoute](#AggregatorRoute) | no | Jiopay |
4280
- | upi_razorpay | [AggregatorRoute](#AggregatorRoute) | no | UPI_Razorpay |
4281
-
4282
- ---
4283
-
4284
-
4285
-
4286
-
4287
4287
  #### [PaymentOptionAndFlow](#PaymentOptionAndFlow)
4288
4288
 
4289
4289
  | Properties | Type | Nullable | Description |
4290
4290
  | ---------- | ---- | -------- | ----------- |
4291
- | payment_option | [[RootPaymentMode](#RootPaymentMode)] | yes | Payment options |
4292
4291
  | payment_flows | [PaymentFlow](#PaymentFlow) | yes | payment_flows |
4292
+ | payment_option | [[RootPaymentMode](#RootPaymentMode)] | yes | Payment options |
4293
4293
 
4294
4294
  ---
4295
4295
 
@@ -4300,8 +4300,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
4300
4300
 
4301
4301
  | Properties | Type | Nullable | Description |
4302
4302
  | ---------- | ---- | -------- | ----------- |
4303
- | success | boolean | yes | Response is successful or not |
4304
4303
  | payment_options | [PaymentOptionAndFlow](#PaymentOptionAndFlow) | yes | payment_options |
4304
+ | success | boolean | yes | Response is successful or not |
4305
4305
 
4306
4306
  ---
4307
4307
 
@@ -4336,9 +4336,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
4336
4336
 
4337
4337
  | Properties | Type | Nullable | Description |
4338
4338
  | ---------- | ---- | -------- | ----------- |
4339
+ | message | string | no | ePayLater message |
4339
4340
  | status | string | no | Epaylater KYC status |
4340
4341
  | display | boolean | yes | Need to display banner or not |
4341
- | message | string | no | ePayLater message |
4342
4342
 
4343
4343
  ---
4344
4344
 
@@ -4361,8 +4361,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
4361
4361
 
4362
4362
  | Properties | Type | Nullable | Description |
4363
4363
  | ---------- | ---- | -------- | ----------- |
4364
- | request_type | string | yes | Either resend or cancel |
4365
4364
  | order_id | string | yes | Unique order id |
4365
+ | request_type | string | yes | Either resend or cancel |
4366
4366
 
4367
4367
  ---
4368
4368
 
@@ -4431,10 +4431,10 @@ Success. Returns the status of payment. Check the example shown below or refer `
4431
4431
 
4432
4432
  | Properties | Type | Nullable | Description |
4433
4433
  | ---------- | ---- | -------- | ----------- |
4434
- | status | string | yes | VALID or INVALID |
4434
+ | upi_vpa | string | yes | UPI ID |
4435
4435
  | customer_name | string | yes | Customer Bank |
4436
+ | status | string | yes | VALID or INVALID |
4436
4437
  | is_valid | boolean | yes | boolean is true or false. |
4437
- | upi_vpa | string | yes | UPI ID |
4438
4438
 
4439
4439
  ---
4440
4440
 
@@ -4458,10 +4458,10 @@ Success. Returns the status of payment. Check the example shown below or refer `
4458
4458
  | Properties | Type | Nullable | Description |
4459
4459
  | ---------- | ---- | -------- | ----------- |
4460
4460
  | id | number | yes | |
4461
- | logo_large | string | yes | Beneficiary large Logo |
4462
4461
  | display_name | string | no | Beneficiary Display Name |
4463
4462
  | name | string | yes | Beneficiary Name |
4464
4463
  | logo_small | string | yes | Beneficiary small Logo |
4464
+ | logo_large | string | yes | Beneficiary large Logo |
4465
4465
 
4466
4466
  ---
4467
4467
 
@@ -4472,8 +4472,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
4472
4472
 
4473
4473
  | Properties | Type | Nullable | Description |
4474
4474
  | ---------- | ---- | -------- | ----------- |
4475
- | items | [[TransferItemsDetails](#TransferItemsDetails)] | no | Beneficiary Mode Items |
4476
4475
  | display_name | string | yes | Beneficiary Mode Name |
4476
+ | items | [[TransferItemsDetails](#TransferItemsDetails)] | no | Beneficiary Mode Items |
4477
4477
 
4478
4478
  ---
4479
4479
 
@@ -4495,8 +4495,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
4495
4495
 
4496
4496
  | Properties | Type | Nullable | Description |
4497
4497
  | ---------- | ---- | -------- | ----------- |
4498
- | transfer_mode | string | yes | Transfer Mode of the Beneficiary to be added |
4499
4498
  | enable | boolean | yes | True for enabling the Transfer Mode |
4499
+ | transfer_mode | string | yes | Transfer Mode of the Beneficiary to be added |
4500
4500
 
4501
4501
  ---
4502
4502
 
@@ -4518,25 +4518,25 @@ Success. Returns the status of payment. Check the example shown below or refer `
4518
4518
 
4519
4519
  | Properties | Type | Nullable | Description |
4520
4520
  | ---------- | ---- | -------- | ----------- |
4521
- | is_active | boolean | yes | Boolean Flag whether Beneficiary set or not |
4522
- | email | string | yes | EMail of User |
4523
- | bank_name | string | yes | Bank Name Of Account |
4524
- | display_name | string | yes | Display Name Of Account |
4525
- | beneficiary_id | string | yes | Benenficiary Id |
4526
- | mobile | string | no | MObile no of User |
4527
- | title | string | yes | Title Of Account |
4521
+ | account_holder | string | yes | Account Holder Name |
4522
+ | bank_name | string | yes | Bank Name Of Account |
4523
+ | modified_on | string | yes | MOdification Date of Beneficiary |
4528
4524
  | address | string | yes | Address of User |
4529
- | comment | string | no | Remarks |
4530
4525
  | ifsc_code | string | yes | Ifsc Code Of Account |
4531
- | created_on | string | yes | Creation Date of Beneficiary |
4532
- | transfer_mode | string | yes | Transfer Mode Of Account |
4533
- | modified_on | string | yes | MOdification Date of Beneficiary |
4534
- | account_holder | string | yes | Account Holder Name |
4526
+ | account_no | string | yes | Account Number |
4535
4527
  | branch_name | string | no | Branch Name Of Account |
4528
+ | email | string | yes | EMail of User |
4536
4529
  | subtitle | string | yes | SHort Title Of Account |
4537
- | delights_user_name | string | no | User Id Who filled the Beneficiary |
4530
+ | created_on | string | yes | Creation Date of Beneficiary |
4531
+ | transfer_mode | string | yes | Transfer Mode Of Account |
4538
4532
  | id | number | yes | |
4539
- | account_no | string | yes | Account Number |
4533
+ | display_name | string | yes | Display Name Of Account |
4534
+ | delights_user_name | string | no | User Id Who filled the Beneficiary |
4535
+ | is_active | boolean | yes | Boolean Flag whether Beneficiary set or not |
4536
+ | beneficiary_id | string | yes | Benenficiary Id |
4537
+ | title | string | yes | Title Of Account |
4538
+ | mobile | string | no | MObile no of User |
4539
+ | comment | string | no | Remarks |
4540
4540
 
4541
4541
  ---
4542
4542
 
@@ -4547,8 +4547,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
4547
4547
 
4548
4548
  | Properties | Type | Nullable | Description |
4549
4549
  | ---------- | ---- | -------- | ----------- |
4550
- | beneficiaries | [[OrderBeneficiaryDetails](#OrderBeneficiaryDetails)] | no | All Beneficiaries Of An Order |
4551
4550
  | show_beneficiary_details | boolean | no | Show beneficiary details or not. |
4551
+ | beneficiaries | [[OrderBeneficiaryDetails](#OrderBeneficiaryDetails)] | no | All Beneficiaries Of An Order |
4552
4552
 
4553
4553
  ---
4554
4554
 
@@ -4559,9 +4559,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
4559
4559
 
4560
4560
  | Properties | Type | Nullable | Description |
4561
4561
  | ---------- | ---- | -------- | ----------- |
4562
+ | code | string | yes | Bad Request Data |
4562
4563
  | description | string | yes | Not Found |
4563
4564
  | success | boolean | yes | Response is successful or not |
4564
- | code | string | yes | Bad Request Data |
4565
4565
 
4566
4566
  ---
4567
4567
 
@@ -4585,9 +4585,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
4585
4585
 
4586
4586
  | Properties | Type | Nullable | Description |
4587
4587
  | ---------- | ---- | -------- | ----------- |
4588
+ | code | string | yes | Error descrption code. |
4588
4589
  | description | string | yes | Error human understandable description. |
4589
4590
  | success | boolean | yes | Response is successful or not |
4590
- | code | string | yes | Error descrption code. |
4591
4591
 
4592
4592
  ---
4593
4593
 
@@ -4637,16 +4637,16 @@ Success. Returns the status of payment. Check the example shown below or refer `
4637
4637
  | Properties | Type | Nullable | Description |
4638
4638
  | ---------- | ---- | -------- | ----------- |
4639
4639
  | email | string | yes | Email of the Account Holder |
4640
- | address | string | no | Address of the User |
4641
- | account_no | string | yes | Account NUmber of the Account Holder |
4640
+ | mobile | string | yes | Moblie Number of the User |
4642
4641
  | ifsc_code | string | yes | Ifsc Code of the Account |
4643
- | comment | string | no | Remarks added by The user |
4642
+ | account_holder | string | yes | Name of the Account Holder |
4644
4643
  | bank_name | string | yes | Bank Name of the Account |
4644
+ | account_no | string | yes | Account NUmber of the Account Holder |
4645
+ | wallet | string | no | |
4646
+ | address | string | no | Address of the User |
4647
+ | comment | string | no | Remarks added by The user |
4645
4648
  | vpa | string | no | |
4646
- | account_holder | string | yes | Name of the Account Holder |
4647
4649
  | branch_name | string | yes | Branch Name of the Account |
4648
- | mobile | string | yes | Moblie Number of the User |
4649
- | wallet | string | no | |
4650
4650
 
4651
4651
  ---
4652
4652
 
@@ -4657,13 +4657,13 @@ Success. Returns the status of payment. Check the example shown below or refer `
4657
4657
 
4658
4658
  | Properties | Type | Nullable | Description |
4659
4659
  | ---------- | ---- | -------- | ----------- |
4660
- | otp | string | no | |
4661
4660
  | shipment_id | string | yes | Shipment Id of the respective Merchant Order Id |
4662
4661
  | order_id | string | yes | Merchant Order Id |
4663
- | details | [BeneficiaryModeDetails](#BeneficiaryModeDetails) | yes | Beneficiary bank details |
4664
4662
  | transfer_mode | string | yes | Transfer Mode of the Beneficiary to be added |
4663
+ | otp | string | no | |
4665
4664
  | request_id | string | no | |
4666
4665
  | delights | boolean | yes | True if beneficiary to be added by delights or False if by User |
4666
+ | details | [BeneficiaryModeDetails](#BeneficiaryModeDetails) | yes | Beneficiary bank details |
4667
4667
 
4668
4668
  ---
4669
4669
 
@@ -4676,8 +4676,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
4676
4676
  | ---------- | ---- | -------- | ----------- |
4677
4677
  | data | string | no | Refund account data. |
4678
4678
  | success | boolean | yes | Success or failure flag. |
4679
- | is_verified_flag | boolean | no | |
4680
4679
  | message | string | yes | Response message |
4680
+ | is_verified_flag | boolean | no | |
4681
4681
 
4682
4682
  ---
4683
4683
 
@@ -4688,11 +4688,11 @@ Success. Returns the status of payment. Check the example shown below or refer `
4688
4688
 
4689
4689
  | Properties | Type | Nullable | Description |
4690
4690
  | ---------- | ---- | -------- | ----------- |
4691
- | account_no | string | yes | |
4692
- | branch_name | string | yes | |
4693
- | bank_name | string | yes | |
4694
4691
  | account_holder | string | yes | |
4692
+ | bank_name | string | yes | |
4693
+ | account_no | string | yes | |
4695
4694
  | ifsc_code | string | yes | |
4695
+ | branch_name | string | yes | |
4696
4696
 
4697
4697
  ---
4698
4698
 
@@ -4703,8 +4703,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
4703
4703
 
4704
4704
  | Properties | Type | Nullable | Description |
4705
4705
  | ---------- | ---- | -------- | ----------- |
4706
- | details | [BankDetailsForOTP](#BankDetailsForOTP) | yes | |
4707
4706
  | order_id | string | yes | |
4707
+ | details | [BankDetailsForOTP](#BankDetailsForOTP) | yes | |
4708
4708
 
4709
4709
  ---
4710
4710
 
@@ -4715,8 +4715,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
4715
4715
 
4716
4716
  | Properties | Type | Nullable | Description |
4717
4717
  | ---------- | ---- | -------- | ----------- |
4718
- | mobile | string | yes | Wallet Moblie Number of the User |
4719
4718
  | country_code | string | yes | Country Code of the Mobile Number |
4719
+ | mobile | string | yes | Wallet Moblie Number of the User |
4720
4720
 
4721
4721
  ---
4722
4722
 
@@ -4727,8 +4727,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
4727
4727
 
4728
4728
  | Properties | Type | Nullable | Description |
4729
4729
  | ---------- | ---- | -------- | ----------- |
4730
- | request_id | string | yes | request id |
4731
4730
  | success | boolean | no | Response is successful or not |
4731
+ | request_id | string | yes | request id |
4732
4732
  | is_verified_flag | string | yes | Boolean Flag whether OTP Validation is already done or not |
4733
4733
 
4734
4734
  ---
@@ -4740,8 +4740,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
4740
4740
 
4741
4741
  | Properties | Type | Nullable | Description |
4742
4742
  | ---------- | ---- | -------- | ----------- |
4743
- | beneficiary_id | string | yes | Beneficiary Hash Id of the beneficiary added |
4744
4743
  | order_id | string | yes | Merchant Order Id |
4744
+ | beneficiary_id | string | yes | Beneficiary Hash Id of the beneficiary added |
4745
4745
 
4746
4746
  ---
4747
4747
 
@@ -4764,15 +4764,15 @@ Success. Returns the status of payment. Check the example shown below or refer `
4764
4764
 
4765
4765
  | Properties | Type | Nullable | Description |
4766
4766
  | ---------- | ---- | -------- | ----------- |
4767
- | success | boolean | yes | Successful or failure |
4768
- | payment_link_current_status | string | no | Status of payment link |
4769
- | merchant_name | string | no | Merchant name |
4770
- | message | string | yes | Message |
4771
- | status_code | number | yes | HTTP status code |
4772
- | polling_timeout | number | no | Polling request timeout |
4773
4767
  | payment_link_url | string | no | Url of payment link |
4768
+ | polling_timeout | number | no | Polling request timeout |
4774
4769
  | external_order_id | string | no | Merchant order id |
4770
+ | payment_link_current_status | string | no | Status of payment link |
4771
+ | status_code | number | yes | HTTP status code |
4775
4772
  | amount | number | no | Total value of order |
4773
+ | merchant_name | string | no | Merchant name |
4774
+ | success | boolean | yes | Successful or failure |
4775
+ | message | string | yes | Message |
4776
4776
 
4777
4777
  ---
4778
4778
 
@@ -4783,14 +4783,14 @@ Success. Returns the status of payment. Check the example shown below or refer `
4783
4783
 
4784
4784
  | Properties | Type | Nullable | Description |
4785
4785
  | ---------- | ---- | -------- | ----------- |
4786
- | invalid_id | boolean | no | Payment link id is valid or not |
4787
- | merchant_name | string | no | Name of merchant that created payment link |
4788
- | msg | string | no | Message |
4789
- | expired | boolean | no | Payment link expired or not |
4790
- | cancelled | boolean | no | Payment link is cancelled or not |
4791
4786
  | merchant_order_id | string | no | Order id |
4792
4787
  | payment_transaction_id | string | no | Payment transaction id |
4788
+ | expired | boolean | no | Payment link expired or not |
4789
+ | merchant_name | string | no | Name of merchant that created payment link |
4793
4790
  | amount | number | no | Amount paid |
4791
+ | msg | string | no | Message |
4792
+ | cancelled | boolean | no | Payment link is cancelled or not |
4793
+ | invalid_id | boolean | no | Payment link id is valid or not |
4794
4794
 
4795
4795
  ---
4796
4796
 
@@ -4818,8 +4818,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
4818
4818
  | checkout_mode | string | yes | |
4819
4819
  | cart_id | string | yes | |
4820
4820
  | assign_card_id | string | no | |
4821
- | pincode | string | yes | |
4822
4821
  | amount | string | yes | |
4822
+ | pincode | string | yes | |
4823
4823
 
4824
4824
  ---
4825
4825
 
@@ -4830,12 +4830,12 @@ Success. Returns the status of payment. Check the example shown below or refer `
4830
4830
 
4831
4831
  | Properties | Type | Nullable | Description |
4832
4832
  | ---------- | ---- | -------- | ----------- |
4833
- | description | string | no | Merchant order id |
4834
4833
  | email | string | yes | Email to which the payment link is to be sent |
4835
- | meta | [CreatePaymentLinkMeta](#CreatePaymentLinkMeta) | yes | Meta |
4836
- | mobile_number | string | yes | Mobile number to which the payment link is to be sent |
4837
4834
  | external_order_id | string | yes | Merchant order id |
4835
+ | meta | [CreatePaymentLinkMeta](#CreatePaymentLinkMeta) | yes | Meta |
4836
+ | description | string | no | Merchant order id |
4838
4837
  | amount | number | yes | Total value of order |
4838
+ | mobile_number | string | yes | Mobile number to which the payment link is to be sent |
4839
4839
 
4840
4840
  ---
4841
4841
 
@@ -4846,12 +4846,12 @@ Success. Returns the status of payment. Check the example shown below or refer `
4846
4846
 
4847
4847
  | Properties | Type | Nullable | Description |
4848
4848
  | ---------- | ---- | -------- | ----------- |
4849
- | success | boolean | yes | Successful or failure |
4849
+ | payment_link_url | string | no | Url of payment link |
4850
+ | polling_timeout | number | no | Polling request timeout |
4851
+ | status_code | number | yes | HTTP status code |
4850
4852
  | payment_link_id | string | no | Unique id of payment link |
4853
+ | success | boolean | yes | Successful or failure |
4851
4854
  | message | string | yes | Message |
4852
- | status_code | number | yes | HTTP status code |
4853
- | polling_timeout | number | no | Polling request timeout |
4854
- | payment_link_url | string | no | Url of payment link |
4855
4855
 
4856
4856
  ---
4857
4857
 
@@ -4873,8 +4873,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
4873
4873
 
4874
4874
  | Properties | Type | Nullable | Description |
4875
4875
  | ---------- | ---- | -------- | ----------- |
4876
- | polling_timeout | number | no | Polling request timeout |
4877
4876
  | success | boolean | yes | Successful or failure |
4877
+ | polling_timeout | number | no | Polling request timeout |
4878
4878
  | status_code | number | yes | HTTP status code |
4879
4879
  | message | string | yes | Message |
4880
4880
 
@@ -4900,16 +4900,16 @@ Success. Returns the status of payment. Check the example shown below or refer `
4900
4900
 
4901
4901
  | Properties | Type | Nullable | Description |
4902
4902
  | ---------- | ---- | -------- | ----------- |
4903
+ | order_id | string | no | Fynd order id |
4903
4904
  | http_status | number | no | HTTP status code |
4905
+ | aggregator_name | string | no | Aggregator name |
4904
4906
  | success | boolean | no | Successful or failure |
4907
+ | status_code | number | no | HTTP status code |
4908
+ | amount | number | no | Amount |
4905
4909
  | redirect_url | string | no | Url to redirect to |
4906
- | status | string | no | Status of payment link |
4907
4910
  | payment_link_id | string | no | Payment link id |
4908
- | order_id | string | no | Fynd order id |
4909
4911
  | message | string | no | Message |
4910
- | status_code | number | no | HTTP status code |
4911
- | aggregator_name | string | no | Aggregator name |
4912
- | amount | number | no | Amount |
4912
+ | status | string | no | Status of payment link |
4913
4913
 
4914
4914
  ---
4915
4915
 
@@ -4933,9 +4933,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
4933
4933
 
4934
4934
  | Properties | Type | Nullable | Description |
4935
4935
  | ---------- | ---- | -------- | ----------- |
4936
+ | meta | [PaymentMethodsMeta](#PaymentMethodsMeta) | yes | Meta |
4936
4937
  | name | string | yes | Payment mode name |
4937
4938
  | mode | string | yes | Payment mode |
4938
- | meta | [PaymentMethodsMeta](#PaymentMethodsMeta) | yes | Meta |
4939
4939
 
4940
4940
  ---
4941
4941
 
@@ -4946,12 +4946,12 @@ Success. Returns the status of payment. Check the example shown below or refer `
4946
4946
 
4947
4947
  | Properties | Type | Nullable | Description |
4948
4948
  | ---------- | ---- | -------- | ----------- |
4949
- | currency | string | yes | Currency |
4950
- | failure_callback_url | string | yes | Failure page url |
4951
4949
  | payment_methods | [CreateOrderUserPaymentMethods](#CreateOrderUserPaymentMethods) | yes | Payment method details |
4952
- | payment_link_id | string | yes | Unique id of payment link |
4953
- | meta | string | no | Meta |
4954
4950
  | success_callback_url | string | yes | Success page url |
4951
+ | failure_callback_url | string | yes | Failure page url |
4952
+ | meta | string | no | Meta |
4953
+ | currency | string | yes | Currency |
4954
+ | payment_link_id | string | yes | Unique id of payment link |
4955
4955
 
4956
4956
  ---
4957
4957
 
@@ -4962,15 +4962,15 @@ Success. Returns the status of payment. Check the example shown below or refer `
4962
4962
 
4963
4963
  | Properties | Type | Nullable | Description |
4964
4964
  | ---------- | ---- | -------- | ----------- |
4965
- | currency | string | no | Currency |
4966
4965
  | email | string | no | Email |
4967
- | callback_url | string | no | Callback url for aggregator |
4968
- | order_id | string | no | Aggregator order id |
4969
- | customer_id | string | no | Aggregator customer id |
4970
- | contact | string | no | Mobile number |
4971
4966
  | aggregator | string | no | Aggregator name |
4972
4967
  | merchant_order_id | string | no | Merchant order id |
4968
+ | order_id | string | no | Aggregator order id |
4969
+ | currency | string | no | Currency |
4970
+ | contact | string | no | Mobile number |
4973
4971
  | amount | number | no | Amount |
4972
+ | customer_id | string | no | Aggregator customer id |
4973
+ | callback_url | string | no | Callback url for aggregator |
4974
4974
  | method | string | no | Method |
4975
4975
 
4976
4976
  ---
@@ -4982,13 +4982,13 @@ Success. Returns the status of payment. Check the example shown below or refer `
4982
4982
 
4983
4983
  | Properties | Type | Nullable | Description |
4984
4984
  | ---------- | ---- | -------- | ----------- |
4985
+ | payment_confirm_url | string | no | Payment confirm url for aggregator |
4986
+ | message | string | yes | Message |
4987
+ | order_id | string | no | Merchant order id |
4988
+ | status_code | number | yes | HTTP status code |
4985
4989
  | data | [CreateOrderUserData](#CreateOrderUserData) | no | |
4986
4990
  | success | boolean | yes | Successful or failure |
4987
4991
  | callback_url | string | no | Callback url for aggregator |
4988
- | order_id | string | no | Merchant order id |
4989
- | message | string | yes | Message |
4990
- | status_code | number | yes | HTTP status code |
4991
- | payment_confirm_url | string | no | Payment confirm url for aggregator |
4992
4992
 
4993
4993
  ---
4994
4994
 
@@ -4999,9 +4999,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
4999
4999
 
5000
5000
  | Properties | Type | Nullable | Description |
5001
5001
  | ---------- | ---- | -------- | ----------- |
5002
+ | currency | string | yes | Currency Code |
5002
5003
  | value | number | yes | Payment amount |
5003
5004
  | formatted_value | string | yes | Formated Amount with currency symbol |
5004
- | currency | string | yes | Currency Code |
5005
5005
 
5006
5006
  ---
5007
5007
 
@@ -5012,9 +5012,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
5012
5012
 
5013
5013
  | Properties | Type | Nullable | Description |
5014
5014
  | ---------- | ---- | -------- | ----------- |
5015
- | status | string | yes | Customer Credit status |
5016
- | status_message | string | yes | message to customer |
5017
5015
  | balance | [BalanceDetails](#BalanceDetails) | no | Credit summary of user. |
5016
+ | status_message | string | yes | message to customer |
5017
+ | status | string | yes | Customer Credit status |
5018
5018
  | merchant_customer_ref_id | string | yes | Unique aggregator customer id |
5019
5019
 
5020
5020
  ---
@@ -5038,8 +5038,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
5038
5038
 
5039
5039
  | Properties | Type | Nullable | Description |
5040
5040
  | ---------- | ---- | -------- | ----------- |
5041
- | status | boolean | yes | Aggregator's Operation is successful or not. |
5042
5041
  | signup_url | string | yes | URL to which the user may redirect. |
5042
+ | status | boolean | yes | Aggregator's Operation is successful or not. |
5043
5043
 
5044
5044
  ---
5045
5045
 
@@ -5062,9 +5062,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
5062
5062
 
5063
5063
  | Properties | Type | Nullable | Description |
5064
5064
  | ---------- | ---- | -------- | ----------- |
5065
- | status | boolean | yes | Operation is successful or not. |
5066
- | is_registered | boolean | yes | User is registered with aggregator or not. |
5067
5065
  | signup_url | string | yes | URL to which the user may redirect. |
5066
+ | is_registered | boolean | yes | User is registered with aggregator or not. |
5067
+ | status | boolean | yes | Operation is successful or not. |
5068
5068
 
5069
5069
  ---
5070
5070
 
@@ -5083,46 +5083,16 @@ Success. Returns the status of payment. Check the example shown below or refer `
5083
5083
 
5084
5084
 
5085
5085
 
5086
- #### [MarketplaceInfo](#MarketplaceInfo)
5087
-
5088
- | Properties | Type | Nullable | Description |
5089
- | ---------- | ---- | -------- | ----------- |
5090
- | name | string | yes | Name of store |
5091
- | membership_id | string | yes | merchant id |
5092
- | date_of_joining | string | no | Date of joining |
5093
-
5094
- ---
5095
-
5096
-
5097
-
5098
-
5099
- #### [DeviceDetails](#DeviceDetails)
5100
-
5101
- | Properties | Type | Nullable | Description |
5102
- | ---------- | ---- | -------- | ----------- |
5103
- | device_make | string | no | Device maker |
5104
- | identification_number | string | no | IP |
5105
- | device_type | string | no | Device Type(E.g. Mobile) |
5106
- | os_version | string | no | OS Version |
5107
- | device_model | string | no | Device Model |
5108
- | identifier_type | string | no | Static value = ip |
5109
- | os | string | no | OS Name |
5110
-
5111
- ---
5112
-
5113
-
5114
-
5115
-
5116
5086
  #### [KYCAddress](#KYCAddress)
5117
5087
 
5118
5088
  | Properties | Type | Nullable | Description |
5119
5089
  | ---------- | ---- | -------- | ----------- |
5120
- | addressline2 | string | no | Address Line 2 |
5121
5090
  | city | string | yes | City |
5122
- | addressline1 | string | yes | Address Line 1 |
5123
- | land_mark | string | no | Land Mark |
5124
5091
  | ownership_type | string | no | Address Owner Type |
5125
5092
  | state | string | yes | State |
5093
+ | land_mark | string | no | Land Mark |
5094
+ | addressline2 | string | no | Address Line 2 |
5095
+ | addressline1 | string | yes | Address Line 1 |
5126
5096
  | pincode | string | yes | Pincode |
5127
5097
 
5128
5098
  ---
@@ -5134,22 +5104,39 @@ Success. Returns the status of payment. Check the example shown below or refer `
5134
5104
 
5135
5105
  | Properties | Type | Nullable | Description |
5136
5106
  | ---------- | ---- | -------- | ----------- |
5137
- | email_verified | boolean | yes | Is Email Verified or not |
5138
- | address_as_per_id | [KYCAddress](#KYCAddress) | yes | Address details |
5139
5107
  | email | string | no | Email |
5140
- | voter_id | string | no | Voter ID Number |
5141
- | last_name | string | no | Last Name |
5142
5108
  | phone | string | yes | Email |
5143
- | dob | string | yes | DOB |
5144
- | fathers_name | string | no | Father's Name |
5145
5109
  | middle_name | string | no | middle Name |
5146
- | mobile_verified | boolean | yes | Is Mobile Verified or not |
5147
- | first_name | string | yes | First Name |
5110
+ | fathers_name | string | no | Father's Name |
5111
+ | passport | string | no | Passport |
5148
5112
  | driving_license | string | no | Driver License |
5113
+ | first_name | string | yes | First Name |
5114
+ | voter_id | string | no | Voter ID Number |
5115
+ | dob | string | yes | DOB |
5149
5116
  | gender | string | no | Gender |
5117
+ | last_name | string | no | Last Name |
5150
5118
  | pan | string | no | Pan Number |
5151
- | passport | string | no | Passport |
5152
5119
  | mothers_name | string | no | Mother's Name |
5120
+ | email_verified | boolean | yes | Is Email Verified or not |
5121
+ | mobile_verified | boolean | yes | Is Mobile Verified or not |
5122
+ | address_as_per_id | [KYCAddress](#KYCAddress) | yes | Address details |
5123
+
5124
+ ---
5125
+
5126
+
5127
+
5128
+
5129
+ #### [DeviceDetails](#DeviceDetails)
5130
+
5131
+ | Properties | Type | Nullable | Description |
5132
+ | ---------- | ---- | -------- | ----------- |
5133
+ | device_make | string | no | Device maker |
5134
+ | device_type | string | no | Device Type(E.g. Mobile) |
5135
+ | os | string | no | OS Name |
5136
+ | os_version | string | no | OS Version |
5137
+ | device_model | string | no | Device Model |
5138
+ | identifier_type | string | no | Static value = ip |
5139
+ | identification_number | string | no | IP |
5153
5140
 
5154
5141
  ---
5155
5142
 
@@ -5160,17 +5147,30 @@ Success. Returns the status of payment. Check the example shown below or refer `
5160
5147
 
5161
5148
  | Properties | Type | Nullable | Description |
5162
5149
  | ---------- | ---- | -------- | ----------- |
5163
- | fda | string | no | Driver License |
5164
5150
  | fssai | string | no | FDA License Number |
5151
+ | gstin | string | no | GSTIN Number |
5152
+ | fda | string | no | Driver License |
5153
+ | business_ownership_type | string | no | business Ownershipp type(e.g Rented) |
5165
5154
  | vintage | string | no | Vintage |
5155
+ | name | string | no | Business Name |
5166
5156
  | business_type | string | no | Business Type |
5167
- | shop_and_establishment | string | no | Shop Establishment |
5168
5157
  | entity_type | string | no | Busineess Entity Type |
5169
- | address | [KYCAddress](#KYCAddress) | no | Address details |
5170
- | name | string | no | Business Name |
5171
- | business_ownership_type | string | no | business Ownershipp type(e.g Rented) |
5172
- | gstin | string | no | GSTIN Number |
5173
5158
  | pan | string | no | Pan Number |
5159
+ | address | [KYCAddress](#KYCAddress) | no | Address details |
5160
+ | shop_and_establishment | string | no | Shop Establishment |
5161
+
5162
+ ---
5163
+
5164
+
5165
+
5166
+
5167
+ #### [MarketplaceInfo](#MarketplaceInfo)
5168
+
5169
+ | Properties | Type | Nullable | Description |
5170
+ | ---------- | ---- | -------- | ----------- |
5171
+ | name | string | yes | Name of store |
5172
+ | date_of_joining | string | no | Date of joining |
5173
+ | membership_id | string | yes | merchant id |
5174
5174
 
5175
5175
  ---
5176
5176
 
@@ -5181,13 +5181,13 @@ Success. Returns the status of payment. Check the example shown below or refer `
5181
5181
 
5182
5182
  | Properties | Type | Nullable | Description |
5183
5183
  | ---------- | ---- | -------- | ----------- |
5184
+ | aggregator | string | yes | Aggregator Name |
5185
+ | personal_info | [UserPersonalInfoInDetails](#UserPersonalInfoInDetails) | yes | Credit summary of user. |
5184
5186
  | mcc | string | no | Mcc |
5185
- | marketplace_info | [MarketplaceInfo](#MarketplaceInfo) | no | Market Place info. |
5186
- | source | string | yes | callbackURL |
5187
5187
  | device | [DeviceDetails](#DeviceDetails) | no | Device Details. |
5188
- | personal_info | [UserPersonalInfoInDetails](#UserPersonalInfoInDetails) | yes | Credit summary of user. |
5189
- | aggregator | string | yes | Aggregator Name |
5190
5188
  | business_info | [BusinessDetails](#BusinessDetails) | no | Business summary. |
5189
+ | source | string | yes | callbackURL |
5190
+ | marketplace_info | [MarketplaceInfo](#MarketplaceInfo) | no | Market Place info. |
5191
5191
 
5192
5192
  ---
5193
5193
 
@@ -5198,9 +5198,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
5198
5198
 
5199
5199
  | Properties | Type | Nullable | Description |
5200
5200
  | ---------- | ---- | -------- | ----------- |
5201
- | status | boolean | yes | Operation Status |
5202
- | session | string | yes | User Session |
5203
5201
  | redirect_url | string | yes | URL to which the user may redirect. |
5202
+ | session | string | yes | User Session |
5203
+ | status | boolean | yes | Operation Status |
5204
5204
 
5205
5205
  ---
5206
5206