@gofynd/fdk-client-javascript 1.0.2 → 1.0.4

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 (346) hide show
  1. package/README.md +31 -2
  2. package/index.d.ts +4 -4
  3. package/index.js +9 -10
  4. package/package.json +14 -14
  5. package/sdk/APIClient.d.ts +11 -0
  6. package/sdk/APIClient.js +35 -0
  7. package/sdk/Client.d.ts +6 -0
  8. package/sdk/Client.js +17 -0
  9. package/sdk/Config.d.ts +9 -0
  10. package/sdk/Config.js +17 -0
  11. package/sdk/application/Cart/CartApplicationClient.d.ts +243 -243
  12. package/sdk/application/Cart/CartApplicationClient.js +595 -594
  13. package/sdk/application/Cart/CartApplicationModel.d.ts +64 -63
  14. package/sdk/application/Cart/CartApplicationModel.js +490 -885
  15. package/sdk/application/Cart/CartApplicationValidator.d.ts +17 -17
  16. package/sdk/application/Cart/CartApplicationValidator.js +98 -98
  17. package/sdk/application/Catalog/CatalogApplicationClient.d.ts +358 -358
  18. package/sdk/application/Catalog/CatalogApplicationClient.js +1079 -1078
  19. package/sdk/application/Catalog/CatalogApplicationModel.d.ts +90 -90
  20. package/sdk/application/Catalog/CatalogApplicationModel.js +683 -1249
  21. package/sdk/application/Catalog/CatalogApplicationValidator.d.ts +19 -19
  22. package/sdk/application/Catalog/CatalogApplicationValidator.js +110 -110
  23. package/sdk/application/Common/CommonApplicationClient.d.ts +13 -13
  24. package/sdk/application/Common/CommonApplicationClient.js +43 -42
  25. package/sdk/application/Common/CommonApplicationModel.d.ts +12 -12
  26. package/sdk/application/Common/CommonApplicationModel.js +83 -160
  27. package/sdk/application/Common/CommonApplicationValidator.d.ts +1 -1
  28. package/sdk/application/Common/CommonApplicationValidator.js +6 -6
  29. package/sdk/application/Communication/CommunicationApplicationClient.d.ts +11 -11
  30. package/sdk/application/Communication/CommunicationApplicationClient.js +32 -31
  31. package/sdk/application/Communication/CommunicationApplicationModel.d.ts +6 -6
  32. package/sdk/application/Communication/CommunicationApplicationModel.js +38 -83
  33. package/sdk/application/Communication/CommunicationApplicationValidator.d.ts +1 -1
  34. package/sdk/application/Communication/CommunicationApplicationValidator.js +4 -4
  35. package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +116 -116
  36. package/sdk/application/Configuration/ConfigurationApplicationClient.js +350 -349
  37. package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +85 -85
  38. package/sdk/application/Configuration/ConfigurationApplicationModel.js +480 -851
  39. package/sdk/application/Configuration/ConfigurationApplicationValidator.d.ts +8 -8
  40. package/sdk/application/Configuration/ConfigurationApplicationValidator.js +33 -33
  41. package/sdk/application/Content/ContentApplicationClient.d.ts +67 -67
  42. package/sdk/application/Content/ContentApplicationClient.js +216 -215
  43. package/sdk/application/Content/ContentApplicationModel.d.ts +76 -76
  44. package/sdk/application/Content/ContentApplicationModel.js +468 -884
  45. package/sdk/application/Content/ContentApplicationValidator.d.ts +5 -5
  46. package/sdk/application/Content/ContentApplicationValidator.js +24 -24
  47. package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +25 -25
  48. package/sdk/application/FileStorage/FileStorageApplicationClient.js +65 -64
  49. package/sdk/application/FileStorage/FileStorageApplicationModel.d.ts +13 -13
  50. package/sdk/application/FileStorage/FileStorageApplicationModel.js +86 -169
  51. package/sdk/application/FileStorage/FileStorageApplicationValidator.d.ts +1 -1
  52. package/sdk/application/FileStorage/FileStorageApplicationValidator.js +7 -7
  53. package/sdk/application/Lead/LeadApplicationClient.d.ts +24 -24
  54. package/sdk/application/Lead/LeadApplicationClient.js +109 -108
  55. package/sdk/application/Lead/LeadApplicationModel.d.ts +35 -35
  56. package/sdk/application/Lead/LeadApplicationModel.js +267 -474
  57. package/sdk/application/Lead/LeadApplicationValidator.d.ts +2 -2
  58. package/sdk/application/Lead/LeadApplicationValidator.js +11 -11
  59. package/sdk/application/Logistic/LogisticApplicationClient.d.ts +31 -22
  60. package/sdk/application/Logistic/LogisticApplicationClient.js +115 -49
  61. package/sdk/application/Logistic/LogisticApplicationModel.d.ts +17 -14
  62. package/sdk/application/Logistic/LogisticApplicationModel.js +133 -201
  63. package/sdk/application/Logistic/LogisticApplicationValidator.d.ts +3 -2
  64. package/sdk/application/Logistic/LogisticApplicationValidator.js +14 -9
  65. package/sdk/application/Order/OrderApplicationClient.d.ts +85 -85
  66. package/sdk/application/Order/OrderApplicationClient.js +247 -246
  67. package/sdk/application/Order/OrderApplicationModel.d.ts +50 -50
  68. package/sdk/application/Order/OrderApplicationModel.js +361 -656
  69. package/sdk/application/Order/OrderApplicationValidator.d.ts +7 -7
  70. package/sdk/application/Order/OrderApplicationValidator.js +28 -28
  71. package/sdk/application/Payment/PaymentApplicationClient.d.ts +318 -318
  72. package/sdk/application/Payment/PaymentApplicationClient.js +781 -780
  73. package/sdk/application/Payment/PaymentApplicationModel.d.ts +72 -72
  74. package/sdk/application/Payment/PaymentApplicationModel.js +570 -1038
  75. package/sdk/application/Payment/PaymentApplicationValidator.d.ts +28 -28
  76. package/sdk/application/Payment/PaymentApplicationValidator.js +107 -107
  77. package/sdk/application/PosCart/PosCartApplicationClient.d.ts +254 -254
  78. package/sdk/application/PosCart/PosCartApplicationClient.js +646 -645
  79. package/sdk/application/PosCart/PosCartApplicationModel.d.ts +64 -63
  80. package/sdk/application/PosCart/PosCartApplicationModel.js +476 -870
  81. package/sdk/application/PosCart/PosCartApplicationValidator.d.ts +18 -18
  82. package/sdk/application/PosCart/PosCartApplicationValidator.js +103 -103
  83. package/sdk/application/Rewards/RewardsApplicationClient.d.ts +27 -27
  84. package/sdk/application/Rewards/RewardsApplicationClient.js +122 -121
  85. package/sdk/application/Rewards/RewardsApplicationModel.d.ts +14 -14
  86. package/sdk/application/Rewards/RewardsApplicationModel.js +96 -191
  87. package/sdk/application/Rewards/RewardsApplicationValidator.d.ts +3 -3
  88. package/sdk/application/Rewards/RewardsApplicationValidator.js +12 -12
  89. package/sdk/application/Share/ShareApplicationClient.d.ts +37 -37
  90. package/sdk/application/Share/ShareApplicationClient.js +94 -93
  91. package/sdk/application/Share/ShareApplicationModel.d.ts +8 -8
  92. package/sdk/application/Share/ShareApplicationModel.js +63 -123
  93. package/sdk/application/Share/ShareApplicationValidator.d.ts +4 -4
  94. package/sdk/application/Share/ShareApplicationValidator.js +12 -12
  95. package/sdk/application/Theme/ThemeApplicationClient.d.ts +8 -8
  96. package/sdk/application/Theme/ThemeApplicationClient.js +38 -37
  97. package/sdk/application/Theme/ThemeApplicationModel.d.ts +34 -34
  98. package/sdk/application/Theme/ThemeApplicationModel.js +190 -336
  99. package/sdk/application/Theme/ThemeApplicationValidator.d.ts +1 -1
  100. package/sdk/application/Theme/ThemeApplicationValidator.js +4 -4
  101. package/sdk/application/User/UserApplicationClient.d.ts +280 -280
  102. package/sdk/application/User/UserApplicationClient.js +619 -618
  103. package/sdk/application/User/UserApplicationModel.d.ts +79 -72
  104. package/sdk/application/User/UserApplicationModel.js +440 -689
  105. package/sdk/application/User/UserApplicationValidator.d.ts +24 -24
  106. package/sdk/application/User/UserApplicationValidator.js +89 -89
  107. package/sdk/common/AxiosHelper.js +18 -7
  108. package/sdk/constructUrl.d.ts +5 -0
  109. package/sdk/constructUrl.js +13 -0
  110. package/sdk/index.d.ts +3 -0
  111. package/sdk/index.js +5 -0
  112. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +51 -51
  113. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +182 -180
  114. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +6 -6
  115. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +21 -21
  116. package/sdk/platform/Analytics/AnalyticsPlatformClient.js +5 -4
  117. package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +11 -11
  118. package/sdk/platform/Analytics/AnalyticsPlatformModel.js +95 -178
  119. package/sdk/platform/Analytics/AnalyticsPlatformValidator.js +1 -0
  120. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +10 -10
  121. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +44 -43
  122. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +10 -10
  123. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +50 -89
  124. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +1 -1
  125. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +7 -6
  126. package/sdk/platform/Billing/BillingPlatformClient.d.ts +60 -60
  127. package/sdk/platform/Billing/BillingPlatformClient.js +184 -183
  128. package/sdk/platform/Billing/BillingPlatformModel.d.ts +40 -40
  129. package/sdk/platform/Billing/BillingPlatformModel.js +342 -668
  130. package/sdk/platform/Billing/BillingPlatformValidator.d.ts +8 -8
  131. package/sdk/platform/Billing/BillingPlatformValidator.js +26 -25
  132. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +192 -165
  133. package/sdk/platform/Cart/CartPlatformApplicationClient.js +686 -510
  134. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +14 -11
  135. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +77 -61
  136. package/sdk/platform/Cart/CartPlatformModel.d.ts +84 -83
  137. package/sdk/platform/Cart/CartPlatformModel.js +676 -1206
  138. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +632 -632
  139. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +1558 -1556
  140. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +40 -40
  141. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +175 -175
  142. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +688 -688
  143. package/sdk/platform/Catalog/CatalogPlatformClient.js +1556 -1559
  144. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +291 -291
  145. package/sdk/platform/Catalog/CatalogPlatformModel.js +2133 -3910
  146. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +66 -66
  147. package/sdk/platform/Catalog/CatalogPlatformValidator.js +229 -228
  148. package/sdk/platform/Common/CommonPlatformClient.d.ts +12 -12
  149. package/sdk/platform/Common/CommonPlatformClient.js +40 -51
  150. package/sdk/platform/Common/CommonPlatformModel.d.ts +12 -12
  151. package/sdk/platform/Common/CommonPlatformModel.js +83 -160
  152. package/sdk/platform/Common/CommonPlatformValidator.d.ts +1 -1
  153. package/sdk/platform/Common/CommonPlatformValidator.js +7 -6
  154. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +326 -326
  155. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +945 -943
  156. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +30 -30
  157. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +88 -88
  158. package/sdk/platform/Communication/CommunicationPlatformClient.js +4 -3
  159. package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +67 -67
  160. package/sdk/platform/Communication/CommunicationPlatformModel.js +522 -974
  161. package/sdk/platform/Communication/CommunicationPlatformValidator.js +1 -0
  162. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +55 -55
  163. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +217 -216
  164. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +27 -27
  165. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +279 -542
  166. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +7 -7
  167. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +25 -24
  168. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +163 -153
  169. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +617 -552
  170. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +22 -21
  171. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +70 -64
  172. package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +125 -125
  173. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +348 -347
  174. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +148 -146
  175. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +854 -1508
  176. package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +9 -9
  177. package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +39 -38
  178. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +524 -534
  179. package/sdk/platform/Content/ContentPlatformApplicationClient.js +1287 -1346
  180. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +49 -50
  181. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +153 -159
  182. package/sdk/platform/Content/ContentPlatformModel.d.ts +78 -78
  183. package/sdk/platform/Content/ContentPlatformModel.js +485 -907
  184. package/sdk/platform/Discount/DiscountPlatformClient.d.ts +65 -65
  185. package/sdk/platform/Discount/DiscountPlatformClient.js +219 -218
  186. package/sdk/platform/Discount/DiscountPlatformModel.d.ts +7 -7
  187. package/sdk/platform/Discount/DiscountPlatformModel.js +60 -121
  188. package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +6 -6
  189. package/sdk/platform/Discount/DiscountPlatformValidator.js +30 -29
  190. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +25 -25
  191. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +83 -61
  192. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +1 -1
  193. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +9 -9
  194. package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +53 -53
  195. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +147 -125
  196. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +13 -13
  197. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +86 -169
  198. package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +3 -3
  199. package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +12 -11
  200. package/sdk/platform/Inventory/InventoryPlatformClient.d.ts +63 -63
  201. package/sdk/platform/Inventory/InventoryPlatformClient.js +231 -230
  202. package/sdk/platform/Inventory/InventoryPlatformModel.d.ts +30 -30
  203. package/sdk/platform/Inventory/InventoryPlatformModel.js +497 -964
  204. package/sdk/platform/Inventory/InventoryPlatformValidator.d.ts +7 -7
  205. package/sdk/platform/Inventory/InventoryPlatformValidator.js +29 -28
  206. package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +73 -73
  207. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +203 -201
  208. package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +7 -7
  209. package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +29 -29
  210. package/sdk/platform/Lead/LeadPlatformClient.d.ts +80 -80
  211. package/sdk/platform/Lead/LeadPlatformClient.js +215 -214
  212. package/sdk/platform/Lead/LeadPlatformModel.d.ts +35 -35
  213. package/sdk/platform/Lead/LeadPlatformModel.js +267 -474
  214. package/sdk/platform/Lead/LeadPlatformValidator.d.ts +6 -6
  215. package/sdk/platform/Lead/LeadPlatformValidator.js +25 -24
  216. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +10 -10
  217. package/sdk/platform/Order/OrderPlatformApplicationClient.js +68 -66
  218. package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +1 -1
  219. package/sdk/platform/Order/OrderPlatformApplicationValidator.js +7 -7
  220. package/sdk/platform/Order/OrderPlatformClient.d.ts +357 -357
  221. package/sdk/platform/Order/OrderPlatformClient.js +1046 -1033
  222. package/sdk/platform/Order/OrderPlatformModel.d.ts +198 -196
  223. package/sdk/platform/Order/OrderPlatformModel.js +1575 -2861
  224. package/sdk/platform/Order/OrderPlatformValidator.d.ts +32 -32
  225. package/sdk/platform/Order/OrderPlatformValidator.js +161 -160
  226. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +3 -1
  227. package/sdk/platform/Partner/PartnerPlatformApplicationValidator.js +1 -1
  228. package/sdk/platform/Partner/PartnerPlatformModel.d.ts +1 -1
  229. package/sdk/platform/Partner/PartnerPlatformModel.js +10 -26
  230. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +58 -58
  231. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +178 -178
  232. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +6 -6
  233. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +24 -24
  234. package/sdk/platform/Payment/PaymentPlatformClient.d.ts +42 -42
  235. package/sdk/platform/Payment/PaymentPlatformClient.js +156 -155
  236. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +27 -27
  237. package/sdk/platform/Payment/PaymentPlatformModel.js +222 -410
  238. package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +4 -4
  239. package/sdk/platform/Payment/PaymentPlatformValidator.js +22 -21
  240. package/sdk/platform/PlatformApplicationClient.d.ts +1496 -10325
  241. package/sdk/platform/PlatformApplicationClient.js +1584 -13899
  242. package/sdk/platform/PlatformClient.d.ts +7972 -7888
  243. package/sdk/platform/PlatformClient.js +8678 -10107
  244. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +85 -85
  245. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +299 -280
  246. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +8 -8
  247. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +35 -35
  248. package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +15 -15
  249. package/sdk/platform/Rewards/RewardsPlatformModel.js +92 -194
  250. package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +10 -10
  251. package/sdk/platform/Share/SharePlatformApplicationClient.js +62 -60
  252. package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +1 -1
  253. package/sdk/platform/Share/SharePlatformApplicationValidator.js +7 -7
  254. package/sdk/platform/Share/SharePlatformModel.d.ts +8 -8
  255. package/sdk/platform/Share/SharePlatformModel.js +60 -118
  256. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +132 -132
  257. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +314 -312
  258. package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +15 -15
  259. package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +45 -45
  260. package/sdk/platform/Theme/ThemePlatformModel.d.ts +34 -34
  261. package/sdk/platform/Theme/ThemePlatformModel.js +190 -336
  262. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +136 -69
  263. package/sdk/platform/User/UserPlatformApplicationClient.js +507 -166
  264. package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +12 -7
  265. package/sdk/platform/User/UserPlatformApplicationValidator.js +62 -24
  266. package/sdk/platform/User/UserPlatformModel.d.ts +79 -72
  267. package/sdk/platform/User/UserPlatformModel.js +440 -689
  268. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +31 -31
  269. package/sdk/platform/Webhook/WebhookPlatformClient.js +91 -90
  270. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +7 -7
  271. package/sdk/platform/Webhook/WebhookPlatformModel.js +68 -136
  272. package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +3 -3
  273. package/sdk/platform/Webhook/WebhookPlatformValidator.js +15 -14
  274. package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +13 -13
  275. package/sdk/public/Configuration/ConfigurationPublicClient.js +40 -38
  276. package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +12 -12
  277. package/sdk/public/Configuration/ConfigurationPublicModel.js +85 -162
  278. package/sdk/public/Configuration/ConfigurationPublicValidator.d.ts +1 -1
  279. package/sdk/public/Configuration/ConfigurationPublicValidator.js +6 -6
  280. package/sdk/public/Inventory/InventoryPublicClient.d.ts +34 -34
  281. package/sdk/public/Inventory/InventoryPublicClient.js +115 -113
  282. package/sdk/public/Inventory/InventoryPublicModel.d.ts +10 -10
  283. package/sdk/public/Inventory/InventoryPublicModel.js +119 -245
  284. package/sdk/public/Inventory/InventoryPublicValidator.d.ts +3 -3
  285. package/sdk/public/Inventory/InventoryPublicValidator.js +15 -15
  286. package/sdk/public/Webhook/WebhookPublicClient.js +2 -0
  287. package/sdk/public/Webhook/WebhookPublicModel.d.ts +7 -7
  288. package/sdk/public/Webhook/WebhookPublicModel.js +68 -136
  289. package/.github/workflows/on_create_release.yml +0 -23
  290. package/.github/workflows/on_merge_main.yml +0 -38
  291. package/.github/workflows/on_pull_request.yml +0 -35
  292. package/.prettierrc +0 -5
  293. package/documentation/application/CART.md +0 -7339
  294. package/documentation/application/CATALOG.md +0 -9597
  295. package/documentation/application/COMMON.md +0 -452
  296. package/documentation/application/COMMUNICATION.md +0 -467
  297. package/documentation/application/CONFIGURATION.md +0 -2906
  298. package/documentation/application/CONTENT.md +0 -3351
  299. package/documentation/application/FILESTORAGE.md +0 -578
  300. package/documentation/application/LEAD.md +0 -1895
  301. package/documentation/application/LOGISTIC.md +0 -765
  302. package/documentation/application/ORDER.md +0 -3432
  303. package/documentation/application/PAYMENT.md +0 -5221
  304. package/documentation/application/POSCART.md +0 -7938
  305. package/documentation/application/README.md +0 -21
  306. package/documentation/application/REWARDS.md +0 -708
  307. package/documentation/application/SHARE.md +0 -733
  308. package/documentation/application/THEME.md +0 -5800
  309. package/documentation/application/USER.md +0 -4335
  310. package/documentation/platform/ANALYTICS.md +0 -1154
  311. package/documentation/platform/AUDITTRAIL.md +0 -576
  312. package/documentation/platform/BILLING.md +0 -2400
  313. package/documentation/platform/CART.md +0 -5559
  314. package/documentation/platform/CATALOG.md +0 -23261
  315. package/documentation/platform/COMMON.md +0 -452
  316. package/documentation/platform/COMMUNICATION.md +0 -5718
  317. package/documentation/platform/COMPANYPROFILE.md +0 -2031
  318. package/documentation/platform/CONFIGURATION.md +0 -7339
  319. package/documentation/platform/CONTENT.md +0 -9098
  320. package/documentation/platform/DISCOUNT.md +0 -863
  321. package/documentation/platform/FILESTORAGE.md +0 -1081
  322. package/documentation/platform/INVENTORY.md +0 -1779
  323. package/documentation/platform/LEAD.md +0 -4740
  324. package/documentation/platform/ORDER.md +0 -8486
  325. package/documentation/platform/PARTNER.md +0 -220
  326. package/documentation/platform/PAYMENT.md +0 -3448
  327. package/documentation/platform/README.md +0 -27
  328. package/documentation/platform/REWARDS.md +0 -1083
  329. package/documentation/platform/SHARE.md +0 -606
  330. package/documentation/platform/THEME.md +0 -35729
  331. package/documentation/platform/USER.md +0 -2319
  332. package/documentation/platform/WEBHOOK.md +0 -591
  333. package/documentation/public/CONFIGURATION.md +0 -452
  334. package/documentation/public/INVENTORY.md +0 -690
  335. package/documentation/public/WEBHOOK.md +0 -352
  336. package/jest.config.d.ts +0 -4
  337. package/jest.config.js +0 -6
  338. package/tests/application/catalog.spec.js +0 -47
  339. package/tests/common/action-url.spec.js +0 -35
  340. package/tests/common/schema/action-url.json +0 -178
  341. package/tests/common/schema/url-action.json +0 -683
  342. package/tests/common/url-action.spec.js +0 -48
  343. package/tests/helpers/cookie.helper.js +0 -31
  344. package/tests/helpers/oauth.helper.js +0 -43
  345. package/tests/platform/catalog.spec.js +0 -49
  346. package/tests/public/location.spec.js +0 -39
@@ -1,3448 +0,0 @@
1
-
2
-
3
-
4
-
5
-
6
- ##### [Back to Platform docs](./README.md)
7
-
8
- ## Payment Methods
9
- Collect payment through many payment gateway i.e Stripe, Razorpay, Juspay etc.into Fynd or Self account
10
-
11
- * [getBrandPaymentGatewayConfig](#getbrandpaymentgatewayconfig)
12
- * [saveBrandPaymentGatewayConfig](#savebrandpaymentgatewayconfig)
13
- * [updateBrandPaymentGatewayConfig](#updatebrandpaymentgatewayconfig)
14
- * [getPaymentModeRoutes](#getpaymentmoderoutes)
15
- * [getAllPayouts](#getallpayouts)
16
- * [savePayout](#savepayout)
17
- * [updatePayout](#updatepayout)
18
- * [activateAndDectivatePayout](#activateanddectivatepayout)
19
- * [deletePayout](#deletepayout)
20
- * [getSubscriptionPaymentMethod](#getsubscriptionpaymentmethod)
21
- * [deleteSubscriptionPaymentMethod](#deletesubscriptionpaymentmethod)
22
- * [getSubscriptionConfig](#getsubscriptionconfig)
23
- * [saveSubscriptionSetupIntent](#savesubscriptionsetupintent)
24
- * [getBankAccountDetailsOpenAPI](#getbankaccountdetailsopenapi)
25
- * [addRefundBankAccountUsingOTP](#addrefundbankaccountusingotp)
26
- * [verifyIfscCode](#verifyifsccode)
27
- * [getUserOrderBeneficiaries](#getuserorderbeneficiaries)
28
- * [getUserBeneficiaries](#getuserbeneficiaries)
29
- * [confirmPayment](#confirmpayment)
30
- * [getUserCODlimitRoutes](#getusercodlimitroutes)
31
- * [setUserCODlimitRoutes](#setusercodlimitroutes)
32
-
33
-
34
-
35
- ## Methods with example and description
36
-
37
-
38
-
39
-
40
- ### getBrandPaymentGatewayConfig
41
- Get All Brand Payment Gateway Config Secret
42
-
43
-
44
-
45
- ```javascript
46
- // Promise
47
- const promise = client.application("<APPLICATION_ID>").payment.getBrandPaymentGatewayConfig();
48
-
49
- // Async/Await
50
- const data = await client.application("<APPLICATION_ID>").payment.getBrandPaymentGatewayConfig();
51
- ```
52
-
53
-
54
-
55
-
56
-
57
-
58
- Get All Brand Payment Gateway Config Secret
59
-
60
- *Returned Response:*
61
-
62
-
63
-
64
-
65
- [PaymentGatewayConfigResponse](#PaymentGatewayConfigResponse)
66
-
67
- Refund Transfer Mode
68
-
69
-
70
-
71
-
72
- <details>
73
- <summary><i>&nbsp; Example:</i></summary>
74
-
75
- ```json
76
- {
77
- "success": true,
78
- "created": true,
79
- "app_id": "000000000000000000000004",
80
- "excluded_fields": [
81
- "config_type",
82
- "aggregator"
83
- ],
84
- "display_fields": [
85
- "logo",
86
- "display"
87
- ],
88
- "aggregators": [
89
- {
90
- "key": "rrroooouuurrrrdddd",
91
- "secret": "yyyyooo",
92
- "is_active": false,
93
- "config_type": "",
94
- "merchant_key": "vvvvvvvvddd",
95
- "aggregator": "juspay",
96
- "display": {
97
- "link": "",
98
- "text": "Review in under process. Please wait while process completed or contact us for any further query.",
99
- "description": "Juspay is not a Payment Gateway (like Citrus, CCAvenue, PayU) but it works with any gateway or aggregator with zero interference in the Merchant-PG relations.",
100
- "reviewed": false
101
- },
102
- "logo": "https://hdn-1.fynd.com/payment/juspay-pg-logo.jpg"
103
- },
104
- {
105
- "key": "",
106
- "pin": "",
107
- "secret": "",
108
- "user_id": "",
109
- "is_active": false,
110
- "config_type": "",
111
- "merchant_id": "",
112
- "aggregator": "mswipe",
113
- "display": {
114
- "link": "",
115
- "text": "Submitted request to be reviewed before going live. Please contact us for any further query.",
116
- "description": "Mswipe card swipe machines are safe and secure and accepts all debit & credit cards."
117
- },
118
- "logo": "https://hdn-1.fynd.com/payment/mswipe-pg-logo.png"
119
- },
120
- {
121
- "key": "tttyyyyyy",
122
- "secret": "rerrrrrrrr",
123
- "is_active": false,
124
- "config_type": "",
125
- "merchant_salt": "qqqqq",
126
- "aggregator": "payumoney",
127
- "display": {
128
- "link": "",
129
- "text": "Review in under process. Please wait while process completed or contact us for any further query.",
130
- "description": "PayUmoney supports wide range of options for making online payments via wallets, UPI, cards, and netbanking.",
131
- "reviewed": false
132
- },
133
- "logo": "https://hdn-1.fynd.com/payment/payu_logo_large.png"
134
- },
135
- {
136
- "key": "test",
137
- "secret": "test",
138
- "is_active": true,
139
- "config_type": "self",
140
- "webhook_secret": "test",
141
- "aggregator": "razorpay",
142
- "display": {
143
- "link": "",
144
- "text": "Well done, You payment gateway successfully lived. Collect your payment at your end.",
145
- "description": "Razorpay is a payments platform which accept online payments via Credit Card, Debit Card, Net banking, UPI, BharatQR and Wallets.",
146
- "reviewed": true
147
- },
148
- "logo": "https://hdn-1.fynd.com/payment/razorpay-pg-logo.jpg"
149
- },
150
- {
151
- "key": "",
152
- "secret": "",
153
- "is_active": false,
154
- "config_type": "",
155
- "aggregator": "rupifi",
156
- "display": {
157
- "link": "",
158
- "text": "Submitted request to be reviewed before going live. Please contact us for any further query.",
159
- "description": "Rupifi enables businesses to avail credits and allows a 'Buy now, Pay later' system for making transactions and purchases."
160
- },
161
- "logo": "https://hdn-1.fynd.com/payment/Rupifi.png"
162
- },
163
- {
164
- "key": "12345",
165
- "secret": "12345",
166
- "is_active": false,
167
- "config_type": "",
168
- "aggregator": "simpl",
169
- "display": {
170
- "link": "",
171
- "text": "Review in under process. Please wait while process completed or contact us for any further query.",
172
- "description": "Simpl is a Pay Later payment method.",
173
- "reviewed": false
174
- },
175
- "logo": "https://hdn-1.fynd.com/payment/simpl-pg-logo.jpg"
176
- },
177
- {
178
- "key": "",
179
- "secret": "",
180
- "is_active": false,
181
- "product_id": "",
182
- "config_type": "",
183
- "webhook_secret": "",
184
- "aggregator": "stripe",
185
- "display": {
186
- "link": "",
187
- "text": "Submitted request to be reviewed before going live. Please contact us for any further query.",
188
- "description": "Stripe is a payment processor that supports online payments, credit cards, recurring subscriptions and direct payouts to bank accounts."
189
- },
190
- "logo": "https://hdn-1.fynd.com/payment/Stripe.png"
191
- }
192
- ]
193
- }
194
- ```
195
- </details>
196
-
197
-
198
-
199
-
200
-
201
-
202
-
203
-
204
-
205
- ---
206
-
207
-
208
- ### saveBrandPaymentGatewayConfig
209
- Save Config Secret For Brand Payment Gateway
210
-
211
-
212
-
213
- ```javascript
214
- // Promise
215
- const promise = client.application("<APPLICATION_ID>").payment.saveBrandPaymentGatewayConfig({ body : value });
216
-
217
- // Async/Await
218
- const data = await client.application("<APPLICATION_ID>").payment.saveBrandPaymentGatewayConfig({ body : value });
219
- ```
220
-
221
-
222
-
223
-
224
-
225
- | Argument | Type | Required | Description |
226
- | --------- | ----- | -------- | ----------- |
227
- | body | [PaymentGatewayConfigRequest](#PaymentGatewayConfigRequest) | yes | Request body |
228
-
229
-
230
- Save Config Secret For Brand Payment Gateway
231
-
232
- *Returned Response:*
233
-
234
-
235
-
236
-
237
- [PaymentGatewayToBeReviewed](#PaymentGatewayToBeReviewed)
238
-
239
- Save Config Secret For Brand Payment Gateway Success Response.
240
-
241
-
242
-
243
-
244
- <details>
245
- <summary><i>&nbsp; Example:</i></summary>
246
-
247
- ```json
248
- {
249
- "success": true,
250
- "aggregators": [
251
- "razorpay"
252
- ]
253
- }
254
- ```
255
- </details>
256
-
257
-
258
-
259
-
260
-
261
-
262
-
263
-
264
-
265
- ---
266
-
267
-
268
- ### updateBrandPaymentGatewayConfig
269
- Save Config Secret For Brand Payment Gateway
270
-
271
-
272
-
273
- ```javascript
274
- // Promise
275
- const promise = client.application("<APPLICATION_ID>").payment.updateBrandPaymentGatewayConfig({ body : value });
276
-
277
- // Async/Await
278
- const data = await client.application("<APPLICATION_ID>").payment.updateBrandPaymentGatewayConfig({ body : value });
279
- ```
280
-
281
-
282
-
283
-
284
-
285
- | Argument | Type | Required | Description |
286
- | --------- | ----- | -------- | ----------- |
287
- | body | [PaymentGatewayConfigRequest](#PaymentGatewayConfigRequest) | yes | Request body |
288
-
289
-
290
- Save Config Secret For Brand Payment Gateway
291
-
292
- *Returned Response:*
293
-
294
-
295
-
296
-
297
- [PaymentGatewayToBeReviewed](#PaymentGatewayToBeReviewed)
298
-
299
- Save Config Secret For Brand Payment Gateway Success Response.
300
-
301
-
302
-
303
-
304
- <details>
305
- <summary><i>&nbsp; Example:</i></summary>
306
-
307
- ```json
308
- {
309
- "success": true,
310
- "aggregators": [
311
- "razorpay"
312
- ]
313
- }
314
- ```
315
- </details>
316
-
317
-
318
-
319
-
320
-
321
-
322
-
323
-
324
-
325
- ---
326
-
327
-
328
- ### getPaymentModeRoutes
329
- Get All Valid Payment Options
330
-
331
-
332
-
333
- ```javascript
334
- // Promise
335
- const promise = client.application("<APPLICATION_ID>").payment.getPaymentModeRoutes({ refresh : value,
336
- requestType : value });
337
-
338
- // Async/Await
339
- const data = await client.application("<APPLICATION_ID>").payment.getPaymentModeRoutes({ refresh : value,
340
- requestType : value });
341
- ```
342
-
343
-
344
-
345
-
346
-
347
- | Argument | Type | Required | Description |
348
- | --------- | ----- | -------- | ----------- |
349
- | refresh | boolean | yes | |
350
- | requestType | string | yes | |
351
-
352
-
353
-
354
- Use this API to get Get All Valid Payment Options for making payment
355
-
356
- *Returned Response:*
357
-
358
-
359
-
360
-
361
- [PaymentOptionsResponse](#PaymentOptionsResponse)
362
-
363
- Success
364
-
365
-
366
-
367
-
368
- <details>
369
- <summary><i>&nbsp; Example:</i></summary>
370
-
371
- ```json
372
- {
373
- "success": true,
374
- "payment_options": {
375
- "payment_option": [
376
- {
377
- "name": "CARD",
378
- "display_priority": 2,
379
- "payment_mode_id": 2,
380
- "display_name": "Card",
381
- "list": [],
382
- "anonymous_enable": true,
383
- "aggregator_name": "Razorpay",
384
- "add_card_enabled": false,
385
- "save_card": true,
386
- "types": [],
387
- "networks": [],
388
- "banks": []
389
- },
390
- {
391
- "name": "NB",
392
- "display_priority": 3,
393
- "payment_mode_id": 3,
394
- "display_name": "Net Banking",
395
- "list": [
396
- {
397
- "aggregator_name": "Razorpay",
398
- "name": "ICICI Bank",
399
- "code": "ICIC",
400
- "bank_name": "ICICI Bank",
401
- "bank_code": "ICIC",
402
- "url": "https://hdn-1.fynd.com/payment/NB_ICICI.png",
403
- "logo_url": {
404
- "small": "https://hdn-1.fynd.com/payment/NB_ICICI.png",
405
- "large": "https://hdn-1.fynd.com/payment/NB_ICICI.png"
406
- },
407
- "merchant_code": "NB_ICICI",
408
- "display_priority": 1,
409
- "display_name": "ICICI Bank"
410
- },
411
- {
412
- "aggregator_name": "Razorpay",
413
- "name": "HDFC Bank",
414
- "code": "HDFC",
415
- "bank_name": "HDFC Bank",
416
- "bank_code": "HDFC",
417
- "url": "https://hdn-1.fynd.com/payment/NB_HDFC.png",
418
- "logo_url": {
419
- "small": "https://hdn-1.fynd.com/payment/NB_HDFC.png",
420
- "large": "https://hdn-1.fynd.com/payment/NB_HDFC.png"
421
- },
422
- "merchant_code": "NB_HDFC",
423
- "display_priority": 2,
424
- "display_name": "HDFC Bank"
425
- },
426
- {
427
- "aggregator_name": "Razorpay",
428
- "name": "Axis Bank",
429
- "code": "UTIB",
430
- "bank_name": "Axis Bank",
431
- "bank_code": "UTIB",
432
- "url": "https://hdn-1.fynd.com/payment/NB_AXIS.png",
433
- "logo_url": {
434
- "small": "https://hdn-1.fynd.com/payment/NB_AXIS.png",
435
- "large": "https://hdn-1.fynd.com/payment/NB_AXIS.png"
436
- },
437
- "merchant_code": "NB_AXIS",
438
- "display_priority": 3,
439
- "display_name": "Axis Bank"
440
- },
441
- {
442
- "aggregator_name": "Razorpay",
443
- "name": "State Bank of India",
444
- "code": "SBIN",
445
- "bank_name": "State Bank of India",
446
- "bank_code": "SBIN",
447
- "url": "https://hdn-1.fynd.com/payment/NB_SBI.png",
448
- "logo_url": {
449
- "small": "https://hdn-1.fynd.com/payment/NB_SBI.png",
450
- "large": "https://hdn-1.fynd.com/payment/NB_SBI.png"
451
- },
452
- "merchant_code": "NB_SBI",
453
- "display_priority": 4,
454
- "display_name": "State Bank of India"
455
- },
456
- {
457
- "aggregator_name": "Razorpay",
458
- "name": "Kotak Mahindra Bank",
459
- "code": "KKBK",
460
- "bank_name": "Kotak Mahindra Bank",
461
- "bank_code": "KKBK",
462
- "url": "https://hdn-1.fynd.com/payment/NB_KOTAK.png",
463
- "logo_url": {
464
- "small": "https://hdn-1.fynd.com/payment/NB_KOTAK.png",
465
- "large": "https://hdn-1.fynd.com/payment/NB_KOTAK.png"
466
- },
467
- "merchant_code": "NB_KOTAK",
468
- "display_priority": 5,
469
- "display_name": "Kotak Mahindra Bank"
470
- },
471
- {
472
- "aggregator_name": "Razorpay",
473
- "name": "Indusind Bank",
474
- "code": "INDB",
475
- "bank_name": "Indusind Bank",
476
- "bank_code": "INDB",
477
- "url": "https://hdn-1.fynd.com/payment/NB_INDUS.png",
478
- "logo_url": {
479
- "small": "https://hdn-1.fynd.com/payment/NB_INDUS.png",
480
- "large": "https://hdn-1.fynd.com/payment/NB_INDUS.png"
481
- },
482
- "merchant_code": "INDB",
483
- "display_priority": 6,
484
- "display_name": "Indusind Bank"
485
- },
486
- {
487
- "aggregator_name": "Razorpay",
488
- "name": "City Union Bank",
489
- "code": "CIUB",
490
- "bank_name": "City Union Bank",
491
- "bank_code": "CIUB",
492
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
493
- "logo_url": {
494
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
495
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
496
- },
497
- "merchant_code": "NB_CUB",
498
- "display_priority": 9,
499
- "display_name": "City Union Bank"
500
- },
501
- {
502
- "aggregator_name": "Razorpay",
503
- "name": "Catholic Syrian Bank",
504
- "code": "CSBK",
505
- "bank_name": "Catholic Syrian Bank",
506
- "bank_code": "CSBK",
507
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
508
- "logo_url": {
509
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
510
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
511
- },
512
- "merchant_code": "CSBK",
513
- "display_priority": 11,
514
- "display_name": "Catholic Syrian Bank"
515
- },
516
- {
517
- "aggregator_name": "Razorpay",
518
- "name": "State Bank of Hyderabad",
519
- "code": "SBHY",
520
- "bank_name": "State Bank of Hyderabad",
521
- "bank_code": "SBHY",
522
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
523
- "logo_url": {
524
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
525
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
526
- },
527
- "merchant_code": "NB_SBH",
528
- "display_priority": 12,
529
- "display_name": "State Bank of Hyderabad"
530
- },
531
- {
532
- "aggregator_name": "Razorpay",
533
- "name": "Allahabad Bank",
534
- "code": "ALLA",
535
- "bank_name": "Allahabad Bank",
536
- "bank_code": "ALLA",
537
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
538
- "logo_url": {
539
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
540
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
541
- },
542
- "merchant_code": "ALLA",
543
- "display_priority": 15,
544
- "display_name": "Allahabad Bank"
545
- },
546
- {
547
- "aggregator_name": "Razorpay",
548
- "name": "Syndicate Bank",
549
- "code": "SYNB",
550
- "bank_name": "Syndicate Bank",
551
- "bank_code": "SYNB",
552
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
553
- "logo_url": {
554
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
555
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
556
- },
557
- "merchant_code": "SYNB",
558
- "display_priority": 17,
559
- "display_name": "Syndicate Bank"
560
- },
561
- {
562
- "aggregator_name": "Razorpay",
563
- "name": "Corporation Bank",
564
- "code": "CORP",
565
- "bank_name": "Corporation Bank",
566
- "bank_code": "CORP",
567
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
568
- "logo_url": {
569
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
570
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
571
- },
572
- "merchant_code": "NB_CORP",
573
- "display_priority": 18,
574
- "display_name": "Corporation Bank"
575
- },
576
- {
577
- "aggregator_name": "Razorpay",
578
- "name": "Punjab National Bank - Corporate Banking",
579
- "code": "PUNB_C",
580
- "bank_name": "Punjab National Bank - Corporate Banking",
581
- "bank_code": "PUNB_C",
582
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
583
- "logo_url": {
584
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
585
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
586
- },
587
- "merchant_code": "PUNB_C",
588
- "display_priority": 19,
589
- "display_name": "Punjab National Bank - Corporate Banking"
590
- },
591
- {
592
- "aggregator_name": "Razorpay",
593
- "name": "Canara Bank",
594
- "code": "CNRB",
595
- "bank_name": "Canara Bank",
596
- "bank_code": "CNRB",
597
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
598
- "logo_url": {
599
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
600
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
601
- },
602
- "merchant_code": "NB_CANR",
603
- "display_priority": 20,
604
- "display_name": "Canara Bank"
605
- },
606
- {
607
- "aggregator_name": "Razorpay",
608
- "name": "Saraswat Co-operative Bank",
609
- "code": "SRCB",
610
- "bank_name": "Saraswat Co-operative Bank",
611
- "bank_code": "SRCB",
612
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
613
- "logo_url": {
614
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
615
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
616
- },
617
- "merchant_code": "SRCB",
618
- "display_priority": 21,
619
- "display_name": "Saraswat Co-operative Bank"
620
- },
621
- {
622
- "aggregator_name": "Razorpay",
623
- "name": "Deutsche Bank",
624
- "code": "DEUT",
625
- "bank_name": "Deutsche Bank",
626
- "bank_code": "DEUT",
627
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
628
- "logo_url": {
629
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
630
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
631
- },
632
- "merchant_code": "NB_DEUT",
633
- "display_priority": 22,
634
- "display_name": "Deutsche Bank"
635
- },
636
- {
637
- "aggregator_name": "Razorpay",
638
- "name": "Dhanlaxmi Bank",
639
- "code": "DLXB",
640
- "bank_name": "Dhanlaxmi Bank",
641
- "bank_code": "DLXB",
642
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
643
- "logo_url": {
644
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
645
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
646
- },
647
- "merchant_code": "DLXB",
648
- "display_priority": 24,
649
- "display_name": "Dhanlaxmi Bank"
650
- },
651
- {
652
- "aggregator_name": "Razorpay",
653
- "name": "Oriental Bank of Commerce",
654
- "code": "ORBC",
655
- "bank_name": "Oriental Bank of Commerce",
656
- "bank_code": "ORBC",
657
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
658
- "logo_url": {
659
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
660
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
661
- },
662
- "merchant_code": "ORBC",
663
- "display_priority": 25,
664
- "display_name": "Oriental Bank of Commerce"
665
- },
666
- {
667
- "aggregator_name": "Razorpay",
668
- "name": "Punjab National Bank - Retail Banking",
669
- "code": "PUNB_R",
670
- "bank_name": "Punjab National Bank - Retail Banking",
671
- "bank_code": "PUNB_R",
672
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
673
- "logo_url": {
674
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
675
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
676
- },
677
- "merchant_code": "PUNB_R",
678
- "display_priority": 26,
679
- "display_name": "Punjab National Bank - Retail Banking"
680
- },
681
- {
682
- "aggregator_name": "Razorpay",
683
- "name": "State Bank of Bikaner and Jaipur",
684
- "code": "SBBJ",
685
- "bank_name": "State Bank of Bikaner and Jaipur",
686
- "bank_code": "SBBJ",
687
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
688
- "logo_url": {
689
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
690
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
691
- },
692
- "merchant_code": "NB_SBBJ",
693
- "display_priority": 27,
694
- "display_name": "State Bank of Bikaner and Jaipur"
695
- },
696
- {
697
- "aggregator_name": "Razorpay",
698
- "name": "Indian Overseas Bank",
699
- "code": "IOBA",
700
- "bank_name": "Indian Overseas Bank",
701
- "bank_code": "IOBA",
702
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
703
- "logo_url": {
704
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
705
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
706
- },
707
- "merchant_code": "NB_IOB",
708
- "display_priority": 28,
709
- "display_name": "Indian Overseas Bank"
710
- },
711
- {
712
- "aggregator_name": "Razorpay",
713
- "name": "State Bank of Travancore",
714
- "code": "SBTR",
715
- "bank_name": "State Bank of Travancore",
716
- "bank_code": "SBTR",
717
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
718
- "logo_url": {
719
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
720
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
721
- },
722
- "merchant_code": "NB_SBT",
723
- "display_priority": 29,
724
- "display_name": "State Bank of Travancore"
725
- },
726
- {
727
- "aggregator_name": "Razorpay",
728
- "name": "Airtel Payments Bank",
729
- "code": "AIRP",
730
- "bank_name": "Airtel Payments Bank",
731
- "bank_code": "AIRP",
732
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
733
- "logo_url": {
734
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
735
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
736
- },
737
- "merchant_code": "AIRP",
738
- "display_priority": 30,
739
- "display_name": "Airtel Payments Bank"
740
- },
741
- {
742
- "aggregator_name": "Razorpay",
743
- "name": "Development Bank of Singapore",
744
- "code": "DBSS",
745
- "bank_name": "Development Bank of Singapore",
746
- "bank_code": "DBSS",
747
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
748
- "logo_url": {
749
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
750
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
751
- },
752
- "merchant_code": "DBSS",
753
- "display_priority": 31,
754
- "display_name": "Development Bank of Singapore"
755
- },
756
- {
757
- "aggregator_name": "Razorpay",
758
- "name": "Vijaya Bank",
759
- "code": "VIJB",
760
- "bank_name": "Vijaya Bank",
761
- "bank_code": "VIJB",
762
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
763
- "logo_url": {
764
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
765
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
766
- },
767
- "merchant_code": "NB_VJYB",
768
- "display_priority": 32,
769
- "display_name": "Vijaya Bank"
770
- },
771
- {
772
- "aggregator_name": "Razorpay",
773
- "name": "NKGSB Co-operative Bank",
774
- "code": "NKGS",
775
- "bank_name": "NKGSB Co-operative Bank",
776
- "bank_code": "NKGS",
777
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
778
- "logo_url": {
779
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
780
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
781
- },
782
- "merchant_code": "NKGS",
783
- "display_priority": 33,
784
- "display_name": "NKGSB Co-operative Bank"
785
- },
786
- {
787
- "aggregator_name": "Razorpay",
788
- "name": "RBL Bank",
789
- "code": "RATN",
790
- "bank_name": "RBL Bank",
791
- "bank_code": "RATN",
792
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
793
- "logo_url": {
794
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
795
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
796
- },
797
- "merchant_code": "RATN",
798
- "display_priority": 35,
799
- "display_name": "RBL Bank"
800
- },
801
- {
802
- "aggregator_name": "Razorpay",
803
- "name": "Bank of Baroda - Retail Banking",
804
- "code": "BARB_R",
805
- "bank_name": "Bank of Baroda - Retail Banking",
806
- "bank_code": "BARB_R",
807
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
808
- "logo_url": {
809
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
810
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
811
- },
812
- "merchant_code": "BARB_R",
813
- "display_priority": 36,
814
- "display_name": "Bank of Baroda - Retail Banking"
815
- },
816
- {
817
- "aggregator_name": "Razorpay",
818
- "name": "Karnataka Bank",
819
- "code": "KARB",
820
- "bank_name": "Karnataka Bank",
821
- "bank_code": "KARB",
822
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
823
- "logo_url": {
824
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
825
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
826
- },
827
- "merchant_code": "NB_KARN",
828
- "display_priority": 37,
829
- "display_name": "Karnataka Bank"
830
- },
831
- {
832
- "aggregator_name": "Razorpay",
833
- "name": "Tamilnadu State Apex Co-operative Bank",
834
- "code": "TNSC",
835
- "bank_name": "Tamilnadu State Apex Co-operative Bank",
836
- "bank_code": "TNSC",
837
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
838
- "logo_url": {
839
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
840
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
841
- },
842
- "merchant_code": "TNSC",
843
- "display_priority": 38,
844
- "display_name": "Tamilnadu State Apex Co-operative Bank"
845
- },
846
- {
847
- "aggregator_name": "Razorpay",
848
- "name": "Tamilnadu Mercantile Bank",
849
- "code": "TMBL",
850
- "bank_name": "Tamilnadu Mercantile Bank",
851
- "bank_code": "TMBL",
852
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
853
- "logo_url": {
854
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
855
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
856
- },
857
- "merchant_code": "TMBL",
858
- "display_priority": 40,
859
- "display_name": "Tamilnadu Mercantile Bank"
860
- },
861
- {
862
- "aggregator_name": "Razorpay",
863
- "name": "Lakshmi Vilas Bank - Retail Banking",
864
- "code": "LAVB_R",
865
- "bank_name": "Lakshmi Vilas Bank - Retail Banking",
866
- "bank_code": "LAVB_R",
867
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
868
- "logo_url": {
869
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
870
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
871
- },
872
- "merchant_code": "LAVB_R",
873
- "display_priority": 42,
874
- "display_name": "Lakshmi Vilas Bank - Retail Banking"
875
- },
876
- {
877
- "aggregator_name": "Razorpay",
878
- "name": "Dena Bank",
879
- "code": "BKDN",
880
- "bank_name": "Dena Bank",
881
- "bank_code": "BKDN",
882
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
883
- "logo_url": {
884
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
885
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
886
- },
887
- "merchant_code": "BKDN",
888
- "display_priority": 43,
889
- "display_name": "Dena Bank"
890
- },
891
- {
892
- "aggregator_name": "Razorpay",
893
- "name": "Federal Bank",
894
- "code": "FDRL",
895
- "bank_name": "Federal Bank",
896
- "bank_code": "FDRL",
897
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
898
- "logo_url": {
899
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
900
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
901
- },
902
- "merchant_code": "NB_FED",
903
- "display_priority": 44,
904
- "display_name": "Federal Bank"
905
- },
906
- {
907
- "aggregator_name": "Razorpay",
908
- "name": "Indian Bank",
909
- "code": "IDIB",
910
- "bank_name": "Indian Bank",
911
- "bank_code": "IDIB",
912
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
913
- "logo_url": {
914
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
915
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
916
- },
917
- "merchant_code": "NB_INDB",
918
- "display_priority": 45,
919
- "display_name": "Indian Bank"
920
- },
921
- {
922
- "aggregator_name": "Razorpay",
923
- "name": "South Indian Bank",
924
- "code": "SIBL",
925
- "bank_name": "South Indian Bank",
926
- "bank_code": "SIBL",
927
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
928
- "logo_url": {
929
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
930
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
931
- },
932
- "merchant_code": "NB_SOIB",
933
- "display_priority": 46,
934
- "display_name": "South Indian Bank"
935
- },
936
- {
937
- "aggregator_name": "Razorpay",
938
- "name": "IDBI",
939
- "code": "IBKL",
940
- "bank_name": "IDBI",
941
- "bank_code": "IBKL",
942
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
943
- "logo_url": {
944
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
945
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
946
- },
947
- "merchant_code": "IBKL",
948
- "display_priority": 49,
949
- "display_name": "IDBI"
950
- },
951
- {
952
- "aggregator_name": "Razorpay",
953
- "name": "Karur Vysya Bank",
954
- "code": "KVBL",
955
- "bank_name": "Karur Vysya Bank",
956
- "bank_code": "KVBL",
957
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
958
- "logo_url": {
959
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
960
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
961
- },
962
- "merchant_code": "NB_KVB",
963
- "display_priority": 50,
964
- "display_name": "Karur Vysya Bank"
965
- },
966
- {
967
- "aggregator_name": "Razorpay",
968
- "name": "Punjab & Sind Bank",
969
- "code": "PSIB",
970
- "bank_name": "Punjab & Sind Bank",
971
- "bank_code": "PSIB",
972
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
973
- "logo_url": {
974
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
975
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
976
- },
977
- "merchant_code": "PSIB",
978
- "display_priority": 52,
979
- "display_name": "Punjab & Sind Bank"
980
- },
981
- {
982
- "aggregator_name": "Razorpay",
983
- "name": "UCO Bank",
984
- "code": "UCBA",
985
- "bank_name": "UCO Bank",
986
- "bank_code": "UCBA",
987
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
988
- "logo_url": {
989
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
990
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
991
- },
992
- "merchant_code": "UCBA",
993
- "display_priority": 53,
994
- "display_name": "UCO Bank"
995
- },
996
- {
997
- "aggregator_name": "Razorpay",
998
- "name": "Bank of Bahrein and Kuwait",
999
- "code": "BBKM",
1000
- "bank_name": "Bank of Bahrein and Kuwait",
1001
- "bank_code": "BBKM",
1002
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
1003
- "logo_url": {
1004
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
1005
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
1006
- },
1007
- "merchant_code": "BBKM",
1008
- "display_priority": 54,
1009
- "display_name": "Bank of Bahrein and Kuwait"
1010
- },
1011
- {
1012
- "aggregator_name": "Razorpay",
1013
- "name": "Yes Bank",
1014
- "code": "YESB",
1015
- "bank_name": "Yes Bank",
1016
- "bank_code": "YESB",
1017
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
1018
- "logo_url": {
1019
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
1020
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
1021
- },
1022
- "merchant_code": "NB_YESB",
1023
- "display_priority": 55,
1024
- "display_name": "Yes Bank"
1025
- },
1026
- {
1027
- "aggregator_name": "Razorpay",
1028
- "name": "Punjab & Maharashtra Co-operative Bank",
1029
- "code": "PMCB",
1030
- "bank_name": "Punjab & Maharashtra Co-operative Bank",
1031
- "bank_code": "PMCB",
1032
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
1033
- "logo_url": {
1034
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
1035
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
1036
- },
1037
- "merchant_code": "PMCB",
1038
- "display_priority": 56,
1039
- "display_name": "Punjab & Maharashtra Co-operative Bank"
1040
- },
1041
- {
1042
- "aggregator_name": "Razorpay",
1043
- "name": "Bank of India",
1044
- "code": "BKID",
1045
- "bank_name": "Bank of India",
1046
- "bank_code": "BKID",
1047
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
1048
- "logo_url": {
1049
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
1050
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
1051
- },
1052
- "merchant_code": "NB_BOI",
1053
- "display_priority": 57,
1054
- "display_name": "Bank of India"
1055
- },
1056
- {
1057
- "aggregator_name": "Razorpay",
1058
- "name": "Bank of Maharashtra",
1059
- "code": "MAHB",
1060
- "bank_name": "Bank of Maharashtra",
1061
- "bank_code": "MAHB",
1062
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
1063
- "logo_url": {
1064
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
1065
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
1066
- },
1067
- "merchant_code": "NB_BOM",
1068
- "display_priority": 58,
1069
- "display_name": "Bank of Maharashtra"
1070
- },
1071
- {
1072
- "aggregator_name": "Razorpay",
1073
- "name": "IDFC Bank",
1074
- "code": "IDFB",
1075
- "bank_name": "IDFC Bank",
1076
- "bank_code": "IDFB",
1077
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
1078
- "logo_url": {
1079
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
1080
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
1081
- },
1082
- "merchant_code": "IDFB",
1083
- "display_priority": 59,
1084
- "display_name": "IDFC Bank"
1085
- },
1086
- {
1087
- "aggregator_name": "Razorpay",
1088
- "name": "Janata Sahakari Bank (Pune)",
1089
- "code": "JSBP",
1090
- "bank_name": "Janata Sahakari Bank (Pune)",
1091
- "bank_code": "JSBP",
1092
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
1093
- "logo_url": {
1094
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
1095
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
1096
- },
1097
- "merchant_code": "JSBP",
1098
- "display_priority": 60,
1099
- "display_name": "Janata Sahakari Bank (Pune)"
1100
- },
1101
- {
1102
- "aggregator_name": "Razorpay",
1103
- "name": "Shamrao Vithal Co-operative Bank",
1104
- "code": "SVCB",
1105
- "bank_name": "Shamrao Vithal Co-operative Bank",
1106
- "bank_code": "SVCB",
1107
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
1108
- "logo_url": {
1109
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
1110
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
1111
- },
1112
- "merchant_code": "SVCB",
1113
- "display_priority": 61,
1114
- "display_name": "Shamrao Vithal Co-operative Bank"
1115
- },
1116
- {
1117
- "aggregator_name": "Razorpay",
1118
- "name": "Cosmos Co-operative Bank",
1119
- "code": "COSB",
1120
- "bank_name": "Cosmos Co-operative Bank",
1121
- "bank_code": "COSB",
1122
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
1123
- "logo_url": {
1124
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
1125
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
1126
- },
1127
- "merchant_code": "COSB",
1128
- "display_priority": 62,
1129
- "display_name": "Cosmos Co-operative Bank"
1130
- },
1131
- {
1132
- "aggregator_name": "Razorpay",
1133
- "name": "State Bank of Mysore",
1134
- "code": "SBMY",
1135
- "bank_name": "State Bank of Mysore",
1136
- "bank_code": "SBMY",
1137
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
1138
- "logo_url": {
1139
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
1140
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
1141
- },
1142
- "merchant_code": "NB_SBM",
1143
- "display_priority": 63,
1144
- "display_name": "State Bank of Mysore"
1145
- },
1146
- {
1147
- "aggregator_name": "Razorpay",
1148
- "name": "Andhra Bank",
1149
- "code": "ANDB",
1150
- "bank_name": "Andhra Bank",
1151
- "bank_code": "ANDB",
1152
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
1153
- "logo_url": {
1154
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
1155
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
1156
- },
1157
- "merchant_code": "ANDB",
1158
- "display_priority": 65,
1159
- "display_name": "Andhra Bank"
1160
- },
1161
- {
1162
- "aggregator_name": "Razorpay",
1163
- "name": "Jammu and Kashmir Bank",
1164
- "code": "JAKA",
1165
- "bank_name": "Jammu and Kashmir Bank",
1166
- "bank_code": "JAKA",
1167
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
1168
- "logo_url": {
1169
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
1170
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
1171
- },
1172
- "merchant_code": "NB_JNK",
1173
- "display_priority": 66,
1174
- "display_name": "Jammu and Kashmir Bank"
1175
- },
1176
- {
1177
- "aggregator_name": "Razorpay",
1178
- "name": "United Bank of India",
1179
- "code": "UTBI",
1180
- "bank_name": "United Bank of India",
1181
- "bank_code": "UTBI",
1182
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
1183
- "logo_url": {
1184
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
1185
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
1186
- },
1187
- "merchant_code": "UTBI",
1188
- "display_priority": 67,
1189
- "display_name": "United Bank of India"
1190
- },
1191
- {
1192
- "aggregator_name": "Razorpay",
1193
- "name": "Lakshmi Vilas Bank - Corporate Banking",
1194
- "code": "LAVB_C",
1195
- "bank_name": "Lakshmi Vilas Bank - Corporate Banking",
1196
- "bank_code": "LAVB_C",
1197
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
1198
- "logo_url": {
1199
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
1200
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
1201
- },
1202
- "merchant_code": "LAVB_C",
1203
- "display_priority": 69,
1204
- "display_name": "Lakshmi Vilas Bank - Corporate Banking"
1205
- },
1206
- {
1207
- "aggregator_name": "Razorpay",
1208
- "name": "State Bank of Patiala",
1209
- "code": "STBP",
1210
- "bank_name": "State Bank of Patiala",
1211
- "bank_code": "STBP",
1212
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
1213
- "logo_url": {
1214
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
1215
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
1216
- },
1217
- "merchant_code": "NB_SBP",
1218
- "display_priority": 70,
1219
- "display_name": "State Bank of Patiala"
1220
- },
1221
- {
1222
- "aggregator_name": "Razorpay",
1223
- "name": "DCB Bank",
1224
- "code": "DCBL",
1225
- "bank_name": "DCB Bank",
1226
- "bank_code": "DCBL",
1227
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
1228
- "logo_url": {
1229
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
1230
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
1231
- },
1232
- "merchant_code": "DCBL",
1233
- "display_priority": 71,
1234
- "display_name": "DCB Bank"
1235
- },
1236
- {
1237
- "aggregator_name": "Razorpay",
1238
- "name": "Union Bank of India",
1239
- "code": "UBIN",
1240
- "bank_name": "Union Bank of India",
1241
- "bank_code": "UBIN",
1242
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
1243
- "logo_url": {
1244
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
1245
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
1246
- },
1247
- "merchant_code": "NB_UBI",
1248
- "display_priority": 73,
1249
- "display_name": "Union Bank of India"
1250
- },
1251
- {
1252
- "aggregator_name": "Razorpay",
1253
- "name": "Standard Chartered Bank",
1254
- "code": "SCBL",
1255
- "bank_name": "Standard Chartered Bank",
1256
- "bank_code": "SCBL",
1257
- "url": "https://hdn-1.fynd.com/payment/NB_generic.png",
1258
- "logo_url": {
1259
- "small": "https://hdn-1.fynd.com/payment/NB_generic.png",
1260
- "large": "https://hdn-1.fynd.com/payment/NB_generic.png"
1261
- },
1262
- "merchant_code": "SCBL",
1263
- "display_priority": 74,
1264
- "display_name": "Standard Chartered Bank"
1265
- }
1266
- ]
1267
- },
1268
- {
1269
- "name": "WL",
1270
- "display_priority": 4,
1271
- "payment_mode_id": 4,
1272
- "display_name": "Wallet",
1273
- "list": [
1274
- {
1275
- "wallet_name": "Paytm",
1276
- "wallet_code": "paytm",
1277
- "name": "Paytm",
1278
- "display_name": "Paytm",
1279
- "code": "PAYTM",
1280
- "wallet_id": 4,
1281
- "merchant_code": "PAYTM",
1282
- "logo_url": {
1283
- "small": "https://hdn-1.fynd.com/payment/paytm_logo_small.png",
1284
- "large": "https://hdn-1.fynd.com/payment/paytm_logo_large.png"
1285
- },
1286
- "aggregator_name": "Juspay",
1287
- "display_priority": 1
1288
- },
1289
- {
1290
- "wallet_name": "Mobikwik",
1291
- "wallet_code": "mobikwik",
1292
- "name": "Mobikwik",
1293
- "display_name": "Mobikwik",
1294
- "code": "MOBIKWIK",
1295
- "wallet_id": 5,
1296
- "merchant_code": "MOBIKWIK",
1297
- "logo_url": {
1298
- "small": "https://hdn-1.fynd.com/payment/mobikwik_logo_small.png",
1299
- "large": "https://hdn-1.fynd.com/payment/mobikwik_logo_small.png"
1300
- },
1301
- "aggregator_name": "Juspay",
1302
- "display_priority": 3
1303
- },
1304
- {
1305
- "wallet_name": "Ola Money",
1306
- "wallet_code": "olamoney",
1307
- "name": "Ola Money",
1308
- "display_name": "Ola Money",
1309
- "code": "OLAMONEY",
1310
- "wallet_id": 6,
1311
- "merchant_code": "OLAMONEY",
1312
- "logo_url": {
1313
- "small": "https://hdn-1.fynd.com/payment/olamoney.png",
1314
- "large": "https://hdn-1.fynd.com/payment/olamoney.png"
1315
- },
1316
- "aggregator_name": "Razorpay",
1317
- "display_priority": 4
1318
- },
1319
- {
1320
- "wallet_name": "Amazon Pay",
1321
- "wallet_code": "amazonpay",
1322
- "name": "Amazon Pay",
1323
- "display_name": "Amazon Pay",
1324
- "code": "AMAZONPAY",
1325
- "wallet_id": 10,
1326
- "merchant_code": "AMAZONPAY",
1327
- "logo_url": {
1328
- "small": "https://hdn-1.fynd.com/payment/amazon-pay.png",
1329
- "large": "https://hdn-1.fynd.com/payment/amazon-pay.png"
1330
- },
1331
- "aggregator_name": "Razorpay",
1332
- "display_priority": 9
1333
- },
1334
- {
1335
- "wallet_name": "PayPal",
1336
- "wallet_code": "paypal",
1337
- "name": "PayPal",
1338
- "display_name": "PayPal",
1339
- "code": "PAYPAL",
1340
- "wallet_id": 11,
1341
- "merchant_code": "PAYPAL",
1342
- "logo_url": {
1343
- "small": "https://hdn-1.fynd.com/payment/paypal.jpg",
1344
- "large": "https://hdn-1.fynd.com/payment/paypal.jpg "
1345
- },
1346
- "aggregator_name": "Razorpay",
1347
- "display_priority": 10
1348
- }
1349
- ]
1350
- },
1351
- {
1352
- "name": "UPI",
1353
- "display_priority": 9,
1354
- "payment_mode_id": 7,
1355
- "display_name": "UPI",
1356
- "list": [
1357
- {
1358
- "aggregator_name": "Razorpay",
1359
- "name": "UPI",
1360
- "display_name": "BHIM UPI",
1361
- "code": "UPI",
1362
- "logo_url": {
1363
- "large": "https://hdn-1.fynd.com/payment/upi_150x100.png",
1364
- "small": "https://hdn-1.fynd.com/payment/upi_100x78.png"
1365
- },
1366
- "merchant_code": "UPI",
1367
- "timeout": 240,
1368
- "retry_count": 0,
1369
- "fynd_vpa": "shopsense.rzp@hdfcbank",
1370
- "intent_flow": true,
1371
- "intent_app": [
1372
- {
1373
- "code": "google_pay",
1374
- "display_name": "Google Pay",
1375
- "package_name": "com.google.android.apps.nbu.paisa.user",
1376
- "logos": {
1377
- "small": "https://hdn-1.fynd.com/payment/upi-google-pay.png",
1378
- "large": "https://hdn-1.fynd.com/payment/upi-google-pay.png"
1379
- }
1380
- }
1381
- ],
1382
- "intent_app_error_list": [
1383
- "com.csam.icici.bank.imobile",
1384
- "in.org.npci.upiapp",
1385
- "com.whatsapp"
1386
- ],
1387
- "intent_app_error_dict_list": [
1388
- {
1389
- "package_name": "com.csam.icici.bank.imobile",
1390
- "code": "icici"
1391
- },
1392
- {
1393
- "package_name": "in.org.npci.upiapp",
1394
- "code": "upiapp"
1395
- },
1396
- {
1397
- "package_name": "com.whatsapp",
1398
- "code": "whatsapp"
1399
- }
1400
- ]
1401
- }
1402
- ]
1403
- },
1404
- {
1405
- "name": "EMI",
1406
- "display_priority": 18,
1407
- "payment_mode_id": 19,
1408
- "display_name": "Easy EMI",
1409
- "list": [
1410
- {
1411
- "aggregator_name": "Razorpay",
1412
- "name": "EMI",
1413
- "display_name": "Easy EMI",
1414
- "code": "EMI",
1415
- "logo_url": {
1416
- "large": "https://hdn-1.fynd.com/payment/Pos+Logo.png",
1417
- "small": "https://hdn-1.fynd.com/payment/Pos+Logo.png"
1418
- },
1419
- "merchant_code": "EMI"
1420
- }
1421
- ]
1422
- },
1423
- {
1424
- "name": "JUSPAYPG",
1425
- "display_priority": 18,
1426
- "payment_mode_id": 23,
1427
- "display_name": "Pay Using Juspay",
1428
- "list": [
1429
- {
1430
- "aggregator_name": "Juspay",
1431
- "name": "JUSPAYPG",
1432
- "display_name": "Pay Using Juspay",
1433
- "code": "JUSPAYPG",
1434
- "logo_url": {
1435
- "large": "https://hdn-1.fynd.com/payment/netbanking.png",
1436
- "small": "https://hdn-1.fynd.com/payment/netbanking.png"
1437
- },
1438
- "merchant_code": "JUSPAYPG"
1439
- }
1440
- ]
1441
- },
1442
- {
1443
- "name": "PG_PAYMENT",
1444
- "display_priority": 20,
1445
- "display_name": "Other payment gateway",
1446
- "list": [
1447
- {
1448
- "aggregator_name": "Stripe",
1449
- "name": "STRIPEPG",
1450
- "display_name": "Pay using Stripe",
1451
- "code": "STRIPEPG",
1452
- "logo_url": {
1453
- "large": "https://hdn-1.fynd.com/payment/Pos+Logo.png",
1454
- "small": "https://hdn-1.fynd.com/payment/Pos+Logo.png"
1455
- },
1456
- "merchant_code": "STRIPEPG"
1457
- },
1458
- {
1459
- "aggregator_name": "Ccavenue",
1460
- "name": "CCAVENUEPG",
1461
- "display_name": "Pay using Ccavenue",
1462
- "code": "CCAVENUEPG",
1463
- "logo_url": {
1464
- "large": "https://hdn-1.fynd.com/payment/Pos+Logo.png",
1465
- "small": "https://hdn-1.fynd.com/payment/Pos+Logo.png"
1466
- },
1467
- "merchant_code": "CCAVENUEPG"
1468
- },
1469
- {
1470
- "aggregator_name": "Payumoney",
1471
- "name": "PAYUMONEYPG",
1472
- "display_name": "Pay using Payumoney",
1473
- "code": "PAYUMONEYPG",
1474
- "logo_url": {
1475
- "large": "https://fynd-obscuro-media-new.s3.amazonaws.com/payment/payu_logo_large.png",
1476
- "small": "https://fynd-obscuro-media-new.s3.amazonaws.com/payment/payu_logo_small.png"
1477
- },
1478
- "merchant_code": "PAYUMONEYPG"
1479
- },
1480
- {
1481
- "aggregator_name": "Payubiz",
1482
- "name": "PAYUBIZPG",
1483
- "display_name": "Pay using Payubiz",
1484
- "code": "PAYUBIZPG",
1485
- "logo_url": {
1486
- "large": "https://hdn-1.fynd.com/payment/payu.png",
1487
- "small": "https://hdn-1.fynd.com/payment/payu.png"
1488
- },
1489
- "merchant_code": "PAYUBIZPG"
1490
- }
1491
- ]
1492
- },
1493
- {
1494
- "name": "PL",
1495
- "display_priority": 21,
1496
- "display_name": "Pay Later",
1497
- "list": [
1498
- {
1499
- "aggregator_name": "Simpl",
1500
- "name": "Simpl",
1501
- "display_name": "Simpl",
1502
- "code": "SIMPL",
1503
- "merchant_code": "SIMPL",
1504
- "logo": "https://hdn-1.fynd.com/payment/simpl_logo.png",
1505
- "logo_url": {
1506
- "small": "https://hdn-1.fynd.com/payment/simpl_logo.png",
1507
- "large": "https://hdn-1.fynd.com/payment/simpl_logo.png"
1508
- }
1509
- },
1510
- {
1511
- "aggregator_name": "Rupifi",
1512
- "name": "RUPIFIPG",
1513
- "display_name": "Pay using Rupifi",
1514
- "code": "RUPIFIPG",
1515
- "logo_url": {
1516
- "large": "https://hdn-1.fynd.com/payment/Rupifi.png",
1517
- "small": "https://hdn-1.fynd.com/payment/Rupifi.png"
1518
- },
1519
- "merchant_code": "RUPIFIPG"
1520
- }
1521
- ]
1522
- }
1523
- ]
1524
- }
1525
- }
1526
- ```
1527
- </details>
1528
-
1529
-
1530
-
1531
-
1532
-
1533
-
1534
-
1535
-
1536
-
1537
- ---
1538
-
1539
-
1540
- ### getAllPayouts
1541
- Get All Payouts
1542
-
1543
-
1544
-
1545
- ```javascript
1546
- // Promise
1547
- const promise = client.payment.getAllPayouts({ uniqueExternalId : value });
1548
-
1549
- // Async/Await
1550
- const data = await client.payment.getAllPayouts({ uniqueExternalId : value });
1551
- ```
1552
-
1553
-
1554
-
1555
-
1556
-
1557
- | Argument | Type | Required | Description |
1558
- | --------- | ----- | -------- | ----------- |
1559
- | uniqueExternalId | string | no | Fetch payouts using unique external id |
1560
-
1561
-
1562
-
1563
- Get All Payouts
1564
-
1565
- *Returned Response:*
1566
-
1567
-
1568
-
1569
-
1570
- [PayoutsResponse](#PayoutsResponse)
1571
-
1572
- payouts response object
1573
-
1574
-
1575
-
1576
-
1577
- <details>
1578
- <summary><i>&nbsp; Example:</i></summary>
1579
-
1580
- ```json
1581
- [
1582
- {
1583
- "unique_transfer_no": "d2ff79fcd3459831864824da8c9d7e5f",
1584
- "more_attributes": {
1585
- "city": "",
1586
- "state": "",
1587
- "country": "",
1588
- "bank_name": "YES",
1589
- "ifsc_code": "IFSCYES101",
1590
- "account_no": "9876541234",
1591
- "branch_name": "Mumbai",
1592
- "account_type": "current",
1593
- "account_holder": "Vikas Kumar"
1594
- },
1595
- "transfer_type": "bank",
1596
- "is_default": true,
1597
- "is_active": true,
1598
- "customers": {
1599
- "id": 2,
1600
- "name": "reliance retail",
1601
- "mobile": "1234567890",
1602
- "email": "reliance@gmail.com",
1603
- "unique_external_id": "company:1"
1604
- },
1605
- "payouts_aggregators": [
1606
- {
1607
- "payout_details_id": 888,
1608
- "aggregator_id": 3,
1609
- "aggregator_fund_id": null
1610
- }
1611
- ]
1612
- },
1613
- {
1614
- "unique_transfer_no": "e388c1c5df4933fa01f6da9f92595589",
1615
- "more_attributes": {
1616
- "city": "",
1617
- "state": "",
1618
- "country": "",
1619
- "bank_name": "SBI",
1620
- "ifsc_code": "SBIN0011513",
1621
- "account_no": "9876543210",
1622
- "branch_name": "Mumbai",
1623
- "account_type": "saving",
1624
- "account_holder": "Vikas Kumar"
1625
- },
1626
- "transfer_type": "bank",
1627
- "is_default": false,
1628
- "is_active": true,
1629
- "customers": {
1630
- "id": 2,
1631
- "name": "reliance retail",
1632
- "mobile": "1234567890",
1633
- "email": "reliance@gmail.com",
1634
- "unique_external_id": "company:1"
1635
- },
1636
- "payouts_aggregators": [
1637
- {
1638
- "payout_details_id": 891,
1639
- "aggregator_id": 3,
1640
- "aggregator_fund_id": null
1641
- }
1642
- ]
1643
- }
1644
- ]
1645
- ```
1646
- </details>
1647
-
1648
-
1649
-
1650
-
1651
-
1652
-
1653
-
1654
-
1655
-
1656
- ---
1657
-
1658
-
1659
- ### savePayout
1660
- Save Payout
1661
-
1662
-
1663
-
1664
- ```javascript
1665
- // Promise
1666
- const promise = client.payment.savePayout({ body : value });
1667
-
1668
- // Async/Await
1669
- const data = await client.payment.savePayout({ body : value });
1670
- ```
1671
-
1672
-
1673
-
1674
-
1675
-
1676
- | Argument | Type | Required | Description |
1677
- | --------- | ----- | -------- | ----------- |
1678
- | body | [PayoutRequest](#PayoutRequest) | yes | Request body |
1679
-
1680
-
1681
- Save Payout
1682
-
1683
- *Returned Response:*
1684
-
1685
-
1686
-
1687
-
1688
- [PayoutResponse](#PayoutResponse)
1689
-
1690
- save payout response object
1691
-
1692
-
1693
-
1694
-
1695
- <details>
1696
- <summary><i>&nbsp; Example:</i></summary>
1697
-
1698
- ```json
1699
- {
1700
- "success": true,
1701
- "is_active": true,
1702
- "bank_details": {
1703
- "account_type": "saving",
1704
- "account_holder": "Vikas Kumar",
1705
- "branch_name": "Mumbai",
1706
- "country": "",
1707
- "ifsc_code": "SBIN0011513",
1708
- "account_no": "9876543210",
1709
- "city": "",
1710
- "state": "",
1711
- "bank_name": "SBI"
1712
- },
1713
- "unique_transfer_no": "e388c1c5df4933fa01f6da9f92595589",
1714
- "users": {
1715
- "name": "reliance retail",
1716
- "unique_external_id": "company:1",
1717
- "mobile": "1234567890",
1718
- "email": "reliance@gmail.com"
1719
- },
1720
- "aggregator": "Razorpay",
1721
- "transfer_type": "bank",
1722
- "created": true,
1723
- "payouts": {
1724
- "aggregator_fund_id": null
1725
- },
1726
- "payment_status": "payout_initiated"
1727
- }
1728
- ```
1729
- </details>
1730
-
1731
-
1732
-
1733
-
1734
-
1735
-
1736
-
1737
-
1738
-
1739
- ---
1740
-
1741
-
1742
- ### updatePayout
1743
- Update Payout
1744
-
1745
-
1746
-
1747
- ```javascript
1748
- // Promise
1749
- const promise = client.payment.updatePayout({ uniqueTransferNo : value,
1750
- body : value });
1751
-
1752
- // Async/Await
1753
- const data = await client.payment.updatePayout({ uniqueTransferNo : value,
1754
- body : value });
1755
- ```
1756
-
1757
-
1758
-
1759
-
1760
-
1761
- | Argument | Type | Required | Description |
1762
- | --------- | ----- | -------- | ----------- |
1763
- | uniqueTransferNo | string | yes | Unique transfer id |
1764
- | body | [PayoutRequest](#PayoutRequest) | yes | Request body |
1765
-
1766
-
1767
- Update Payout
1768
-
1769
- *Returned Response:*
1770
-
1771
-
1772
-
1773
-
1774
- [UpdatePayoutResponse](#UpdatePayoutResponse)
1775
-
1776
- save payout response object
1777
-
1778
-
1779
-
1780
-
1781
- <details>
1782
- <summary><i>&nbsp; Example:</i></summary>
1783
-
1784
- ```json
1785
- {
1786
- "success": true,
1787
- "is_default": true,
1788
- "is_active": true
1789
- }
1790
- ```
1791
- </details>
1792
-
1793
-
1794
-
1795
-
1796
-
1797
-
1798
-
1799
-
1800
-
1801
- ---
1802
-
1803
-
1804
- ### activateAndDectivatePayout
1805
- Partial Update Payout
1806
-
1807
-
1808
-
1809
- ```javascript
1810
- // Promise
1811
- const promise = client.payment.activateAndDectivatePayout({ uniqueTransferNo : value,
1812
- body : value });
1813
-
1814
- // Async/Await
1815
- const data = await client.payment.activateAndDectivatePayout({ uniqueTransferNo : value,
1816
- body : value });
1817
- ```
1818
-
1819
-
1820
-
1821
-
1822
-
1823
- | Argument | Type | Required | Description |
1824
- | --------- | ----- | -------- | ----------- |
1825
- | uniqueTransferNo | string | yes | Unique transfer id |
1826
- | body | [UpdatePayoutRequest](#UpdatePayoutRequest) | yes | Request body |
1827
-
1828
-
1829
- Partial Update Payout
1830
-
1831
- *Returned Response:*
1832
-
1833
-
1834
-
1835
-
1836
- [UpdatePayoutResponse](#UpdatePayoutResponse)
1837
-
1838
- save payout response object
1839
-
1840
-
1841
-
1842
-
1843
- <details>
1844
- <summary><i>&nbsp; Example:</i></summary>
1845
-
1846
- ```json
1847
- {
1848
- "success": true,
1849
- "is_default": true,
1850
- "is_active": true
1851
- }
1852
- ```
1853
- </details>
1854
-
1855
-
1856
-
1857
-
1858
-
1859
-
1860
-
1861
-
1862
-
1863
- ---
1864
-
1865
-
1866
- ### deletePayout
1867
- Delete Payout
1868
-
1869
-
1870
-
1871
- ```javascript
1872
- // Promise
1873
- const promise = client.payment.deletePayout({ uniqueTransferNo : value });
1874
-
1875
- // Async/Await
1876
- const data = await client.payment.deletePayout({ uniqueTransferNo : value });
1877
- ```
1878
-
1879
-
1880
-
1881
-
1882
-
1883
- | Argument | Type | Required | Description |
1884
- | --------- | ----- | -------- | ----------- |
1885
- | uniqueTransferNo | string | yes | Unique transfer id |
1886
-
1887
-
1888
-
1889
- Delete Payout
1890
-
1891
- *Returned Response:*
1892
-
1893
-
1894
-
1895
-
1896
- [DeletePayoutResponse](#DeletePayoutResponse)
1897
-
1898
- delete payout response object
1899
-
1900
-
1901
-
1902
-
1903
- <details>
1904
- <summary><i>&nbsp; Example:</i></summary>
1905
-
1906
- ```json
1907
- {
1908
- "success": true
1909
- }
1910
- ```
1911
- </details>
1912
-
1913
-
1914
-
1915
-
1916
-
1917
-
1918
-
1919
-
1920
-
1921
- ---
1922
-
1923
-
1924
- ### getSubscriptionPaymentMethod
1925
- List Subscription Payment Method
1926
-
1927
-
1928
-
1929
- ```javascript
1930
- // Promise
1931
- const promise = client.payment.getSubscriptionPaymentMethod({ uniqueExternalId : value });
1932
-
1933
- // Async/Await
1934
- const data = await client.payment.getSubscriptionPaymentMethod({ uniqueExternalId : value });
1935
- ```
1936
-
1937
-
1938
-
1939
-
1940
-
1941
- | Argument | Type | Required | Description |
1942
- | --------- | ----- | -------- | ----------- |
1943
- | uniqueExternalId | string | no | Unique external id |
1944
-
1945
-
1946
-
1947
- Get all Subscription Payment Method
1948
-
1949
- *Returned Response:*
1950
-
1951
-
1952
-
1953
-
1954
- [SubscriptionPaymentMethodResponse](#SubscriptionPaymentMethodResponse)
1955
-
1956
- List Subscription Payment Method Response
1957
-
1958
-
1959
-
1960
-
1961
- <details>
1962
- <summary><i>&nbsp; Example:</i></summary>
1963
-
1964
- ```json
1965
- {
1966
- "success": true,
1967
- "data": [
1968
- {
1969
- "id": 68,
1970
- "type": "card",
1971
- "pg_payment_method_id": "pm_1H8HyIJ1ZTFIN1aD5eDOL4nU",
1972
- "data": {
1973
- "brand": "visa",
1974
- "last4": "4242",
1975
- "checks": {
1976
- "cvc_check": "pass",
1977
- "address_line1_check": null,
1978
- "address_postal_code_check": null
1979
- },
1980
- "wallet": null,
1981
- "country": "US",
1982
- "funding": "credit",
1983
- "exp_year": 2044,
1984
- "networks": {
1985
- "available": [
1986
- "visa"
1987
- ],
1988
- "preferred": null
1989
- },
1990
- "exp_month": 12,
1991
- "fingerprint": "0aror24meTf8iYfw",
1992
- "generated_from": null,
1993
- "three_d_secure_usage": {
1994
- "supported": true
1995
- }
1996
- },
1997
- "is_default": false
1998
- },
1999
- {
2000
- "id": 81,
2001
- "type": "card",
2002
- "pg_payment_method_id": "pm_1Hc7tMJ1ZTFIN1aDCvMIIBeT",
2003
- "data": {
2004
- "brand": "visa",
2005
- "last4": "4242",
2006
- "checks": {
2007
- "cvc_check": "pass",
2008
- "address_line1_check": null,
2009
- "address_postal_code_check": null
2010
- },
2011
- "wallet": null,
2012
- "country": "US",
2013
- "funding": "credit",
2014
- "exp_year": 2020,
2015
- "networks": {
2016
- "available": [
2017
- "visa"
2018
- ],
2019
- "preferred": null
2020
- },
2021
- "exp_month": 11,
2022
- "fingerprint": "0aror24meTf8iYfw",
2023
- "generated_from": null,
2024
- "three_d_secure_usage": {
2025
- "supported": true
2026
- }
2027
- },
2028
- "is_default": true
2029
- },
2030
- {
2031
- "id": 93,
2032
- "type": "card",
2033
- "pg_payment_method_id": "pm_1HvddjJ1ZTFIN1aDgebQvuyi",
2034
- "data": {
2035
- "brand": "visa",
2036
- "last4": "4242",
2037
- "checks": {
2038
- "cvc_check": "pass",
2039
- "address_line1_check": "pass",
2040
- "address_postal_code_check": "pass"
2041
- },
2042
- "wallet": null,
2043
- "country": "US",
2044
- "funding": "credit",
2045
- "exp_year": 2022,
2046
- "networks": {
2047
- "available": [
2048
- "visa"
2049
- ],
2050
- "preferred": null
2051
- },
2052
- "exp_month": 11,
2053
- "fingerprint": "0aror24meTf8iYfw",
2054
- "generated_from": null,
2055
- "three_d_secure_usage": {
2056
- "supported": true
2057
- }
2058
- },
2059
- "is_default": false
2060
- },
2061
- {
2062
- "id": 98,
2063
- "type": "card",
2064
- "pg_payment_method_id": "pm_1IJDF0J1ZTFIN1aDnJFi4i2v",
2065
- "data": {
2066
- "brand": "visa",
2067
- "last4": "1111",
2068
- "checks": {
2069
- "cvc_check": "pass",
2070
- "address_line1_check": "pass",
2071
- "address_postal_code_check": "pass"
2072
- },
2073
- "wallet": null,
2074
- "country": "US",
2075
- "funding": "credit",
2076
- "exp_year": 2025,
2077
- "networks": {
2078
- "available": [
2079
- "visa"
2080
- ],
2081
- "preferred": null
2082
- },
2083
- "exp_month": 11,
2084
- "fingerprint": "ZtDTGycouUEup4Q4",
2085
- "generated_from": null,
2086
- "three_d_secure_usage": {
2087
- "supported": true
2088
- }
2089
- },
2090
- "is_default": false
2091
- }
2092
- ]
2093
- }
2094
- ```
2095
- </details>
2096
-
2097
-
2098
-
2099
-
2100
-
2101
-
2102
-
2103
-
2104
-
2105
- ---
2106
-
2107
-
2108
- ### deleteSubscriptionPaymentMethod
2109
- Delete Subscription Payment Method
2110
-
2111
-
2112
-
2113
- ```javascript
2114
- // Promise
2115
- const promise = client.payment.deleteSubscriptionPaymentMethod({ uniqueExternalId : value,
2116
- paymentMethodId : value });
2117
-
2118
- // Async/Await
2119
- const data = await client.payment.deleteSubscriptionPaymentMethod({ uniqueExternalId : value,
2120
- paymentMethodId : value });
2121
- ```
2122
-
2123
-
2124
-
2125
-
2126
-
2127
- | Argument | Type | Required | Description |
2128
- | --------- | ----- | -------- | ----------- |
2129
- | uniqueExternalId | string | yes | |
2130
- | paymentMethodId | string | yes | |
2131
-
2132
-
2133
-
2134
- Uses this api to Delete Subscription Payment Method
2135
-
2136
- *Returned Response:*
2137
-
2138
-
2139
-
2140
-
2141
- [DeleteSubscriptionPaymentMethodResponse](#DeleteSubscriptionPaymentMethodResponse)
2142
-
2143
- Delete Subscription Payment Method Response.
2144
-
2145
-
2146
-
2147
-
2148
- <details>
2149
- <summary><i>&nbsp; Example:</i></summary>
2150
-
2151
- ```json
2152
- {
2153
- "success": true
2154
- }
2155
- ```
2156
- </details>
2157
-
2158
-
2159
-
2160
-
2161
-
2162
-
2163
-
2164
-
2165
-
2166
- ---
2167
-
2168
-
2169
- ### getSubscriptionConfig
2170
- List Subscription Config
2171
-
2172
-
2173
-
2174
- ```javascript
2175
- // Promise
2176
- const promise = client.payment.getSubscriptionConfig();
2177
-
2178
- // Async/Await
2179
- const data = await client.payment.getSubscriptionConfig();
2180
- ```
2181
-
2182
-
2183
-
2184
-
2185
-
2186
-
2187
- Get all Subscription Config details
2188
-
2189
- *Returned Response:*
2190
-
2191
-
2192
-
2193
-
2194
- [SubscriptionConfigResponse](#SubscriptionConfigResponse)
2195
-
2196
- List Subscription Config Response
2197
-
2198
-
2199
-
2200
-
2201
- <details>
2202
- <summary><i>&nbsp; Example:</i></summary>
2203
-
2204
- ```json
2205
- {
2206
- "success": true,
2207
- "aggregator": "stripe",
2208
- "config": {
2209
- "public_key": "pk_test_lHBf12TZLa5"
2210
- }
2211
- }
2212
- ```
2213
- </details>
2214
-
2215
-
2216
-
2217
-
2218
-
2219
-
2220
-
2221
-
2222
-
2223
- ---
2224
-
2225
-
2226
- ### saveSubscriptionSetupIntent
2227
- Save Subscription Setup Intent
2228
-
2229
-
2230
-
2231
- ```javascript
2232
- // Promise
2233
- const promise = client.payment.saveSubscriptionSetupIntent({ body : value });
2234
-
2235
- // Async/Await
2236
- const data = await client.payment.saveSubscriptionSetupIntent({ body : value });
2237
- ```
2238
-
2239
-
2240
-
2241
-
2242
-
2243
- | Argument | Type | Required | Description |
2244
- | --------- | ----- | -------- | ----------- |
2245
- | body | [SaveSubscriptionSetupIntentRequest](#SaveSubscriptionSetupIntentRequest) | yes | Request body |
2246
-
2247
-
2248
- Uses this api to Save Subscription Setup Intent
2249
-
2250
- *Returned Response:*
2251
-
2252
-
2253
-
2254
-
2255
- [SaveSubscriptionSetupIntentResponse](#SaveSubscriptionSetupIntentResponse)
2256
-
2257
- Save Subscription Setup Intent Response.
2258
-
2259
-
2260
-
2261
-
2262
- <details>
2263
- <summary><i>&nbsp; Example:</i></summary>
2264
-
2265
- ```json
2266
- {
2267
- "success": true,
2268
- "data": {
2269
- "id": "test",
2270
- "object": "test",
2271
- "client_secret": "test",
2272
- "customer": "test",
2273
- "status": "requires_payment_method"
2274
- }
2275
- }
2276
- ```
2277
- </details>
2278
-
2279
-
2280
-
2281
-
2282
-
2283
-
2284
-
2285
-
2286
-
2287
- ---
2288
-
2289
-
2290
- ### getBankAccountDetailsOpenAPI
2291
- Get bank details
2292
-
2293
-
2294
-
2295
- ```javascript
2296
- // Promise
2297
- const promise = client.application("<APPLICATION_ID>").payment.getBankAccountDetailsOpenAPI({ orderId : value,
2298
- requestHash : value });
2299
-
2300
- // Async/Await
2301
- const data = await client.application("<APPLICATION_ID>").payment.getBankAccountDetailsOpenAPI({ orderId : value,
2302
- requestHash : value });
2303
- ```
2304
-
2305
-
2306
-
2307
-
2308
-
2309
- | Argument | Type | Required | Description |
2310
- | --------- | ----- | -------- | ----------- |
2311
- | orderId | string | yes | |
2312
- | requestHash | string | no | |
2313
-
2314
-
2315
-
2316
- Use this API to get saved bank details for returned/cancelled order using order id.
2317
-
2318
- *Returned Response:*
2319
-
2320
-
2321
-
2322
-
2323
- [RefundAccountResponse](#RefundAccountResponse)
2324
-
2325
- Success
2326
-
2327
-
2328
-
2329
-
2330
- <details>
2331
- <summary><i>&nbsp; Example:</i></summary>
2332
-
2333
- ```json
2334
- {
2335
- "success": true,
2336
- "data": {
2337
- "account_no": "XXXX-XXXX-6682",
2338
- "ifsc_code": "SBIEXAMPLE001",
2339
- "email": "loremipsum@example.com",
2340
- "address": "1773 Monroe Street",
2341
- "bank_name": "SBI",
2342
- "branch_name": "HOUSTON",
2343
- "comment": "Lorem Ipsum",
2344
- "account_holder": "Leslie Rice",
2345
- "mobile": "0987654321"
2346
- }
2347
- }
2348
- ```
2349
- </details>
2350
-
2351
-
2352
-
2353
-
2354
-
2355
-
2356
-
2357
-
2358
-
2359
- ---
2360
-
2361
-
2362
- ### addRefundBankAccountUsingOTP
2363
- Save bank details for cancelled/returned order
2364
-
2365
-
2366
-
2367
- ```javascript
2368
- // Promise
2369
- const promise = client.application("<APPLICATION_ID>").payment.addRefundBankAccountUsingOTP({ body : value });
2370
-
2371
- // Async/Await
2372
- const data = await client.application("<APPLICATION_ID>").payment.addRefundBankAccountUsingOTP({ body : value });
2373
- ```
2374
-
2375
-
2376
-
2377
-
2378
-
2379
- | Argument | Type | Required | Description |
2380
- | --------- | ----- | -------- | ----------- |
2381
- | body | [AddBeneficiaryDetailsOTPRequest](#AddBeneficiaryDetailsOTPRequest) | yes | Request body |
2382
-
2383
-
2384
- Use this API to save bank details for returned/cancelled order to refund amount in his account.
2385
-
2386
- *Returned Response:*
2387
-
2388
-
2389
-
2390
-
2391
- [RefundAccountResponse](#RefundAccountResponse)
2392
-
2393
- Success
2394
-
2395
-
2396
-
2397
-
2398
- <details>
2399
- <summary><i>&nbsp; Example:</i></summary>
2400
-
2401
- ```json
2402
- {
2403
- "success": true,
2404
- "message": "Account successfully created",
2405
- "data": {},
2406
- "is_verified_flag": true
2407
- }
2408
- ```
2409
- </details>
2410
-
2411
-
2412
-
2413
-
2414
-
2415
-
2416
-
2417
-
2418
-
2419
- ---
2420
-
2421
-
2422
- ### verifyIfscCode
2423
- Ifsc Code Verification
2424
-
2425
-
2426
-
2427
- ```javascript
2428
- // Promise
2429
- const promise = client.payment.verifyIfscCode({ ifscCode : value });
2430
-
2431
- // Async/Await
2432
- const data = await client.payment.verifyIfscCode({ ifscCode : value });
2433
- ```
2434
-
2435
-
2436
-
2437
-
2438
-
2439
- | Argument | Type | Required | Description |
2440
- | --------- | ----- | -------- | ----------- |
2441
- | ifscCode | string | no | |
2442
-
2443
-
2444
-
2445
- Get True/False for correct IFSC Code for adding bank details for refund
2446
-
2447
- *Returned Response:*
2448
-
2449
-
2450
-
2451
-
2452
- [IfscCodeResponse](#IfscCodeResponse)
2453
-
2454
- Bank details on correct Ifsc Code
2455
-
2456
-
2457
-
2458
-
2459
- <details>
2460
- <summary><i>&nbsp; Example:</i></summary>
2461
-
2462
- ```json
2463
- {
2464
- "branch_name": "MANPUR",
2465
- "bank_name": "GAYA",
2466
- "BRANCH": "MANPUR",
2467
- "CENTRE": "GAYA",
2468
- "DISTRICT": "GAYA",
2469
- "STATE": "BIHAR",
2470
- "ADDRESS": "POBUNIYADGANJBIHAR",
2471
- "CONTACT": "00",
2472
- "MICR": "816002103",
2473
- "UPI": true,
2474
- "RTGS": true,
2475
- "CITY": "GAYA",
2476
- "NEFT": true,
2477
- "IMPS": true,
2478
- "SWIFT": "",
2479
- "BANK": "State Bank of India",
2480
- "BANKCODE": "SBIN",
2481
- "IFSC": "SBIN0005611",
2482
- "success": true
2483
- }
2484
- ```
2485
- </details>
2486
-
2487
-
2488
-
2489
-
2490
-
2491
-
2492
-
2493
-
2494
-
2495
- ---
2496
-
2497
-
2498
- ### getUserOrderBeneficiaries
2499
- List Order Beneficiary
2500
-
2501
-
2502
-
2503
- ```javascript
2504
- // Promise
2505
- const promise = client.application("<APPLICATION_ID>").payment.getUserOrderBeneficiaries({ orderId : value });
2506
-
2507
- // Async/Await
2508
- const data = await client.application("<APPLICATION_ID>").payment.getUserOrderBeneficiaries({ orderId : value });
2509
- ```
2510
-
2511
-
2512
-
2513
-
2514
-
2515
- | Argument | Type | Required | Description |
2516
- | --------- | ----- | -------- | ----------- |
2517
- | orderId | string | yes | |
2518
-
2519
-
2520
-
2521
- Get all active beneficiary details added by the user for refund
2522
-
2523
- *Returned Response:*
2524
-
2525
-
2526
-
2527
-
2528
- [OrderBeneficiaryResponse](#OrderBeneficiaryResponse)
2529
-
2530
- List Order Beneficiary
2531
-
2532
-
2533
-
2534
-
2535
- <details>
2536
- <summary><i>&nbsp; Example:</i></summary>
2537
-
2538
- ```json
2539
- {
2540
- "beneficiaries": [
2541
- {
2542
- "id": 3695,
2543
- "beneficiary_id": "4c86dd56e634a4c6a8fb51d195bc7b83",
2544
- "bank_name": "State Bank of India",
2545
- "branch_name": "BHOGAT",
2546
- "account_holder": "PRAKASH TEST",
2547
- "account_no": "3566342455454",
2548
- "ifsc_code": "SBIN0014982",
2549
- "mobile": "7819064010",
2550
- "email": "prakashtest@gmail.com",
2551
- "address": "49A, Dabhi seri, jodhpur, kalyanpur",
2552
- "comment": "COD Refund",
2553
- "is_active": null,
2554
- "created_on": "2021-01-22 11:31:02",
2555
- "modified_on": "2021-01-22 11:31:02",
2556
- "display_name": "BANK",
2557
- "transfer_mode": "bank",
2558
- "title": "Bank Account",
2559
- "subtitle": "35663423659",
2560
- "delights_user_name": "shreeniwas_24x7_gmail_com_45978_16624463"
2561
- }
2562
- ]
2563
- }
2564
- ```
2565
- </details>
2566
-
2567
-
2568
-
2569
-
2570
-
2571
-
2572
-
2573
-
2574
-
2575
- ---
2576
-
2577
-
2578
- ### getUserBeneficiaries
2579
- List User Beneficiary
2580
-
2581
-
2582
-
2583
- ```javascript
2584
- // Promise
2585
- const promise = client.application("<APPLICATION_ID>").payment.getUserBeneficiaries({ orderId : value });
2586
-
2587
- // Async/Await
2588
- const data = await client.application("<APPLICATION_ID>").payment.getUserBeneficiaries({ orderId : value });
2589
- ```
2590
-
2591
-
2592
-
2593
-
2594
-
2595
- | Argument | Type | Required | Description |
2596
- | --------- | ----- | -------- | ----------- |
2597
- | orderId | string | yes | |
2598
-
2599
-
2600
-
2601
- Get all active beneficiary details added by the user for refund
2602
-
2603
- *Returned Response:*
2604
-
2605
-
2606
-
2607
-
2608
- [OrderBeneficiaryResponse](#OrderBeneficiaryResponse)
2609
-
2610
- List User Beneficiary
2611
-
2612
-
2613
-
2614
-
2615
- <details>
2616
- <summary><i>&nbsp; Example:</i></summary>
2617
-
2618
- ```json
2619
- {
2620
- "beneficiaries": [
2621
- {
2622
- "id": 221,
2623
- "beneficiary_id": "0f7e44a922df352c05c5f73cb40ba115",
2624
- "bank_name": "State Bank of India",
2625
- "branch_name": "State Bank of India",
2626
- "account_holder": "SHASHI TEST",
2627
- "account_no": "1234567891",
2628
- "ifsc_code": "SBIN0005611",
2629
- "mobile": "9112042174",
2630
- "email": "payment@gofynd.com",
2631
- "address": "204A",
2632
- "comment": "",
2633
- "is_active": null,
2634
- "created_on": "2020-06-29 12:38:39",
2635
- "modified_on": "2020-06-29 12:38:39",
2636
- "display_name": "BANK",
2637
- "transfer_mode": "bank",
2638
- "title": "Bank Account",
2639
- "subtitle": "1234567891",
2640
- "delights_user_name": null
2641
- }
2642
- ],
2643
- "show_beneficiary_details": false
2644
- }
2645
- ```
2646
- </details>
2647
-
2648
-
2649
-
2650
-
2651
-
2652
-
2653
-
2654
-
2655
-
2656
- ---
2657
-
2658
-
2659
- ### confirmPayment
2660
- Confirm payment after successful payment from payment gateway
2661
-
2662
-
2663
-
2664
- ```javascript
2665
- // Promise
2666
- const promise = client.application("<APPLICATION_ID>").payment.confirmPayment({ body : value });
2667
-
2668
- // Async/Await
2669
- const data = await client.application("<APPLICATION_ID>").payment.confirmPayment({ body : value });
2670
- ```
2671
-
2672
-
2673
-
2674
-
2675
-
2676
- | Argument | Type | Required | Description |
2677
- | --------- | ----- | -------- | ----------- |
2678
- | body | [PaymentConfirmationRequest](#PaymentConfirmationRequest) | yes | Request body |
2679
-
2680
-
2681
- Use this API to confirm payment after payment gateway accepted payment.
2682
-
2683
- *Returned Response:*
2684
-
2685
-
2686
-
2687
-
2688
- [PaymentConfirmationResponse](#PaymentConfirmationResponse)
2689
-
2690
- Success. Returns the status of payment. Check the example shown below or refer `PaymentConfirmationResponseSchema` for more details.
2691
-
2692
-
2693
-
2694
-
2695
- <details>
2696
- <summary><i>&nbsp; Example:</i></summary>
2697
-
2698
- ```json
2699
- {
2700
- "success": true,
2701
- "message": "Payment Successful",
2702
- "order_id": "FY60F90AEF01FF43E878"
2703
- }
2704
- ```
2705
- </details>
2706
-
2707
-
2708
-
2709
-
2710
-
2711
-
2712
-
2713
-
2714
-
2715
- ---
2716
-
2717
-
2718
- ### getUserCODlimitRoutes
2719
- Get COD limit for user
2720
-
2721
-
2722
-
2723
- ```javascript
2724
- // Promise
2725
- const promise = client.application("<APPLICATION_ID>").payment.getUserCODlimitRoutes({ merchantUserId : value,
2726
- mobileNo : value });
2727
-
2728
- // Async/Await
2729
- const data = await client.application("<APPLICATION_ID>").payment.getUserCODlimitRoutes({ merchantUserId : value,
2730
- mobileNo : value });
2731
- ```
2732
-
2733
-
2734
-
2735
-
2736
-
2737
- | Argument | Type | Required | Description |
2738
- | --------- | ----- | -------- | ----------- |
2739
- | merchantUserId | string | yes | |
2740
- | mobileNo | string | yes | |
2741
-
2742
-
2743
-
2744
- Use this API to get user cod limit and reamining limit for the payment
2745
-
2746
- *Returned Response:*
2747
-
2748
-
2749
-
2750
-
2751
- [GetUserCODLimitResponse](#GetUserCODLimitResponse)
2752
-
2753
- Success. Returns user cod limit , remaining limit and usage of user for COD. Check the example shown below or refer `GetUserCODLimitResponseSchema` for more details.
2754
-
2755
-
2756
-
2757
-
2758
- <details>
2759
- <summary><i>&nbsp; Example:</i></summary>
2760
-
2761
- ```json
2762
- {
2763
- "success": true,
2764
- "user_cod_data": {
2765
- "is_active": true,
2766
- "user_id": 5,
2767
- "usages": 1000,
2768
- "limit": 10000,
2769
- "remaining_limit": 9000,
2770
- "merchant_user_id": "5e199e6998cfe1776f1385dc"
2771
- }
2772
- }
2773
- ```
2774
- </details>
2775
-
2776
-
2777
-
2778
-
2779
-
2780
-
2781
-
2782
-
2783
-
2784
- ---
2785
-
2786
-
2787
- ### setUserCODlimitRoutes
2788
- Set COD option for user for payment
2789
-
2790
-
2791
-
2792
- ```javascript
2793
- // Promise
2794
- const promise = client.application("<APPLICATION_ID>").payment.setUserCODlimitRoutes({ body : value });
2795
-
2796
- // Async/Await
2797
- const data = await client.application("<APPLICATION_ID>").payment.setUserCODlimitRoutes({ body : value });
2798
- ```
2799
-
2800
-
2801
-
2802
-
2803
-
2804
- | Argument | Type | Required | Description |
2805
- | --------- | ----- | -------- | ----------- |
2806
- | body | [SetCODForUserRequest](#SetCODForUserRequest) | yes | Request body |
2807
-
2808
-
2809
- Use this API to set cod option as true or false for the payment
2810
-
2811
- *Returned Response:*
2812
-
2813
-
2814
-
2815
-
2816
- [SetCODOptionResponse](#SetCODOptionResponse)
2817
-
2818
- Success. Returns true/false for user cod option for payment. Check the example shown below or refer `GetUserCODLimitResponseSchema` for more details.
2819
-
2820
-
2821
-
2822
-
2823
- <details>
2824
- <summary><i>&nbsp; Example:</i></summary>
2825
-
2826
- ```json
2827
- {
2828
- "success": true,
2829
- "message": "COD option for user {} is set to {}"
2830
- }
2831
- ```
2832
- </details>
2833
-
2834
-
2835
-
2836
-
2837
-
2838
-
2839
-
2840
-
2841
-
2842
- ---
2843
-
2844
-
2845
-
2846
- ### Schemas
2847
-
2848
-
2849
-
2850
- #### [PaymentGatewayConfigResponse](#PaymentGatewayConfigResponse)
2851
-
2852
- | Properties | Type | Nullable | Description |
2853
- | ---------- | ---- | -------- | ----------- |
2854
- | created | boolean | yes | Response is created or not |
2855
- | excluded_fields | [string] | yes | List of all excluded options with their Details. |
2856
- | success | boolean | yes | Response is successful or not |
2857
- | aggregators | [string] | no | List of all speceific Payment options with their Details. |
2858
- | display_fields | [string] | yes | List of all included options with their Details. |
2859
- | app_id | string | yes | Application Id to which Payment config Mapped |
2860
-
2861
- ---
2862
-
2863
-
2864
-
2865
-
2866
- #### [ErrorCodeDescription](#ErrorCodeDescription)
2867
-
2868
- | Properties | Type | Nullable | Description |
2869
- | ---------- | ---- | -------- | ----------- |
2870
- | code | string | yes | Error descrption code. |
2871
- | description | string | yes | Error human understandable description. |
2872
- | success | boolean | yes | Response is successful or not |
2873
-
2874
- ---
2875
-
2876
-
2877
-
2878
-
2879
- #### [PaymentGatewayConfig](#PaymentGatewayConfig)
2880
-
2881
- | Properties | Type | Nullable | Description |
2882
- | ---------- | ---- | -------- | ----------- |
2883
- | config_type | string | yes | Config Type of the aggregator |
2884
- | merchant_salt | string | yes | Merchant key of the payment aggregator |
2885
- | secret | string | yes | Secret Key of the payment aggregator |
2886
- | is_active | boolean | no | Enable/ Disable Flag |
2887
- | key | string | yes | Api key of the payment aggregator |
2888
-
2889
- ---
2890
-
2891
-
2892
-
2893
-
2894
- #### [PaymentGatewayConfigRequest](#PaymentGatewayConfigRequest)
2895
-
2896
- | Properties | Type | Nullable | Description |
2897
- | ---------- | ---- | -------- | ----------- |
2898
- | aggregator_name | [PaymentGatewayConfig](#PaymentGatewayConfig) | no | |
2899
- | is_active | boolean | no | Enable/ Disable Flag |
2900
- | app_id | string | yes | Application Id to which Payment config Mapped |
2901
-
2902
- ---
2903
-
2904
-
2905
-
2906
-
2907
- #### [PaymentGatewayToBeReviewed](#PaymentGatewayToBeReviewed)
2908
-
2909
- | Properties | Type | Nullable | Description |
2910
- | ---------- | ---- | -------- | ----------- |
2911
- | aggregator | [string] | yes | List of added payment gateway |
2912
- | success | boolean | yes | Response is successful or not |
2913
-
2914
- ---
2915
-
2916
-
2917
-
2918
-
2919
- #### [ErrorCodeAndDescription](#ErrorCodeAndDescription)
2920
-
2921
- | Properties | Type | Nullable | Description |
2922
- | ---------- | ---- | -------- | ----------- |
2923
- | code | string | yes | Error descrption code. |
2924
- | description | string | yes | Error human understandable description. |
2925
-
2926
- ---
2927
-
2928
-
2929
-
2930
-
2931
- #### [HttpErrorCodeAndResponse](#HttpErrorCodeAndResponse)
2932
-
2933
- | Properties | Type | Nullable | Description |
2934
- | ---------- | ---- | -------- | ----------- |
2935
- | error | [ErrorCodeAndDescription](#ErrorCodeAndDescription) | yes | |
2936
- | success | boolean | yes | Response is successful or not |
2937
-
2938
- ---
2939
-
2940
-
2941
-
2942
-
2943
- #### [PaymentModeLogo](#PaymentModeLogo)
2944
-
2945
- | Properties | Type | Nullable | Description |
2946
- | ---------- | ---- | -------- | ----------- |
2947
- | large | string | yes | large |
2948
- | small | string | yes | smalll |
2949
-
2950
- ---
2951
-
2952
-
2953
-
2954
-
2955
- #### [IntentApp](#IntentApp)
2956
-
2957
- | Properties | Type | Nullable | Description |
2958
- | ---------- | ---- | -------- | ----------- |
2959
- | code | string | no | code |
2960
- | package_name | string | no | package_name |
2961
- | logos | [PaymentModeLogo](#PaymentModeLogo) | no | logos |
2962
- | display_name | string | no | display_name |
2963
-
2964
- ---
2965
-
2966
-
2967
-
2968
-
2969
- #### [IntentAppErrorList](#IntentAppErrorList)
2970
-
2971
- | Properties | Type | Nullable | Description |
2972
- | ---------- | ---- | -------- | ----------- |
2973
- | package_name | string | no | package_name |
2974
- | code | string | no | code |
2975
-
2976
- ---
2977
-
2978
-
2979
-
2980
-
2981
- #### [PaymentModeList](#PaymentModeList)
2982
-
2983
- | Properties | Type | Nullable | Description |
2984
- | ---------- | ---- | -------- | ----------- |
2985
- | card_brand_image | string | no | card_brand_image |
2986
- | aggregator_name | string | yes | aggregator_name |
2987
- | remaining_limit | number | no | Remaining limit |
2988
- | logo_url | [PaymentModeLogo](#PaymentModeLogo) | no | Logo |
2989
- | retry_count | number | no | retry_count |
2990
- | merchant_code | string | no | merchant code |
2991
- | card_type | string | no | card_type |
2992
- | display_name | string | no | display name |
2993
- | card_issuer | string | no | card_issuer |
2994
- | cod_limit | number | no | cod limit |
2995
- | expired | boolean | no | expired |
2996
- | intent_app | [[IntentApp](#IntentApp)] | no | intent_app |
2997
- | name | string | no | name |
2998
- | card_fingerprint | string | no | card_fingerprint |
2999
- | intent_flow | boolean | no | intent_flow |
3000
- | fynd_vpa | string | no | fynd_vpa |
3001
- | nickname | string | no | nickname |
3002
- | display_priority | number | no | Dispaly Priority |
3003
- | card_number | string | no | card_number |
3004
- | card_id | string | no | card_id |
3005
- | intent_app_error_dict_list | [[IntentAppErrorList](#IntentAppErrorList)] | no | intent_app_error_dict_list |
3006
- | card_name | string | no | card_name |
3007
- | cod_limit_per_order | number | no | Cod limit per order |
3008
- | code | string | no | code |
3009
- | card_reference | string | no | card_reference |
3010
- | compliant_with_tokenisation_guidelines | boolean | no | If card is tokenised or not |
3011
- | card_brand | string | no | card_brand |
3012
- | exp_year | number | no | exp_year |
3013
- | exp_month | number | no | exp_month |
3014
- | card_token | string | no | card_token |
3015
- | intent_app_error_list | [string] | no | intent_app_error_list |
3016
- | card_isin | string | no | card_isin |
3017
- | timeout | number | no | timeout |
3018
-
3019
- ---
3020
-
3021
-
3022
-
3023
-
3024
- #### [RootPaymentMode](#RootPaymentMode)
3025
-
3026
- | Properties | Type | Nullable | Description |
3027
- | ---------- | ---- | -------- | ----------- |
3028
- | aggregator_name | string | no | Dispaly Priority |
3029
- | list | [[PaymentModeList](#PaymentModeList)] | no | Payment mode |
3030
- | anonymous_enable | boolean | no | Annonymous card flag |
3031
- | save_card | boolean | no | Card save or not |
3032
- | add_card_enabled | boolean | no | Annonymous card flag |
3033
- | name | string | yes | Payment mode name |
3034
- | display_priority | number | yes | Dispaly Priority |
3035
- | display_name | string | yes | Payment mode display name |
3036
- | is_pay_by_card_pl | boolean | no | This flag will be true in case of Payment link payment through card |
3037
-
3038
- ---
3039
-
3040
-
3041
-
3042
-
3043
- #### [PaymentOptions](#PaymentOptions)
3044
-
3045
- | Properties | Type | Nullable | Description |
3046
- | ---------- | ---- | -------- | ----------- |
3047
- | payment_option | [[RootPaymentMode](#RootPaymentMode)] | yes | Payment options |
3048
-
3049
- ---
3050
-
3051
-
3052
-
3053
-
3054
- #### [PaymentOptionsResponse](#PaymentOptionsResponse)
3055
-
3056
- | Properties | Type | Nullable | Description |
3057
- | ---------- | ---- | -------- | ----------- |
3058
- | success | boolean | yes | Response is successful or not |
3059
- | payment_options | [PaymentOptions](#PaymentOptions) | yes | Payment options |
3060
-
3061
- ---
3062
-
3063
-
3064
-
3065
-
3066
- #### [PayoutsResponse](#PayoutsResponse)
3067
-
3068
- | Properties | Type | Nullable | Description |
3069
- | ---------- | ---- | -------- | ----------- |
3070
- | is_default | boolean | yes | default or not |
3071
- | unique_transfer_no | string | yes | display priority of the payment mode |
3072
- | transfer_type | string | yes | transafer type |
3073
- | is_active | boolean | yes | Enable/DIsable Flag Payout |
3074
- | payouts_aggregators | [string] | yes | payout aggregator object |
3075
- | more_attributes | string | yes | bank details object |
3076
- | customers | string | yes | customers details object |
3077
-
3078
- ---
3079
-
3080
-
3081
-
3082
-
3083
- #### [PayoutBankDetails](#PayoutBankDetails)
3084
-
3085
- | Properties | Type | Nullable | Description |
3086
- | ---------- | ---- | -------- | ----------- |
3087
- | state | string | no | |
3088
- | pincode | number | no | |
3089
- | branch_name | string | no | |
3090
- | account_holder | string | no | |
3091
- | city | string | no | |
3092
- | bank_name | string | no | |
3093
- | ifsc_code | string | yes | |
3094
- | country | string | no | |
3095
- | account_no | string | no | |
3096
- | account_type | string | yes | |
3097
-
3098
- ---
3099
-
3100
-
3101
-
3102
-
3103
- #### [PayoutRequest](#PayoutRequest)
3104
-
3105
- | Properties | Type | Nullable | Description |
3106
- | ---------- | ---- | -------- | ----------- |
3107
- | bank_details | [PayoutBankDetails](#PayoutBankDetails) | yes | payout bank details object |
3108
- | unique_external_id | string | yes | Unique Id of Payout |
3109
- | transfer_type | string | yes | transafer type |
3110
- | aggregator | string | yes | Aggregator Name |
3111
- | users | string | yes | payout users object |
3112
- | is_active | boolean | yes | Enable/Disable Flag Payout |
3113
-
3114
- ---
3115
-
3116
-
3117
-
3118
-
3119
- #### [PayoutResponse](#PayoutResponse)
3120
-
3121
- | Properties | Type | Nullable | Description |
3122
- | ---------- | ---- | -------- | ----------- |
3123
- | bank_details | string | yes | payout bank_details object |
3124
- | payouts | string | yes | payout object |
3125
- | created | boolean | yes | created flag |
3126
- | unique_transfer_no | string | yes | unique transfer no |
3127
- | transfer_type | string | yes | transfer type |
3128
- | success | boolean | yes | Response is successful or not |
3129
- | users | string | yes | users details object |
3130
- | aggregator | string | yes | Aggregator Name |
3131
- | is_active | boolean | yes | Enable/DIsable Flag Payout |
3132
- | payment_status | string | yes | status of payment |
3133
-
3134
- ---
3135
-
3136
-
3137
-
3138
-
3139
- #### [UpdatePayoutResponse](#UpdatePayoutResponse)
3140
-
3141
- | Properties | Type | Nullable | Description |
3142
- | ---------- | ---- | -------- | ----------- |
3143
- | is_default | boolean | yes | Enable/Disable Default Payout |
3144
- | is_active | boolean | yes | Enable/DIsable Flag Payout |
3145
- | success | boolean | yes | Response is successful or not |
3146
-
3147
- ---
3148
-
3149
-
3150
-
3151
-
3152
- #### [UpdatePayoutRequest](#UpdatePayoutRequest)
3153
-
3154
- | Properties | Type | Nullable | Description |
3155
- | ---------- | ---- | -------- | ----------- |
3156
- | is_default | boolean | yes | Enable/Disable Default Payout |
3157
- | is_active | boolean | yes | Enable/Disable Flag Payout |
3158
- | unique_external_id | string | yes | Unique Id of Payout |
3159
-
3160
- ---
3161
-
3162
-
3163
-
3164
-
3165
- #### [DeletePayoutResponse](#DeletePayoutResponse)
3166
-
3167
- | Properties | Type | Nullable | Description |
3168
- | ---------- | ---- | -------- | ----------- |
3169
- | success | boolean | yes | Response is successful or not |
3170
-
3171
- ---
3172
-
3173
-
3174
-
3175
-
3176
- #### [SubscriptionPaymentMethodResponse](#SubscriptionPaymentMethodResponse)
3177
-
3178
- | Properties | Type | Nullable | Description |
3179
- | ---------- | ---- | -------- | ----------- |
3180
- | data | [string] | yes | Subscription Payment Method Object |
3181
- | success | boolean | yes | Response is successful or not |
3182
-
3183
- ---
3184
-
3185
-
3186
-
3187
-
3188
- #### [DeleteSubscriptionPaymentMethodResponse](#DeleteSubscriptionPaymentMethodResponse)
3189
-
3190
- | Properties | Type | Nullable | Description |
3191
- | ---------- | ---- | -------- | ----------- |
3192
- | success | boolean | yes | Success or failure. |
3193
-
3194
- ---
3195
-
3196
-
3197
-
3198
-
3199
- #### [SubscriptionConfigResponse](#SubscriptionConfigResponse)
3200
-
3201
- | Properties | Type | Nullable | Description |
3202
- | ---------- | ---- | -------- | ----------- |
3203
- | config | string | yes | Aggregator Config |
3204
- | aggregator | string | yes | Aggregator Name |
3205
- | success | boolean | yes | Response is successful or not |
3206
-
3207
- ---
3208
-
3209
-
3210
-
3211
-
3212
- #### [SaveSubscriptionSetupIntentRequest](#SaveSubscriptionSetupIntentRequest)
3213
-
3214
- | Properties | Type | Nullable | Description |
3215
- | ---------- | ---- | -------- | ----------- |
3216
- | unique_external_id | string | yes | Unique id i.e company:id |
3217
-
3218
- ---
3219
-
3220
-
3221
-
3222
-
3223
- #### [SaveSubscriptionSetupIntentResponse](#SaveSubscriptionSetupIntentResponse)
3224
-
3225
- | Properties | Type | Nullable | Description |
3226
- | ---------- | ---- | -------- | ----------- |
3227
- | data | string | yes | Subscription Payment Method Object |
3228
- | success | boolean | yes | Response is successful or not |
3229
-
3230
- ---
3231
-
3232
-
3233
-
3234
-
3235
- #### [RefundAccountResponse](#RefundAccountResponse)
3236
-
3237
- | Properties | Type | Nullable | Description |
3238
- | ---------- | ---- | -------- | ----------- |
3239
- | is_verified_flag | boolean | no | |
3240
- | message | string | yes | Response message |
3241
- | data | string | no | Refund account data. |
3242
- | success | boolean | yes | Success or failure flag. |
3243
-
3244
- ---
3245
-
3246
-
3247
-
3248
-
3249
- #### [NotFoundResourceError](#NotFoundResourceError)
3250
-
3251
- | Properties | Type | Nullable | Description |
3252
- | ---------- | ---- | -------- | ----------- |
3253
- | code | string | yes | Bad Request Data |
3254
- | description | string | yes | Not Found |
3255
- | success | boolean | yes | Response is successful or not |
3256
-
3257
- ---
3258
-
3259
-
3260
-
3261
-
3262
- #### [BankDetailsForOTP](#BankDetailsForOTP)
3263
-
3264
- | Properties | Type | Nullable | Description |
3265
- | ---------- | ---- | -------- | ----------- |
3266
- | branch_name | string | yes | |
3267
- | account_holder | string | yes | |
3268
- | bank_name | string | yes | |
3269
- | ifsc_code | string | yes | |
3270
- | account_no | string | yes | |
3271
-
3272
- ---
3273
-
3274
-
3275
-
3276
-
3277
- #### [AddBeneficiaryDetailsOTPRequest](#AddBeneficiaryDetailsOTPRequest)
3278
-
3279
- | Properties | Type | Nullable | Description |
3280
- | ---------- | ---- | -------- | ----------- |
3281
- | details | [BankDetailsForOTP](#BankDetailsForOTP) | yes | |
3282
- | order_id | string | yes | |
3283
-
3284
- ---
3285
-
3286
-
3287
-
3288
-
3289
- #### [IfscCodeResponse](#IfscCodeResponse)
3290
-
3291
- | Properties | Type | Nullable | Description |
3292
- | ---------- | ---- | -------- | ----------- |
3293
- | success | boolean | no | Response is successful or not |
3294
- | branch_name | string | yes | Branch Name Of Account |
3295
- | bank_name | string | yes | Bank Name Of Account |
3296
-
3297
- ---
3298
-
3299
-
3300
-
3301
-
3302
- #### [OrderBeneficiaryDetails](#OrderBeneficiaryDetails)
3303
-
3304
- | Properties | Type | Nullable | Description |
3305
- | ---------- | ---- | -------- | ----------- |
3306
- | transfer_mode | string | yes | Transfer Mode Of Account |
3307
- | address | string | yes | Address of User |
3308
- | display_name | string | yes | Display Name Of Account |
3309
- | delights_user_name | string | no | User Id Who filled the Beneficiary |
3310
- | created_on | string | yes | Creation Date of Beneficiary |
3311
- | email | string | yes | EMail of User |
3312
- | comment | string | no | Remarks |
3313
- | branch_name | string | no | Branch Name Of Account |
3314
- | account_no | string | yes | Account Number |
3315
- | subtitle | string | yes | SHort Title Of Account |
3316
- | modified_on | string | yes | MOdification Date of Beneficiary |
3317
- | bank_name | string | yes | Bank Name Of Account |
3318
- | mobile | string | no | MObile no of User |
3319
- | account_holder | string | yes | Account Holder Name |
3320
- | beneficiary_id | string | yes | Benenficiary Id |
3321
- | id | number | yes | |
3322
- | is_active | boolean | yes | Boolean Flag whether Beneficiary set or not |
3323
- | ifsc_code | string | yes | Ifsc Code Of Account |
3324
- | title | string | yes | Title Of Account |
3325
-
3326
- ---
3327
-
3328
-
3329
-
3330
-
3331
- #### [OrderBeneficiaryResponse](#OrderBeneficiaryResponse)
3332
-
3333
- | Properties | Type | Nullable | Description |
3334
- | ---------- | ---- | -------- | ----------- |
3335
- | show_beneficiary_details | boolean | no | Show beneficiary details or not. |
3336
- | beneficiaries | [[OrderBeneficiaryDetails](#OrderBeneficiaryDetails)] | no | All Beneficiaries Of An Order |
3337
-
3338
- ---
3339
-
3340
-
3341
-
3342
-
3343
- #### [MultiTenderPaymentMeta](#MultiTenderPaymentMeta)
3344
-
3345
- | Properties | Type | Nullable | Description |
3346
- | ---------- | ---- | -------- | ----------- |
3347
- | extra_meta | string | no | |
3348
- | payment_gateway | string | no | |
3349
- | current_status | string | no | |
3350
- | payment_id | string | no | |
3351
- | order_id | string | no | |
3352
-
3353
- ---
3354
-
3355
-
3356
-
3357
-
3358
- #### [MultiTenderPaymentMethod](#MultiTenderPaymentMethod)
3359
-
3360
- | Properties | Type | Nullable | Description |
3361
- | ---------- | ---- | -------- | ----------- |
3362
- | name | string | no | Payment mode name |
3363
- | amount | number | yes | Payment amount |
3364
- | mode | string | yes | |
3365
- | meta | [MultiTenderPaymentMeta](#MultiTenderPaymentMeta) | no | |
3366
-
3367
- ---
3368
-
3369
-
3370
-
3371
-
3372
- #### [PaymentConfirmationRequest](#PaymentConfirmationRequest)
3373
-
3374
- | Properties | Type | Nullable | Description |
3375
- | ---------- | ---- | -------- | ----------- |
3376
- | payment_methods | [[MultiTenderPaymentMethod](#MultiTenderPaymentMethod)] | yes | |
3377
- | order_id | string | yes | Unique order id |
3378
-
3379
- ---
3380
-
3381
-
3382
-
3383
-
3384
- #### [PaymentConfirmationResponse](#PaymentConfirmationResponse)
3385
-
3386
- | Properties | Type | Nullable | Description |
3387
- | ---------- | ---- | -------- | ----------- |
3388
- | message | string | yes | Message |
3389
- | success | boolean | yes | Payment confirmation updated or not. |
3390
- | order_id | string | yes | Unique order id |
3391
-
3392
- ---
3393
-
3394
-
3395
-
3396
-
3397
- #### [CODdata](#CODdata)
3398
-
3399
- | Properties | Type | Nullable | Description |
3400
- | ---------- | ---- | -------- | ----------- |
3401
- | remaining_limit | number | yes | Remaining Limit for COD of User |
3402
- | user_id | string | yes | Payment mode name |
3403
- | usages | number | yes | Used COD limit from the user Limit |
3404
- | is_active | boolean | yes | COD option is active or not |
3405
- | limit | number | yes | Total Limit of user |
3406
-
3407
- ---
3408
-
3409
-
3410
-
3411
-
3412
- #### [GetUserCODLimitResponse](#GetUserCODLimitResponse)
3413
-
3414
- | Properties | Type | Nullable | Description |
3415
- | ---------- | ---- | -------- | ----------- |
3416
- | success | boolean | yes | Response is successful or not |
3417
- | user_cod_data | [CODdata](#CODdata) | yes | User COD Data |
3418
-
3419
- ---
3420
-
3421
-
3422
-
3423
-
3424
- #### [SetCODForUserRequest](#SetCODForUserRequest)
3425
-
3426
- | Properties | Type | Nullable | Description |
3427
- | ---------- | ---- | -------- | ----------- |
3428
- | merchant_user_id | string | yes | Merchant User id |
3429
- | is_active | boolean | yes | either true or false |
3430
- | mobileno | string | yes | Mobile No. of User |
3431
-
3432
- ---
3433
-
3434
-
3435
-
3436
-
3437
- #### [SetCODOptionResponse](#SetCODOptionResponse)
3438
-
3439
- | Properties | Type | Nullable | Description |
3440
- | ---------- | ---- | -------- | ----------- |
3441
- | message | string | yes | Message |
3442
- | success | boolean | yes | Response is successful or not |
3443
-
3444
- ---
3445
-
3446
-
3447
-
3448
-