@gofynd/fdk-client-javascript 0.1.35 → 0.1.36

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 (109) hide show
  1. package/README.md +1 -1
  2. package/documentation/application/CART.md +256 -239
  3. package/documentation/application/CATALOG.md +413 -409
  4. package/documentation/application/COMMON.md +4 -0
  5. package/documentation/application/COMMUNICATION.md +4 -0
  6. package/documentation/application/CONFIGURATION.md +4 -0
  7. package/documentation/application/CONTENT.md +7 -20
  8. package/documentation/application/FILESTORAGE.md +85 -0
  9. package/documentation/application/LEAD.md +6 -2
  10. package/documentation/application/LOGISTIC.md +4 -0
  11. package/documentation/application/ORDER.md +307 -303
  12. package/documentation/application/PAYMENT.md +445 -259
  13. package/documentation/application/POSCART.md +317 -300
  14. package/documentation/application/REWARDS.md +153 -160
  15. package/documentation/application/SHARE.md +4 -0
  16. package/documentation/application/THEME.md +4 -0
  17. package/documentation/application/USER.md +4 -0
  18. package/documentation/platform/ANALYTICS.md +4 -0
  19. package/documentation/platform/AUDITTRAIL.md +4 -0
  20. package/documentation/platform/BILLING.md +4 -0
  21. package/documentation/platform/CART.md +480 -463
  22. package/documentation/platform/CATALOG.md +3895 -2942
  23. package/documentation/platform/COMMON.md +4 -0
  24. package/documentation/platform/COMMUNICATION.md +4 -0
  25. package/documentation/platform/COMPANYPROFILE.md +224 -193
  26. package/documentation/platform/CONFIGURATION.md +4 -0
  27. package/documentation/platform/CONTENT.md +8 -21
  28. package/documentation/platform/DISCOUNT.md +4 -0
  29. package/documentation/platform/FILESTORAGE.md +85 -0
  30. package/documentation/platform/INVENTORY.md +4 -0
  31. package/documentation/platform/LEAD.md +6 -2
  32. package/documentation/platform/ORDER.md +6298 -1448
  33. package/documentation/platform/PARTNER.md +12 -8
  34. package/documentation/platform/PAYMENT.md +107 -103
  35. package/documentation/platform/README.md +2 -2
  36. package/documentation/platform/REWARDS.md +219 -152
  37. package/documentation/platform/SHARE.md +4 -0
  38. package/documentation/platform/THEME.md +4 -0
  39. package/documentation/platform/USER.md +4 -0
  40. package/documentation/platform/WEBHOOK.md +4 -0
  41. package/documentation/public/CONFIGURATION.md +4 -0
  42. package/documentation/public/INVENTORY.md +4 -0
  43. package/documentation/public/WEBHOOK.md +4 -0
  44. package/package.json +1 -1
  45. package/sdk/application/ApplicationModels.d.ts +77 -73
  46. package/sdk/application/ApplicationModels.js +1751 -1725
  47. package/sdk/application/client/CartApplicationClient.d.ts +36 -36
  48. package/sdk/application/client/CatalogApplicationClient.d.ts +39 -39
  49. package/sdk/application/client/CatalogApplicationClient.js +16 -16
  50. package/sdk/application/client/CommonApplicationClient.d.ts +2 -2
  51. package/sdk/application/client/CommunicationApplicationClient.d.ts +5 -5
  52. package/sdk/application/client/ConfigurationApplicationClient.d.ts +17 -17
  53. package/sdk/application/client/ContentApplicationClient.d.ts +19 -19
  54. package/sdk/application/client/FileStorageApplicationClient.d.ts +14 -6
  55. package/sdk/application/client/FileStorageApplicationClient.js +2 -0
  56. package/sdk/application/client/LeadApplicationClient.d.ts +10 -10
  57. package/sdk/application/client/LogisticApplicationClient.d.ts +5 -5
  58. package/sdk/application/client/OrderApplicationClient.d.ts +15 -15
  59. package/sdk/application/client/OrderApplicationClient.js +1 -1
  60. package/sdk/application/client/PaymentApplicationClient.d.ts +79 -57
  61. package/sdk/application/client/PaymentApplicationClient.js +66 -0
  62. package/sdk/application/client/PosCartApplicationClient.d.ts +38 -38
  63. package/sdk/application/client/RewardsApplicationClient.d.ts +34 -34
  64. package/sdk/application/client/RewardsApplicationClient.js +77 -77
  65. package/sdk/application/client/ShareApplicationClient.d.ts +8 -8
  66. package/sdk/application/client/ThemeApplicationClient.d.ts +4 -4
  67. package/sdk/application/client/UserApplicationClient.d.ts +63 -63
  68. package/sdk/application/models/CatalogValidator.d.ts +1 -1
  69. package/sdk/application/models/CatalogValidator.js +2 -2
  70. package/sdk/application/models/PaymentValidator.d.ts +2 -0
  71. package/sdk/application/models/PaymentValidator.js +12 -0
  72. package/sdk/application/models/RewardsValidator.d.ts +3 -3
  73. package/sdk/application/models/RewardsValidator.js +12 -12
  74. package/sdk/common/AxiosHelper.js +1 -1
  75. package/sdk/common/Constant.d.ts +9 -0
  76. package/sdk/common/Constant.js +11 -0
  77. package/sdk/platform/PlatformApplicationClient.d.ts +8600 -7286
  78. package/sdk/platform/PlatformApplicationClient.js +4338 -3678
  79. package/sdk/platform/PlatformApplicationModels.d.ts +21 -26
  80. package/sdk/platform/PlatformApplicationModels.js +5561 -4301
  81. package/sdk/platform/PlatformClient.d.ts +3448 -2801
  82. package/sdk/platform/PlatformClient.js +3903 -3108
  83. package/sdk/platform/PlatformModels.d.ts +352 -278
  84. package/sdk/platform/PlatformModels.js +5230 -3942
  85. package/sdk/platform/client/AnalyticsPlatformClient.d.ts +5 -5
  86. package/sdk/platform/client/AuditTrailPlatformClient.d.ts +1 -1
  87. package/sdk/platform/client/BillingPlatformClient.d.ts +4 -4
  88. package/sdk/platform/client/CatalogPlatformClient.d.ts +209 -150
  89. package/sdk/platform/client/CatalogPlatformClient.js +441 -294
  90. package/sdk/platform/client/CompanyProfilePlatformClient.d.ts +8 -8
  91. package/sdk/platform/client/ConfigurationPlatformClient.d.ts +9 -9
  92. package/sdk/platform/client/DiscountPlatformClient.d.ts +4 -4
  93. package/sdk/platform/client/FileStoragePlatformClient.d.ts +20 -4
  94. package/sdk/platform/client/FileStoragePlatformClient.js +49 -0
  95. package/sdk/platform/client/InventoryPlatformClient.d.ts +3 -3
  96. package/sdk/platform/client/LeadPlatformClient.d.ts +6 -6
  97. package/sdk/platform/client/OrderPlatformClient.d.ts +557 -131
  98. package/sdk/platform/client/OrderPlatformClient.js +1551 -247
  99. package/sdk/platform/client/PaymentPlatformClient.d.ts +4 -4
  100. package/sdk/platform/client/WebhookPlatformClient.d.ts +2 -2
  101. package/sdk/platform/models/CatalogValidator.d.ts +24 -21
  102. package/sdk/platform/models/CatalogValidator.js +103 -72
  103. package/sdk/platform/models/OrderValidator.d.ts +43 -11
  104. package/sdk/platform/models/OrderValidator.js +312 -51
  105. package/sdk/public/client/ConfigurationPublicClient.d.ts +2 -2
  106. package/sdk/public/client/InventoryPublicClient.d.ts +7 -7
  107. package/sdk/public/client/WebhookPublicClient.d.ts +3 -3
  108. package/tests/common/schema/action-url.json +15 -0
  109. package/tests/common/schema/url-action.json +16 -0
@@ -2,10 +2,12 @@
2
2
 
3
3
 
4
4
 
5
+
5
6
  ##### [Back to Application docs](./README.md)
6
7
 
7
8
  ## Payment Methods
8
9
  Collect payment through many payment gateway i.e Stripe, Razorpay, Juspay etc.into Fynd or Self account
10
+
9
11
  * [getAggregatorsConfig](#getaggregatorsconfig)
10
12
  * [attachCardToCustomer](#attachcardtocustomer)
11
13
  * [getActiveCardAggregator](#getactivecardaggregator)
@@ -20,6 +22,8 @@ Collect payment through many payment gateway i.e Stripe, Razorpay, Juspay etc.in
20
22
  * [getRupifiBannerDetails](#getrupifibannerdetails)
21
23
  * [getEpaylaterBannerDetails](#getepaylaterbannerdetails)
22
24
  * [resendOrCancelPayment](#resendorcancelpayment)
25
+ * [renderHTML](#renderhtml)
26
+ * [validateVPA](#validatevpa)
23
27
  * [getActiveRefundTransferModes](#getactiverefundtransfermodes)
24
28
  * [enableOrDisableRefundTransferMode](#enableordisablerefundtransfermode)
25
29
  * [getUserBeneficiariesDetail](#getuserbeneficiariesdetail)
@@ -49,6 +53,8 @@ Collect payment through many payment gateway i.e Stripe, Razorpay, Juspay etc.in
49
53
  ## Methods with example and description
50
54
 
51
55
 
56
+
57
+
52
58
  ### getAggregatorsConfig
53
59
  Get payment gateway keys
54
60
 
@@ -1781,6 +1787,126 @@ Success. Returns the status of payment. Check the example shown below or refer `
1781
1787
 
1782
1788
 
1783
1789
 
1790
+ ---
1791
+
1792
+
1793
+ ### renderHTML
1794
+ Convert base64 string to HTML form
1795
+
1796
+
1797
+
1798
+ ```javascript
1799
+ // Promise
1800
+ const promise = payment.renderHTML({ body : value });
1801
+
1802
+ // Async/Await
1803
+ const data = await payment.renderHTML({ body : value });
1804
+ ```
1805
+
1806
+
1807
+
1808
+
1809
+
1810
+ | Argument | Type | Required | Description |
1811
+ | --------- | ----- | -------- | ----------- |
1812
+ | body | [renderHTMLRequest](#renderHTMLRequest) | yes | Request body |
1813
+
1814
+
1815
+ Use this API to decode base64 html form to plain HTML string.
1816
+
1817
+ *Returned Response:*
1818
+
1819
+
1820
+
1821
+
1822
+ [renderHTMLResponse](#renderHTMLResponse)
1823
+
1824
+ Success and return HTML decoded text
1825
+
1826
+
1827
+
1828
+
1829
+ <details>
1830
+ <summary><i>&nbsp; Example:</i></summary>
1831
+
1832
+ ```json
1833
+ {
1834
+ "html": "<html><body>Your HTML text</body></html>"
1835
+ }
1836
+ ```
1837
+ </details>
1838
+
1839
+
1840
+
1841
+
1842
+
1843
+
1844
+
1845
+
1846
+
1847
+ ---
1848
+
1849
+
1850
+ ### validateVPA
1851
+ API to Validate UPI ID
1852
+
1853
+
1854
+
1855
+ ```javascript
1856
+ // Promise
1857
+ const promise = payment.validateVPA({ body : value });
1858
+
1859
+ // Async/Await
1860
+ const data = await payment.validateVPA({ body : value });
1861
+ ```
1862
+
1863
+
1864
+
1865
+
1866
+
1867
+ | Argument | Type | Required | Description |
1868
+ | --------- | ----- | -------- | ----------- |
1869
+ | body | [ValidateVPARequest](#ValidateVPARequest) | yes | Request body |
1870
+
1871
+
1872
+ API to Validate UPI ID
1873
+
1874
+ *Returned Response:*
1875
+
1876
+
1877
+
1878
+
1879
+ [ValidateVPAResponse](#ValidateVPAResponse)
1880
+
1881
+ Success. Returns the status of payment. Check the example shown below or refer `ValidateVPAResponseSchema` for more details.
1882
+
1883
+
1884
+
1885
+
1886
+ <details>
1887
+ <summary><i>&nbsp; Example:</i></summary>
1888
+
1889
+ ```json
1890
+ {
1891
+ "success": true,
1892
+ "data": {
1893
+ "upi_vpa": "success@razorpay",
1894
+ "status": "VALID",
1895
+ "is_valid": true,
1896
+ "customer_name": "Verified"
1897
+ }
1898
+ }
1899
+ ```
1900
+ </details>
1901
+
1902
+
1903
+
1904
+
1905
+
1906
+
1907
+
1908
+
1909
+
1784
1910
  ---
1785
1911
 
1786
1912
 
@@ -3698,16 +3824,16 @@ Success. Returns the status of payment. Check the example shown below or refer `
3698
3824
 
3699
3825
  | Properties | Type | Nullable | Description |
3700
3826
  | ---------- | ---- | -------- | ----------- |
3827
+ | pin | string | no | Masked pin |
3828
+ | merchant_id | string | no | Unique merchant id |
3701
3829
  | api | string | no | Payment gateway api endpoint |
3702
- | verify_api | string | no | Payment gateway verify payment api endpoint |
3830
+ | sdk | boolean | no | SDK |
3831
+ | secret | string | yes | Masked payment gateway api secret |
3703
3832
  | config_type | string | yes | Fynd or self payment gateway |
3704
- | merchant_id | string | no | Unique merchant id |
3833
+ | verify_api | string | no | Payment gateway verify payment api endpoint |
3705
3834
  | merchant_key | string | no | Unique merchant key |
3706
- | user_id | string | no | Registered User id |
3707
- | secret | string | yes | Masked payment gateway api secret |
3708
3835
  | key | string | yes | Payment gateway api key |
3709
- | sdk | boolean | no | SDK |
3710
- | pin | string | no | Masked pin |
3836
+ | user_id | string | no | Registered User id |
3711
3837
 
3712
3838
  ---
3713
3839
 
@@ -3718,16 +3844,16 @@ Success. Returns the status of payment. Check the example shown below or refer `
3718
3844
 
3719
3845
  | Properties | Type | Nullable | Description |
3720
3846
  | ---------- | ---- | -------- | ----------- |
3847
+ | juspay | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
3848
+ | simpl | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
3849
+ | success | boolean | yes | |
3721
3850
  | stripe | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
3722
- | env | string | yes | Environment i.e Live or Test |
3723
- | mswipe | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
3724
3851
  | rupifi | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
3725
- | simpl | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
3852
+ | mswipe | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
3853
+ | razorpay | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
3854
+ | env | string | yes | Environment i.e Live or Test |
3726
3855
  | ccavenue | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
3727
3856
  | payumoney | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
3728
- | success | boolean | yes | |
3729
- | juspay | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
3730
- | razorpay | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
3731
3857
 
3732
3858
  ---
3733
3859
 
@@ -3738,8 +3864,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
3738
3864
 
3739
3865
  | Properties | Type | Nullable | Description |
3740
3866
  | ---------- | ---- | -------- | ----------- |
3741
- | code | string | yes | Error descrption code. |
3742
3867
  | description | string | yes | Error human understandable description. |
3868
+ | code | string | yes | Error descrption code. |
3743
3869
 
3744
3870
  ---
3745
3871
 
@@ -3750,8 +3876,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
3750
3876
 
3751
3877
  | Properties | Type | Nullable | Description |
3752
3878
  | ---------- | ---- | -------- | ----------- |
3753
- | success | boolean | yes | Response is successful or not |
3754
3879
  | error | [ErrorCodeAndDescription](#ErrorCodeAndDescription) | yes | |
3880
+ | success | boolean | yes | Response is successful or not |
3755
3881
 
3756
3882
  ---
3757
3883
 
@@ -3762,10 +3888,10 @@ Success. Returns the status of payment. Check the example shown below or refer `
3762
3888
 
3763
3889
  | Properties | Type | Nullable | Description |
3764
3890
  | ---------- | ---- | -------- | ----------- |
3765
- | name_on_card | string | no | |
3766
- | refresh | boolean | no | Refresh cache flag. |
3767
- | nickname | string | no | |
3768
3891
  | card_id | string | yes | Card token of payment gateway. |
3892
+ | nickname | string | no | |
3893
+ | refresh | boolean | no | Refresh cache flag. |
3894
+ | name_on_card | string | no | |
3769
3895
 
3770
3896
  ---
3771
3897
 
@@ -3776,9 +3902,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
3776
3902
 
3777
3903
  | Properties | Type | Nullable | Description |
3778
3904
  | ---------- | ---- | -------- | ----------- |
3779
- | message | string | no | Human readable message. |
3780
3905
  | data | string | yes | List of cards of customer. |
3781
3906
  | success | boolean | yes | Response is successful or not. |
3907
+ | message | string | no | Human readable message. |
3782
3908
 
3783
3909
  ---
3784
3910
 
@@ -3789,9 +3915,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
3789
3915
 
3790
3916
  | Properties | Type | Nullable | Description |
3791
3917
  | ---------- | ---- | -------- | ----------- |
3918
+ | aggregator | string | yes | Payment gateway name. |
3792
3919
  | customer_id | string | no | Payment gateway customer id. |
3793
3920
  | api | string | no | Payment gateway CARD api endpoint |
3794
- | aggregator | string | yes | Payment gateway name. |
3795
3921
 
3796
3922
  ---
3797
3923
 
@@ -3802,9 +3928,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
3802
3928
 
3803
3929
  | Properties | Type | Nullable | Description |
3804
3930
  | ---------- | ---- | -------- | ----------- |
3805
- | message | string | yes | Human readable message. |
3806
- | cards | [CardPaymentGateway](#CardPaymentGateway) | yes | Card's payment gateway with customer id. |
3807
3931
  | success | boolean | yes | Response is successful or not. |
3932
+ | cards | [CardPaymentGateway](#CardPaymentGateway) | yes | Card's payment gateway with customer id. |
3933
+ | message | string | yes | Human readable message. |
3808
3934
 
3809
3935
  ---
3810
3936
 
@@ -3815,23 +3941,23 @@ Success. Returns the status of payment. Check the example shown below or refer `
3815
3941
 
3816
3942
  | Properties | Type | Nullable | Description |
3817
3943
  | ---------- | ---- | -------- | ----------- |
3818
- | card_issuer | string | no | card_issuer |
3819
- | exp_month | number | no | exp_month |
3820
- | card_brand | string | no | card_brand |
3944
+ | card_id | string | no | card_id |
3821
3945
  | nickname | string | no | nickname |
3822
- | card_isin | string | no | card_isin |
3823
- | expired | boolean | no | expired |
3824
- | card_number | string | no | card_number |
3825
- | card_token | string | no | card_token |
3826
- | card_name | string | no | card_name |
3827
- | card_fingerprint | string | no | card_fingerprint |
3828
- | exp_year | number | no | exp_year |
3946
+ | card_reference | string | no | card_reference |
3829
3947
  | card_type | string | no | card_type |
3830
- | aggregator_name | string | yes | aggregator_name |
3831
- | card_id | string | no | card_id |
3832
3948
  | compliant_with_tokenisation_guidelines | boolean | no | If card is tokenised or not |
3833
3949
  | card_brand_image | string | no | card_brand_image |
3834
- | card_reference | string | no | card_reference |
3950
+ | card_token | string | no | card_token |
3951
+ | card_number | string | no | card_number |
3952
+ | card_isin | string | no | card_isin |
3953
+ | exp_year | number | no | exp_year |
3954
+ | exp_month | number | no | exp_month |
3955
+ | card_name | string | no | card_name |
3956
+ | aggregator_name | string | yes | aggregator_name |
3957
+ | expired | boolean | no | expired |
3958
+ | card_fingerprint | string | no | card_fingerprint |
3959
+ | card_brand | string | no | card_brand |
3960
+ | card_issuer | string | no | card_issuer |
3835
3961
 
3836
3962
  ---
3837
3963
 
@@ -3842,9 +3968,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
3842
3968
 
3843
3969
  | Properties | Type | Nullable | Description |
3844
3970
  | ---------- | ---- | -------- | ----------- |
3845
- | message | string | yes | Human readable message. |
3846
3971
  | data | [[Card](#Card)] | no | List of cards of customer. |
3847
3972
  | success | boolean | yes | Response is successful or not. |
3973
+ | message | string | yes | Human readable message. |
3848
3974
 
3849
3975
  ---
3850
3976
 
@@ -3866,8 +3992,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
3866
3992
 
3867
3993
  | Properties | Type | Nullable | Description |
3868
3994
  | ---------- | ---- | -------- | ----------- |
3869
- | message | string | no | Human readable message. |
3870
3995
  | success | boolean | yes | Response is successful or not. |
3996
+ | message | string | no | Human readable message. |
3871
3997
 
3872
3998
  ---
3873
3999
 
@@ -3878,14 +4004,14 @@ Success. Returns the status of payment. Check the example shown below or refer `
3878
4004
 
3879
4005
  | Properties | Type | Nullable | Description |
3880
4006
  | ---------- | ---- | -------- | ----------- |
4007
+ | delivery_address | string | no | Extra meta fields. |
4008
+ | order_items | [string] | no | Extra meta fields. |
4009
+ | phone_number | string | yes | User mobile number without country code. |
4010
+ | billing_address | string | no | Extra meta fields. |
3881
4011
  | payload | string | no | Hashed payload string. |
3882
4012
  | transaction_amount_in_paise | number | yes | Payable amount in paise |
3883
4013
  | aggregator | string | yes | Payment gateway name in camel case i.e Simpl, Rupifi |
3884
- | billing_address | string | no | Extra meta fields. |
3885
4014
  | merchant_params | string | no | Extra meta fields. |
3886
- | order_items | [string] | no | Extra meta fields. |
3887
- | phone_number | string | yes | User mobile number without country code. |
3888
- | delivery_address | string | no | Extra meta fields. |
3889
4015
 
3890
4016
  ---
3891
4017
 
@@ -3896,9 +4022,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
3896
4022
 
3897
4023
  | Properties | Type | Nullable | Description |
3898
4024
  | ---------- | ---- | -------- | ----------- |
3899
- | message | string | yes | Error or success message. |
3900
4025
  | data | string | yes | Payment gateway response data |
3901
4026
  | success | boolean | yes | Response is successful or not |
4027
+ | message | string | yes | Error or success message. |
3902
4028
 
3903
4029
  ---
3904
4030
 
@@ -3909,11 +4035,11 @@ Success. Returns the status of payment. Check the example shown below or refer `
3909
4035
 
3910
4036
  | Properties | Type | Nullable | Description |
3911
4037
  | ---------- | ---- | -------- | ----------- |
4038
+ | verified | boolean | no | Already Verified flag from payment gateway i.e Mswipe |
3912
4039
  | order_id | string | yes | Unique order id. |
3913
- | amount | number | yes | Chargable amount of order. |
3914
- | aggregator | string | yes | Payment gateway name i.e Simpl, Mswipe |
3915
4040
  | transaction_token | string | no | Transaction token of payment gateway. |
3916
- | verified | boolean | no | Already Verified flag from payment gateway i.e Mswipe |
4041
+ | aggregator | string | yes | Payment gateway name i.e Simpl, Mswipe |
4042
+ | amount | number | yes | Chargable amount of order. |
3917
4043
 
3918
4044
  ---
3919
4045
 
@@ -3924,13 +4050,13 @@ Success. Returns the status of payment. Check the example shown below or refer `
3924
4050
 
3925
4051
  | Properties | Type | Nullable | Description |
3926
4052
  | ---------- | ---- | -------- | ----------- |
4053
+ | success | boolean | yes | Response is successful or not. |
4054
+ | status | string | yes | Status of charged payment. |
3927
4055
  | order_id | string | yes | Unique order id. |
3928
4056
  | cart_id | string | no | Cart id of customer |
3929
- | aggregator | string | yes | Payment gateway name i.e Simpl, Mswipe |
3930
4057
  | message | string | yes | Human readable message. |
3931
- | status | string | yes | Status of charged payment. |
3932
- | success | boolean | yes | Response is successful or not. |
3933
4058
  | delivery_address_id | string | no | Delivery adddress id of customer |
4059
+ | aggregator | string | yes | Payment gateway name i.e Simpl, Mswipe |
3934
4060
 
3935
4061
  ---
3936
4062
 
@@ -3941,18 +4067,18 @@ Success. Returns the status of payment. Check the example shown below or refer `
3941
4067
 
3942
4068
  | Properties | Type | Nullable | Description |
3943
4069
  | ---------- | ---- | -------- | ----------- |
3944
- | order_id | string | yes | Payment gateway order id |
3945
- | contact | string | yes | Customer valid mobile number |
3946
- | customer_id | string | yes | Payment gateway customer id. |
3947
- | amount | number | yes | Payable amount. |
3948
- | method | string | yes | Payment method |
3949
- | aggregator | string | yes | Payment gateway name |
3950
4070
  | currency | string | yes | Currency code. |
4071
+ | timeout | number | no | Payment polling timeout if not recieved response |
3951
4072
  | email | string | yes | Customer valid email |
3952
- | razorpay_payment_id | string | no | Payment gateway payment id |
3953
4073
  | merchant_order_id | string | yes | Unique fynd order id |
3954
- | timeout | number | no | Payment polling timeout if not recieved response |
4074
+ | order_id | string | yes | Payment gateway order id |
4075
+ | customer_id | string | yes | Payment gateway customer id. |
4076
+ | contact | string | yes | Customer valid mobile number |
3955
4077
  | vpa | string | no | Customer vpa address |
4078
+ | aggregator | string | yes | Payment gateway name |
4079
+ | razorpay_payment_id | string | no | Payment gateway payment id |
4080
+ | amount | number | yes | Payable amount. |
4081
+ | method | string | yes | Payment method |
3956
4082
 
3957
4083
  ---
3958
4084
 
@@ -3963,22 +4089,22 @@ Success. Returns the status of payment. Check the example shown below or refer `
3963
4089
 
3964
4090
  | Properties | Type | Nullable | Description |
3965
4091
  | ---------- | ---- | -------- | ----------- |
3966
- | customer_id | string | no | Payment gateway customer id. |
3967
- | vpa | string | no | Customer vpa address |
3968
- | amount | number | no | Payable amount. |
3969
- | method | string | yes | Payment method |
3970
- | aggregator | string | yes | Payment gateway name |
3971
4092
  | currency | string | no | Currency code. |
3972
- | upi_poll_url | string | no | UPI poll url. |
4093
+ | success | boolean | yes | Response is successful or not. |
3973
4094
  | aggregator_order_id | string | no | Payment order id |
4095
+ | timeout | number | no | timeout. |
3974
4096
  | status | string | no | Status of payment. |
3975
4097
  | bqr_image | string | no | Bharath qr image url. |
4098
+ | upi_poll_url | string | no | UPI poll url. |
4099
+ | customer_id | string | no | Payment gateway customer id. |
4100
+ | virtual_id | string | no | Payment virtual address. |
4101
+ | razorpay_payment_id | string | no | Payment id. |
3976
4102
  | polling_url | string | yes | Polling url. |
4103
+ | vpa | string | no | Customer vpa address |
4104
+ | aggregator | string | yes | Payment gateway name |
3977
4105
  | merchant_order_id | string | yes | order id |
3978
- | razorpay_payment_id | string | no | Payment id. |
3979
- | timeout | number | no | timeout. |
3980
- | success | boolean | yes | Response is successful or not. |
3981
- | virtual_id | string | no | Payment virtual address. |
4106
+ | amount | number | no | Payable amount. |
4107
+ | method | string | yes | Payment method |
3982
4108
 
3983
4109
  ---
3984
4110
 
@@ -3989,17 +4115,17 @@ Success. Returns the status of payment. Check the example shown below or refer `
3989
4115
 
3990
4116
  | Properties | Type | Nullable | Description |
3991
4117
  | ---------- | ---- | -------- | ----------- |
4118
+ | currency | string | yes | Currency code. |
4119
+ | email | string | yes | Customer valid email |
4120
+ | status | string | yes | Status of payment. |
3992
4121
  | order_id | string | yes | Payment gateway order id |
3993
- | contact | string | yes | Customer valid mobile number |
3994
4122
  | customer_id | string | yes | Payment gateway customer id. |
3995
- | amount | number | yes | Payable amount. |
3996
- | method | string | yes | Payment method |
4123
+ | contact | string | yes | Customer valid mobile number |
4124
+ | vpa | string | yes | Customer vpa address |
3997
4125
  | aggregator | string | yes | Payment gateway name |
3998
- | currency | string | yes | Currency code. |
3999
- | status | string | yes | Status of payment. |
4000
- | email | string | yes | Customer valid email |
4001
4126
  | merchant_order_id | string | yes | Unique fynd order id |
4002
- | vpa | string | yes | Customer vpa address |
4127
+ | amount | number | yes | Payable amount. |
4128
+ | method | string | yes | Payment method |
4003
4129
 
4004
4130
  ---
4005
4131
 
@@ -4010,11 +4136,11 @@ Success. Returns the status of payment. Check the example shown below or refer `
4010
4136
 
4011
4137
  | Properties | Type | Nullable | Description |
4012
4138
  | ---------- | ---- | -------- | ----------- |
4013
- | retry | boolean | yes | Response is successful or not. |
4139
+ | success | boolean | no | Response is successful or not |
4014
4140
  | redirect_url | string | no | Redirect url |
4015
4141
  | status | string | yes | Payment status |
4016
4142
  | aggregator_name | string | yes | Payment gateway name |
4017
- | success | boolean | no | Response is successful or not |
4143
+ | retry | boolean | yes | Response is successful or not. |
4018
4144
 
4019
4145
  ---
4020
4146
 
@@ -4038,8 +4164,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
4038
4164
  | Properties | Type | Nullable | Description |
4039
4165
  | ---------- | ---- | -------- | ----------- |
4040
4166
  | code | string | no | code |
4041
- | package_name | string | no | package_name |
4042
4167
  | logos | [PaymentModeLogo](#PaymentModeLogo) | no | logos |
4168
+ | package_name | string | no | package_name |
4043
4169
  | display_name | string | no | display_name |
4044
4170
 
4045
4171
  ---
@@ -4051,8 +4177,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
4051
4177
 
4052
4178
  | Properties | Type | Nullable | Description |
4053
4179
  | ---------- | ---- | -------- | ----------- |
4054
- | code | string | no | code |
4055
4180
  | package_name | string | no | package_name |
4181
+ | code | string | no | code |
4056
4182
 
4057
4183
  ---
4058
4184
 
@@ -4063,39 +4189,39 @@ Success. Returns the status of payment. Check the example shown below or refer `
4063
4189
 
4064
4190
  | Properties | Type | Nullable | Description |
4065
4191
  | ---------- | ---- | -------- | ----------- |
4066
- | logo_url | [PaymentModeLogo](#PaymentModeLogo) | no | Logo |
4192
+ | nickname | string | no | nickname |
4193
+ | card_reference | string | no | card_reference |
4194
+ | card_type | string | no | card_type |
4195
+ | intent_flow | boolean | no | intent_flow |
4196
+ | card_brand_image | string | no | card_brand_image |
4197
+ | display_name | string | no | display name |
4067
4198
  | card_number | string | no | card_number |
4068
- | card_token | string | no | card_token |
4199
+ | exp_month | number | no | exp_month |
4069
4200
  | display_priority | number | no | Dispaly Priority |
4070
- | code | string | no | code |
4201
+ | timeout | number | no | timeout |
4071
4202
  | intent_app | [[IntentApp](#IntentApp)] | no | intent_app |
4072
- | expired | boolean | no | expired |
4073
4203
  | card_name | string | no | card_name |
4074
- | cod_limit_per_order | number | no | Cod limit per order |
4075
- | card_type | string | no | card_type |
4076
4204
  | card_issuer | string | no | card_issuer |
4077
- | card_reference | string | no | card_reference |
4078
- | card_isin | string | no | card_isin |
4205
+ | intent_app_error_list | [string] | no | intent_app_error_list |
4206
+ | cod_limit_per_order | number | no | Cod limit per order |
4207
+ | logo_url | [PaymentModeLogo](#PaymentModeLogo) | no | Logo |
4079
4208
  | retry_count | number | no | retry_count |
4080
- | fynd_vpa | string | no | fynd_vpa |
4081
- | exp_year | number | no | exp_year |
4082
- | merchant_code | string | no | merchant code |
4083
- | aggregator_name | string | yes | aggregator_name |
4084
- | intent_flow | boolean | no | intent_flow |
4085
- | intent_app_error_dict_list | [[IntentAppErrorList](#IntentAppErrorList)] | no | intent_app_error_dict_list |
4209
+ | card_fingerprint | string | no | card_fingerprint |
4086
4210
  | name | string | no | name |
4211
+ | intent_app_error_dict_list | [[IntentAppErrorList](#IntentAppErrorList)] | no | intent_app_error_dict_list |
4087
4212
  | cod_limit | number | no | cod limit |
4088
- | card_brand_image | string | no | card_brand_image |
4089
- | nickname | string | no | nickname |
4090
- | exp_month | number | no | exp_month |
4091
- | card_brand | string | no | card_brand |
4092
- | card_fingerprint | string | no | card_fingerprint |
4093
- | intent_app_error_list | [string] | no | intent_app_error_list |
4094
- | display_name | string | no | display name |
4213
+ | fynd_vpa | string | no | fynd_vpa |
4214
+ | code | string | no | code |
4215
+ | card_token | string | no | card_token |
4216
+ | merchant_code | string | no | merchant code |
4217
+ | card_isin | string | no | card_isin |
4218
+ | remaining_limit | number | no | Remaining limit |
4095
4219
  | card_id | string | no | card_id |
4096
4220
  | compliant_with_tokenisation_guidelines | boolean | no | If card is tokenised or not |
4097
- | timeout | number | no | timeout |
4098
- | remaining_limit | number | no | Remaining limit |
4221
+ | exp_year | number | no | exp_year |
4222
+ | expired | boolean | no | expired |
4223
+ | aggregator_name | string | yes | aggregator_name |
4224
+ | card_brand | string | no | card_brand |
4099
4225
 
4100
4226
  ---
4101
4227
 
@@ -4106,15 +4232,15 @@ Success. Returns the status of payment. Check the example shown below or refer `
4106
4232
 
4107
4233
  | Properties | Type | Nullable | Description |
4108
4234
  | ---------- | ---- | -------- | ----------- |
4109
- | list | [[PaymentModeList](#PaymentModeList)] | no | Payment mode |
4110
4235
  | save_card | boolean | no | Card save or not |
4111
4236
  | display_name | string | yes | Payment mode display name |
4237
+ | name | string | yes | Payment mode name |
4238
+ | add_card_enabled | boolean | no | Annonymous card flag |
4112
4239
  | is_pay_by_card_pl | boolean | no | This flag will be true in case of Payment link payment through card |
4240
+ | list | [[PaymentModeList](#PaymentModeList)] | no | Payment mode |
4241
+ | aggregator_name | string | no | Dispaly Priority |
4113
4242
  | display_priority | number | yes | Dispaly Priority |
4114
4243
  | anonymous_enable | boolean | no | Annonymous card flag |
4115
- | aggregator_name | string | no | Dispaly Priority |
4116
- | add_card_enabled | boolean | no | Annonymous card flag |
4117
- | name | string | yes | Payment mode name |
4118
4244
 
4119
4245
  ---
4120
4246
 
@@ -4125,10 +4251,10 @@ Success. Returns the status of payment. Check the example shown below or refer `
4125
4251
 
4126
4252
  | Properties | Type | Nullable | Description |
4127
4253
  | ---------- | ---- | -------- | ----------- |
4254
+ | api_link | string | no | api_link |
4255
+ | payment_flow_data | string | no | payment_flow_data |
4128
4256
  | data | string | no | Data |
4129
4257
  | payment_flow | string | no | payment_flow |
4130
- | payment_flow_data | string | no | payment_flow_data |
4131
- | api_link | string | no | api_link |
4132
4258
 
4133
4259
  ---
4134
4260
 
@@ -4139,19 +4265,19 @@ Success. Returns the status of payment. Check the example shown below or refer `
4139
4265
 
4140
4266
  | Properties | Type | Nullable | Description |
4141
4267
  | ---------- | ---- | -------- | ----------- |
4142
- | bqr_razorpay | [AggregatorRoute](#AggregatorRoute) | no | BQR_Razorpay |
4143
- | stripe | [AggregatorRoute](#AggregatorRoute) | no | Stripe |
4144
- | fynd | [AggregatorRoute](#AggregatorRoute) | no | Fynd |
4145
- | epaylater | [AggregatorRoute](#AggregatorRoute) | no | Epaylater |
4146
- | upi_razorpay | [AggregatorRoute](#AggregatorRoute) | no | UPI_Razorpay |
4147
- | jiopay | [AggregatorRoute](#AggregatorRoute) | no | Jiopay |
4148
- | mswipe | [AggregatorRoute](#AggregatorRoute) | no | mswipe |
4149
4268
  | simpl | [AggregatorRoute](#AggregatorRoute) | no | simpl |
4150
- | ccavenue | [AggregatorRoute](#AggregatorRoute) | no | Ccavenue |
4269
+ | juspay | [AggregatorRoute](#AggregatorRoute) | no | Juspay |
4270
+ | stripe | [AggregatorRoute](#AggregatorRoute) | no | Stripe |
4151
4271
  | rupifi | [AggregatorRoute](#AggregatorRoute) | no | Rupifi |
4152
4272
  | payubiz | [AggregatorRoute](#AggregatorRoute) | no | Payubiz |
4153
- | juspay | [AggregatorRoute](#AggregatorRoute) | no | Juspay |
4273
+ | mswipe | [AggregatorRoute](#AggregatorRoute) | no | mswipe |
4154
4274
  | razorpay | [AggregatorRoute](#AggregatorRoute) | no | Razorpay |
4275
+ | bqr_razorpay | [AggregatorRoute](#AggregatorRoute) | no | BQR_Razorpay |
4276
+ | ccavenue | [AggregatorRoute](#AggregatorRoute) | no | Ccavenue |
4277
+ | fynd | [AggregatorRoute](#AggregatorRoute) | no | Fynd |
4278
+ | epaylater | [AggregatorRoute](#AggregatorRoute) | no | Epaylater |
4279
+ | jiopay | [AggregatorRoute](#AggregatorRoute) | no | Jiopay |
4280
+ | upi_razorpay | [AggregatorRoute](#AggregatorRoute) | no | UPI_Razorpay |
4155
4281
 
4156
4282
  ---
4157
4283
 
@@ -4174,8 +4300,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
4174
4300
 
4175
4301
  | Properties | Type | Nullable | Description |
4176
4302
  | ---------- | ---- | -------- | ----------- |
4177
- | payment_options | [PaymentOptionAndFlow](#PaymentOptionAndFlow) | yes | payment_options |
4178
4303
  | success | boolean | yes | Response is successful or not |
4304
+ | payment_options | [PaymentOptionAndFlow](#PaymentOptionAndFlow) | yes | payment_options |
4179
4305
 
4180
4306
  ---
4181
4307
 
@@ -4235,8 +4361,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
4235
4361
 
4236
4362
  | Properties | Type | Nullable | Description |
4237
4363
  | ---------- | ---- | -------- | ----------- |
4238
- | order_id | string | yes | Unique order id |
4239
4364
  | request_type | string | yes | Either resend or cancel |
4365
+ | order_id | string | yes | Unique order id |
4240
4366
 
4241
4367
  ---
4242
4368
 
@@ -4247,8 +4373,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
4247
4373
 
4248
4374
  | Properties | Type | Nullable | Description |
4249
4375
  | ---------- | ---- | -------- | ----------- |
4250
- | message | string | yes | Message |
4251
4376
  | status | boolean | yes | Link action status |
4377
+ | message | string | yes | Message |
4252
4378
 
4253
4379
  ---
4254
4380
 
@@ -4267,15 +4393,75 @@ Success. Returns the status of payment. Check the example shown below or refer `
4267
4393
 
4268
4394
 
4269
4395
 
4396
+ #### [renderHTMLRequest](#renderHTMLRequest)
4397
+
4398
+ | Properties | Type | Nullable | Description |
4399
+ | ---------- | ---- | -------- | ----------- |
4400
+ | base64_html | string | yes | base64 encoded html string |
4401
+ | returntype | string | no | Return Type of API |
4402
+
4403
+ ---
4404
+
4405
+
4406
+
4407
+
4408
+ #### [renderHTMLResponse](#renderHTMLResponse)
4409
+
4410
+ | Properties | Type | Nullable | Description |
4411
+ | ---------- | ---- | -------- | ----------- |
4412
+ | html | string | yes | HTML string |
4413
+
4414
+ ---
4415
+
4416
+
4417
+
4418
+
4419
+ #### [ValidateVPARequest](#ValidateVPARequest)
4420
+
4421
+ | Properties | Type | Nullable | Description |
4422
+ | ---------- | ---- | -------- | ----------- |
4423
+ | upi_vpa | string | yes | UPI ID |
4424
+
4425
+ ---
4426
+
4427
+
4428
+
4429
+
4430
+ #### [ValidateUPI](#ValidateUPI)
4431
+
4432
+ | Properties | Type | Nullable | Description |
4433
+ | ---------- | ---- | -------- | ----------- |
4434
+ | status | string | yes | VALID or INVALID |
4435
+ | customer_name | string | yes | Customer Bank |
4436
+ | is_valid | boolean | yes | boolean is true or false. |
4437
+ | upi_vpa | string | yes | UPI ID |
4438
+
4439
+ ---
4440
+
4441
+
4442
+
4443
+
4444
+ #### [ValidateVPAResponse](#ValidateVPAResponse)
4445
+
4446
+ | Properties | Type | Nullable | Description |
4447
+ | ---------- | ---- | -------- | ----------- |
4448
+ | data | [ValidateUPI](#ValidateUPI) | yes | Data about UPI ID validate. |
4449
+ | success | boolean | yes | Response is successful or not. |
4450
+
4451
+ ---
4452
+
4453
+
4454
+
4455
+
4270
4456
  #### [TransferItemsDetails](#TransferItemsDetails)
4271
4457
 
4272
4458
  | Properties | Type | Nullable | Description |
4273
4459
  | ---------- | ---- | -------- | ----------- |
4274
- | logo_small | string | yes | Beneficiary small Logo |
4275
4460
  | id | number | yes | |
4276
4461
  | logo_large | string | yes | Beneficiary large Logo |
4277
4462
  | display_name | string | no | Beneficiary Display Name |
4278
4463
  | name | string | yes | Beneficiary Name |
4464
+ | logo_small | string | yes | Beneficiary small Logo |
4279
4465
 
4280
4466
  ---
4281
4467
 
@@ -4286,8 +4472,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
4286
4472
 
4287
4473
  | Properties | Type | Nullable | Description |
4288
4474
  | ---------- | ---- | -------- | ----------- |
4289
- | display_name | string | yes | Beneficiary Mode Name |
4290
4475
  | items | [[TransferItemsDetails](#TransferItemsDetails)] | no | Beneficiary Mode Items |
4476
+ | display_name | string | yes | Beneficiary Mode Name |
4291
4477
 
4292
4478
  ---
4293
4479
 
@@ -4309,8 +4495,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
4309
4495
 
4310
4496
  | Properties | Type | Nullable | Description |
4311
4497
  | ---------- | ---- | -------- | ----------- |
4312
- | enable | boolean | yes | True for enabling the Transfer Mode |
4313
4498
  | transfer_mode | string | yes | Transfer Mode of the Beneficiary to be added |
4499
+ | enable | boolean | yes | True for enabling the Transfer Mode |
4314
4500
 
4315
4501
  ---
4316
4502
 
@@ -4333,24 +4519,24 @@ Success. Returns the status of payment. Check the example shown below or refer `
4333
4519
  | Properties | Type | Nullable | Description |
4334
4520
  | ---------- | ---- | -------- | ----------- |
4335
4521
  | is_active | boolean | yes | Boolean Flag whether Beneficiary set or not |
4336
- | account_no | string | yes | Account Number |
4337
- | comment | string | no | Remarks |
4338
- | delights_user_name | string | no | User Id Who filled the Beneficiary |
4339
- | id | number | yes | |
4340
- | created_on | string | yes | Creation Date of Beneficiary |
4341
- | title | string | yes | Title Of Account |
4342
- | subtitle | string | yes | SHort Title Of Account |
4343
- | beneficiary_id | string | yes | Benenficiary Id |
4522
+ | email | string | yes | EMail of User |
4344
4523
  | bank_name | string | yes | Bank Name Of Account |
4345
- | modified_on | string | yes | MOdification Date of Beneficiary |
4524
+ | display_name | string | yes | Display Name Of Account |
4525
+ | beneficiary_id | string | yes | Benenficiary Id |
4526
+ | mobile | string | no | MObile no of User |
4527
+ | title | string | yes | Title Of Account |
4528
+ | address | string | yes | Address of User |
4529
+ | comment | string | no | Remarks |
4346
4530
  | ifsc_code | string | yes | Ifsc Code Of Account |
4531
+ | created_on | string | yes | Creation Date of Beneficiary |
4347
4532
  | transfer_mode | string | yes | Transfer Mode Of Account |
4348
- | address | string | yes | Address of User |
4349
- | branch_name | string | no | Branch Name Of Account |
4350
- | display_name | string | yes | Display Name Of Account |
4351
- | email | string | yes | EMail of User |
4533
+ | modified_on | string | yes | MOdification Date of Beneficiary |
4352
4534
  | account_holder | string | yes | Account Holder Name |
4353
- | mobile | string | no | MObile no of User |
4535
+ | branch_name | string | no | Branch Name Of Account |
4536
+ | subtitle | string | yes | SHort Title Of Account |
4537
+ | delights_user_name | string | no | User Id Who filled the Beneficiary |
4538
+ | id | number | yes | |
4539
+ | account_no | string | yes | Account Number |
4354
4540
 
4355
4541
  ---
4356
4542
 
@@ -4361,8 +4547,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
4361
4547
 
4362
4548
  | Properties | Type | Nullable | Description |
4363
4549
  | ---------- | ---- | -------- | ----------- |
4364
- | show_beneficiary_details | boolean | no | Show beneficiary details or not. |
4365
4550
  | beneficiaries | [[OrderBeneficiaryDetails](#OrderBeneficiaryDetails)] | no | All Beneficiaries Of An Order |
4551
+ | show_beneficiary_details | boolean | no | Show beneficiary details or not. |
4366
4552
 
4367
4553
  ---
4368
4554
 
@@ -4373,9 +4559,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
4373
4559
 
4374
4560
  | Properties | Type | Nullable | Description |
4375
4561
  | ---------- | ---- | -------- | ----------- |
4376
- | code | string | yes | Bad Request Data |
4377
- | success | boolean | yes | Response is successful or not |
4378
4562
  | description | string | yes | Not Found |
4563
+ | success | boolean | yes | Response is successful or not |
4564
+ | code | string | yes | Bad Request Data |
4379
4565
 
4380
4566
  ---
4381
4567
 
@@ -4387,8 +4573,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
4387
4573
  | Properties | Type | Nullable | Description |
4388
4574
  | ---------- | ---- | -------- | ----------- |
4389
4575
  | bank_name | string | yes | Bank Name Of Account |
4390
- | branch_name | string | yes | Branch Name Of Account |
4391
4576
  | success | boolean | no | Response is successful or not |
4577
+ | branch_name | string | yes | Branch Name Of Account |
4392
4578
 
4393
4579
  ---
4394
4580
 
@@ -4399,9 +4585,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
4399
4585
 
4400
4586
  | Properties | Type | Nullable | Description |
4401
4587
  | ---------- | ---- | -------- | ----------- |
4402
- | code | string | yes | Error descrption code. |
4403
- | success | boolean | yes | Response is successful or not |
4404
4588
  | description | string | yes | Error human understandable description. |
4589
+ | success | boolean | yes | Response is successful or not |
4590
+ | code | string | yes | Error descrption code. |
4405
4591
 
4406
4592
  ---
4407
4593
 
@@ -4412,9 +4598,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
4412
4598
 
4413
4599
  | Properties | Type | Nullable | Description |
4414
4600
  | ---------- | ---- | -------- | ----------- |
4415
- | request_id | string | yes | Request Id sent in |
4416
- | hash_key | string | yes | Hash key of the beneficiary Id |
4417
4601
  | otp | string | yes | Otp sent to the given Mobile No |
4602
+ | hash_key | string | yes | Hash key of the beneficiary Id |
4603
+ | request_id | string | yes | Request Id sent in |
4418
4604
 
4419
4605
  ---
4420
4606
 
@@ -4425,8 +4611,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
4425
4611
 
4426
4612
  | Properties | Type | Nullable | Description |
4427
4613
  | ---------- | ---- | -------- | ----------- |
4428
- | message | string | yes | Aggregator Response of beneficicary |
4429
4614
  | success | boolean | no | Response is successful or not |
4615
+ | message | string | yes | Aggregator Response of beneficicary |
4430
4616
 
4431
4617
  ---
4432
4618
 
@@ -4437,9 +4623,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
4437
4623
 
4438
4624
  | Properties | Type | Nullable | Description |
4439
4625
  | ---------- | ---- | -------- | ----------- |
4440
- | is_verified_flag | boolean | yes | Vefified flag. |
4441
- | success | string | yes | Response is successful or not |
4442
4626
  | description | string | yes | Wrong OTP Code |
4627
+ | success | string | yes | Response is successful or not |
4628
+ | is_verified_flag | boolean | yes | Vefified flag. |
4443
4629
 
4444
4630
  ---
4445
4631
 
@@ -4450,17 +4636,17 @@ Success. Returns the status of payment. Check the example shown below or refer `
4450
4636
 
4451
4637
  | Properties | Type | Nullable | Description |
4452
4638
  | ---------- | ---- | -------- | ----------- |
4639
+ | email | string | yes | Email of the Account Holder |
4640
+ | address | string | no | Address of the User |
4641
+ | account_no | string | yes | Account NUmber of the Account Holder |
4642
+ | ifsc_code | string | yes | Ifsc Code of the Account |
4453
4643
  | comment | string | no | Remarks added by The user |
4454
- | mobile | string | yes | Moblie Number of the User |
4455
4644
  | bank_name | string | yes | Bank Name of the Account |
4456
- | ifsc_code | string | yes | Ifsc Code of the Account |
4457
- | account_no | string | yes | Account NUmber of the Account Holder |
4458
- | wallet | string | no | |
4459
- | email | string | yes | Email of the Account Holder |
4645
+ | vpa | string | no | |
4460
4646
  | account_holder | string | yes | Name of the Account Holder |
4461
- | address | string | no | Address of the User |
4462
4647
  | branch_name | string | yes | Branch Name of the Account |
4463
- | vpa | string | no | |
4648
+ | mobile | string | yes | Moblie Number of the User |
4649
+ | wallet | string | no | |
4464
4650
 
4465
4651
  ---
4466
4652
 
@@ -4471,13 +4657,13 @@ Success. Returns the status of payment. Check the example shown below or refer `
4471
4657
 
4472
4658
  | Properties | Type | Nullable | Description |
4473
4659
  | ---------- | ---- | -------- | ----------- |
4660
+ | otp | string | no | |
4661
+ | shipment_id | string | yes | Shipment Id of the respective Merchant Order Id |
4474
4662
  | order_id | string | yes | Merchant Order Id |
4475
- | transfer_mode | string | yes | Transfer Mode of the Beneficiary to be added |
4476
- | delights | boolean | yes | True if beneficiary to be added by delights or False if by User |
4477
4663
  | details | [BeneficiaryModeDetails](#BeneficiaryModeDetails) | yes | Beneficiary bank details |
4478
- | otp | string | no | |
4664
+ | transfer_mode | string | yes | Transfer Mode of the Beneficiary to be added |
4479
4665
  | request_id | string | no | |
4480
- | shipment_id | string | yes | Shipment Id of the respective Merchant Order Id |
4666
+ | delights | boolean | yes | True if beneficiary to be added by delights or False if by User |
4481
4667
 
4482
4668
  ---
4483
4669
 
@@ -4488,10 +4674,10 @@ Success. Returns the status of payment. Check the example shown below or refer `
4488
4674
 
4489
4675
  | Properties | Type | Nullable | Description |
4490
4676
  | ---------- | ---- | -------- | ----------- |
4491
- | message | string | yes | Response message |
4492
- | is_verified_flag | boolean | no | |
4493
4677
  | data | string | no | Refund account data. |
4494
4678
  | success | boolean | yes | Success or failure flag. |
4679
+ | is_verified_flag | boolean | no | |
4680
+ | message | string | yes | Response message |
4495
4681
 
4496
4682
  ---
4497
4683
 
@@ -4502,11 +4688,11 @@ Success. Returns the status of payment. Check the example shown below or refer `
4502
4688
 
4503
4689
  | Properties | Type | Nullable | Description |
4504
4690
  | ---------- | ---- | -------- | ----------- |
4505
- | bank_name | string | yes | |
4506
- | ifsc_code | string | yes | |
4507
4691
  | account_no | string | yes | |
4508
- | account_holder | string | yes | |
4509
4692
  | branch_name | string | yes | |
4693
+ | bank_name | string | yes | |
4694
+ | account_holder | string | yes | |
4695
+ | ifsc_code | string | yes | |
4510
4696
 
4511
4697
  ---
4512
4698
 
@@ -4517,8 +4703,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
4517
4703
 
4518
4704
  | Properties | Type | Nullable | Description |
4519
4705
  | ---------- | ---- | -------- | ----------- |
4520
- | order_id | string | yes | |
4521
4706
  | details | [BankDetailsForOTP](#BankDetailsForOTP) | yes | |
4707
+ | order_id | string | yes | |
4522
4708
 
4523
4709
  ---
4524
4710
 
@@ -4541,9 +4727,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
4541
4727
 
4542
4728
  | Properties | Type | Nullable | Description |
4543
4729
  | ---------- | ---- | -------- | ----------- |
4544
- | is_verified_flag | string | yes | Boolean Flag whether OTP Validation is already done or not |
4545
- | success | boolean | no | Response is successful or not |
4546
4730
  | request_id | string | yes | request id |
4731
+ | success | boolean | no | Response is successful or not |
4732
+ | is_verified_flag | string | yes | Boolean Flag whether OTP Validation is already done or not |
4547
4733
 
4548
4734
  ---
4549
4735
 
@@ -4554,8 +4740,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
4554
4740
 
4555
4741
  | Properties | Type | Nullable | Description |
4556
4742
  | ---------- | ---- | -------- | ----------- |
4557
- | order_id | string | yes | Merchant Order Id |
4558
4743
  | beneficiary_id | string | yes | Beneficiary Hash Id of the beneficiary added |
4744
+ | order_id | string | yes | Merchant Order Id |
4559
4745
 
4560
4746
  ---
4561
4747
 
@@ -4578,15 +4764,15 @@ Success. Returns the status of payment. Check the example shown below or refer `
4578
4764
 
4579
4765
  | Properties | Type | Nullable | Description |
4580
4766
  | ---------- | ---- | -------- | ----------- |
4581
- | merchant_name | string | no | Merchant name |
4582
- | amount | number | no | Total value of order |
4583
- | payment_link_url | string | no | Url of payment link |
4767
+ | success | boolean | yes | Successful or failure |
4584
4768
  | payment_link_current_status | string | no | Status of payment link |
4585
- | external_order_id | string | no | Merchant order id |
4769
+ | merchant_name | string | no | Merchant name |
4586
4770
  | message | string | yes | Message |
4587
- | polling_timeout | number | no | Polling request timeout |
4588
4771
  | status_code | number | yes | HTTP status code |
4589
- | success | boolean | yes | Successful or failure |
4772
+ | polling_timeout | number | no | Polling request timeout |
4773
+ | payment_link_url | string | no | Url of payment link |
4774
+ | external_order_id | string | no | Merchant order id |
4775
+ | amount | number | no | Total value of order |
4590
4776
 
4591
4777
  ---
4592
4778
 
@@ -4598,13 +4784,13 @@ Success. Returns the status of payment. Check the example shown below or refer `
4598
4784
  | Properties | Type | Nullable | Description |
4599
4785
  | ---------- | ---- | -------- | ----------- |
4600
4786
  | invalid_id | boolean | no | Payment link id is valid or not |
4601
- | amount | number | no | Amount paid |
4787
+ | merchant_name | string | no | Name of merchant that created payment link |
4788
+ | msg | string | no | Message |
4602
4789
  | expired | boolean | no | Payment link expired or not |
4603
4790
  | cancelled | boolean | no | Payment link is cancelled or not |
4604
4791
  | merchant_order_id | string | no | Order id |
4605
- | msg | string | no | Message |
4606
4792
  | payment_transaction_id | string | no | Payment transaction id |
4607
- | merchant_name | string | no | Name of merchant that created payment link |
4793
+ | amount | number | no | Amount paid |
4608
4794
 
4609
4795
  ---
4610
4796
 
@@ -4615,10 +4801,10 @@ Success. Returns the status of payment. Check the example shown below or refer `
4615
4801
 
4616
4802
  | Properties | Type | Nullable | Description |
4617
4803
  | ---------- | ---- | -------- | ----------- |
4618
- | message | string | yes | Message |
4619
- | status_code | number | yes | HTTP status code |
4620
- | success | boolean | yes | Successful or failure |
4621
4804
  | error | [ErrorDescription](#ErrorDescription) | no | |
4805
+ | success | boolean | yes | Successful or failure |
4806
+ | status_code | number | yes | HTTP status code |
4807
+ | message | string | yes | Message |
4622
4808
 
4623
4809
  ---
4624
4810
 
@@ -4629,11 +4815,11 @@ Success. Returns the status of payment. Check the example shown below or refer `
4629
4815
 
4630
4816
  | Properties | Type | Nullable | Description |
4631
4817
  | ---------- | ---- | -------- | ----------- |
4632
- | cart_id | string | yes | |
4633
- | amount | string | yes | |
4634
4818
  | checkout_mode | string | yes | |
4819
+ | cart_id | string | yes | |
4635
4820
  | assign_card_id | string | no | |
4636
4821
  | pincode | string | yes | |
4822
+ | amount | string | yes | |
4637
4823
 
4638
4824
  ---
4639
4825
 
@@ -4644,12 +4830,12 @@ Success. Returns the status of payment. Check the example shown below or refer `
4644
4830
 
4645
4831
  | Properties | Type | Nullable | Description |
4646
4832
  | ---------- | ---- | -------- | ----------- |
4647
- | amount | number | yes | Total value of order |
4648
4833
  | description | string | no | Merchant order id |
4649
- | mobile_number | string | yes | Mobile number to which the payment link is to be sent |
4650
- | external_order_id | string | yes | Merchant order id |
4651
4834
  | email | string | yes | Email to which the payment link is to be sent |
4652
4835
  | meta | [CreatePaymentLinkMeta](#CreatePaymentLinkMeta) | yes | Meta |
4836
+ | mobile_number | string | yes | Mobile number to which the payment link is to be sent |
4837
+ | external_order_id | string | yes | Merchant order id |
4838
+ | amount | number | yes | Total value of order |
4653
4839
 
4654
4840
  ---
4655
4841
 
@@ -4660,12 +4846,12 @@ Success. Returns the status of payment. Check the example shown below or refer `
4660
4846
 
4661
4847
  | Properties | Type | Nullable | Description |
4662
4848
  | ---------- | ---- | -------- | ----------- |
4663
- | payment_link_url | string | no | Url of payment link |
4849
+ | success | boolean | yes | Successful or failure |
4664
4850
  | payment_link_id | string | no | Unique id of payment link |
4665
4851
  | message | string | yes | Message |
4666
- | polling_timeout | number | no | Polling request timeout |
4667
4852
  | status_code | number | yes | HTTP status code |
4668
- | success | boolean | yes | Successful or failure |
4853
+ | polling_timeout | number | no | Polling request timeout |
4854
+ | payment_link_url | string | no | Url of payment link |
4669
4855
 
4670
4856
  ---
4671
4857
 
@@ -4687,10 +4873,10 @@ Success. Returns the status of payment. Check the example shown below or refer `
4687
4873
 
4688
4874
  | Properties | Type | Nullable | Description |
4689
4875
  | ---------- | ---- | -------- | ----------- |
4690
- | message | string | yes | Message |
4691
- | status_code | number | yes | HTTP status code |
4692
- | success | boolean | yes | Successful or failure |
4693
4876
  | polling_timeout | number | no | Polling request timeout |
4877
+ | success | boolean | yes | Successful or failure |
4878
+ | status_code | number | yes | HTTP status code |
4879
+ | message | string | yes | Message |
4694
4880
 
4695
4881
  ---
4696
4882
 
@@ -4701,9 +4887,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
4701
4887
 
4702
4888
  | Properties | Type | Nullable | Description |
4703
4889
  | ---------- | ---- | -------- | ----------- |
4704
- | message | string | yes | Message |
4705
- | status_code | number | yes | HTTP status code |
4706
4890
  | success | boolean | yes | Successful or failure |
4891
+ | status_code | number | yes | HTTP status code |
4892
+ | message | string | yes | Message |
4707
4893
 
4708
4894
  ---
4709
4895
 
@@ -4714,16 +4900,16 @@ Success. Returns the status of payment. Check the example shown below or refer `
4714
4900
 
4715
4901
  | Properties | Type | Nullable | Description |
4716
4902
  | ---------- | ---- | -------- | ----------- |
4717
- | order_id | string | no | Fynd order id |
4718
- | amount | number | no | Amount |
4903
+ | http_status | number | no | HTTP status code |
4904
+ | success | boolean | no | Successful or failure |
4719
4905
  | redirect_url | string | no | Url to redirect to |
4720
- | payment_link_id | string | no | Payment link id |
4721
4906
  | status | string | no | Status of payment link |
4907
+ | payment_link_id | string | no | Payment link id |
4908
+ | order_id | string | no | Fynd order id |
4722
4909
  | message | string | no | Message |
4723
- | aggregator_name | string | no | Aggregator name |
4724
4910
  | status_code | number | no | HTTP status code |
4725
- | success | boolean | no | Successful or failure |
4726
- | http_status | number | no | HTTP status code |
4911
+ | aggregator_name | string | no | Aggregator name |
4912
+ | amount | number | no | Amount |
4727
4913
 
4728
4914
  ---
4729
4915
 
@@ -4734,9 +4920,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
4734
4920
 
4735
4921
  | Properties | Type | Nullable | Description |
4736
4922
  | ---------- | ---- | -------- | ----------- |
4923
+ | payment_identifier | string | yes | Payment identifier |
4737
4924
  | payment_gateway | string | yes | Payment gateway name |
4738
4925
  | merchant_code | string | yes | Merchant code |
4739
- | payment_identifier | string | yes | Payment identifier |
4740
4926
 
4741
4927
  ---
4742
4928
 
@@ -4747,8 +4933,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
4747
4933
 
4748
4934
  | Properties | Type | Nullable | Description |
4749
4935
  | ---------- | ---- | -------- | ----------- |
4750
- | mode | string | yes | Payment mode |
4751
4936
  | name | string | yes | Payment mode name |
4937
+ | mode | string | yes | Payment mode |
4752
4938
  | meta | [PaymentMethodsMeta](#PaymentMethodsMeta) | yes | Meta |
4753
4939
 
4754
4940
  ---
@@ -4761,11 +4947,11 @@ Success. Returns the status of payment. Check the example shown below or refer `
4761
4947
  | Properties | Type | Nullable | Description |
4762
4948
  | ---------- | ---- | -------- | ----------- |
4763
4949
  | currency | string | yes | Currency |
4764
- | payment_link_id | string | yes | Unique id of payment link |
4765
4950
  | failure_callback_url | string | yes | Failure page url |
4766
4951
  | payment_methods | [CreateOrderUserPaymentMethods](#CreateOrderUserPaymentMethods) | yes | Payment method details |
4767
- | success_callback_url | string | yes | Success page url |
4952
+ | payment_link_id | string | yes | Unique id of payment link |
4768
4953
  | meta | string | no | Meta |
4954
+ | success_callback_url | string | yes | Success page url |
4769
4955
 
4770
4956
  ---
4771
4957
 
@@ -4776,16 +4962,16 @@ Success. Returns the status of payment. Check the example shown below or refer `
4776
4962
 
4777
4963
  | Properties | Type | Nullable | Description |
4778
4964
  | ---------- | ---- | -------- | ----------- |
4965
+ | currency | string | no | Currency |
4966
+ | email | string | no | Email |
4967
+ | callback_url | string | no | Callback url for aggregator |
4779
4968
  | order_id | string | no | Aggregator order id |
4780
- | contact | string | no | Mobile number |
4781
4969
  | customer_id | string | no | Aggregator customer id |
4782
- | amount | number | no | Amount |
4783
- | method | string | no | Method |
4970
+ | contact | string | no | Mobile number |
4784
4971
  | aggregator | string | no | Aggregator name |
4785
- | currency | string | no | Currency |
4786
- | email | string | no | Email |
4787
4972
  | merchant_order_id | string | no | Merchant order id |
4788
- | callback_url | string | no | Callback url for aggregator |
4973
+ | amount | number | no | Amount |
4974
+ | method | string | no | Method |
4789
4975
 
4790
4976
  ---
4791
4977
 
@@ -4796,13 +4982,13 @@ Success. Returns the status of payment. Check the example shown below or refer `
4796
4982
 
4797
4983
  | Properties | Type | Nullable | Description |
4798
4984
  | ---------- | ---- | -------- | ----------- |
4799
- | order_id | string | no | Merchant order id |
4800
4985
  | data | [CreateOrderUserData](#CreateOrderUserData) | no | |
4986
+ | success | boolean | yes | Successful or failure |
4987
+ | callback_url | string | no | Callback url for aggregator |
4988
+ | order_id | string | no | Merchant order id |
4801
4989
  | message | string | yes | Message |
4802
4990
  | status_code | number | yes | HTTP status code |
4803
4991
  | payment_confirm_url | string | no | Payment confirm url for aggregator |
4804
- | callback_url | string | no | Callback url for aggregator |
4805
- | success | boolean | yes | Successful or failure |
4806
4992
 
4807
4993
  ---
4808
4994
 
@@ -4813,8 +4999,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
4813
4999
 
4814
5000
  | Properties | Type | Nullable | Description |
4815
5001
  | ---------- | ---- | -------- | ----------- |
4816
- | formatted_value | string | yes | Formated Amount with currency symbol |
4817
5002
  | value | number | yes | Payment amount |
5003
+ | formatted_value | string | yes | Formated Amount with currency symbol |
4818
5004
  | currency | string | yes | Currency Code |
4819
5005
 
4820
5006
  ---
@@ -4827,9 +5013,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
4827
5013
  | Properties | Type | Nullable | Description |
4828
5014
  | ---------- | ---- | -------- | ----------- |
4829
5015
  | status | string | yes | Customer Credit status |
4830
- | merchant_customer_ref_id | string | yes | Unique aggregator customer id |
4831
5016
  | status_message | string | yes | message to customer |
4832
5017
  | balance | [BalanceDetails](#BalanceDetails) | no | Credit summary of user. |
5018
+ | merchant_customer_ref_id | string | yes | Unique aggregator customer id |
4833
5019
 
4834
5020
  ---
4835
5021
 
@@ -4877,8 +5063,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
4877
5063
  | Properties | Type | Nullable | Description |
4878
5064
  | ---------- | ---- | -------- | ----------- |
4879
5065
  | status | boolean | yes | Operation is successful or not. |
4880
- | signup_url | string | yes | URL to which the user may redirect. |
4881
5066
  | is_registered | boolean | yes | User is registered with aggregator or not. |
5067
+ | signup_url | string | yes | URL to which the user may redirect. |
4882
5068
 
4883
5069
  ---
4884
5070
 
@@ -4897,55 +5083,47 @@ Success. Returns the status of payment. Check the example shown below or refer `
4897
5083
 
4898
5084
 
4899
5085
 
4900
- #### [DeviceDetails](#DeviceDetails)
5086
+ #### [MarketplaceInfo](#MarketplaceInfo)
4901
5087
 
4902
5088
  | Properties | Type | Nullable | Description |
4903
5089
  | ---------- | ---- | -------- | ----------- |
4904
- | identification_number | string | no | IP |
4905
- | identifier_type | string | no | Static value = ip |
4906
- | os_version | string | no | OS Version |
4907
- | os | string | no | OS Name |
4908
- | device_type | string | no | Device Type(E.g. Mobile) |
4909
- | device_model | string | no | Device Model |
4910
- | device_make | string | no | Device maker |
5090
+ | name | string | yes | Name of store |
5091
+ | membership_id | string | yes | merchant id |
5092
+ | date_of_joining | string | no | Date of joining |
4911
5093
 
4912
5094
  ---
4913
5095
 
4914
5096
 
4915
5097
 
4916
5098
 
4917
- #### [KYCAddress](#KYCAddress)
5099
+ #### [DeviceDetails](#DeviceDetails)
4918
5100
 
4919
5101
  | Properties | Type | Nullable | Description |
4920
5102
  | ---------- | ---- | -------- | ----------- |
4921
- | addressline2 | string | no | Address Line 2 |
4922
- | state | string | yes | State |
4923
- | addressline1 | string | yes | Address Line 1 |
4924
- | ownership_type | string | no | Address Owner Type |
4925
- | land_mark | string | no | Land Mark |
4926
- | city | string | yes | City |
4927
- | pincode | string | yes | Pincode |
5103
+ | device_make | string | no | Device maker |
5104
+ | identification_number | string | no | IP |
5105
+ | device_type | string | no | Device Type(E.g. Mobile) |
5106
+ | os_version | string | no | OS Version |
5107
+ | device_model | string | no | Device Model |
5108
+ | identifier_type | string | no | Static value = ip |
5109
+ | os | string | no | OS Name |
4928
5110
 
4929
5111
  ---
4930
5112
 
4931
5113
 
4932
5114
 
4933
5115
 
4934
- #### [BusinessDetails](#BusinessDetails)
5116
+ #### [KYCAddress](#KYCAddress)
4935
5117
 
4936
5118
  | Properties | Type | Nullable | Description |
4937
5119
  | ---------- | ---- | -------- | ----------- |
4938
- | shop_and_establishment | string | no | Shop Establishment |
4939
- | vintage | string | no | Vintage |
4940
- | business_ownership_type | string | no | business Ownershipp type(e.g Rented) |
4941
- | business_type | string | no | Business Type |
4942
- | entity_type | string | no | Busineess Entity Type |
4943
- | gstin | string | no | GSTIN Number |
4944
- | fda | string | no | Driver License |
4945
- | pan | string | no | Pan Number |
4946
- | fssai | string | no | FDA License Number |
4947
- | name | string | no | Business Name |
4948
- | address | [KYCAddress](#KYCAddress) | no | Address details |
5120
+ | addressline2 | string | no | Address Line 2 |
5121
+ | city | string | yes | City |
5122
+ | addressline1 | string | yes | Address Line 1 |
5123
+ | land_mark | string | no | Land Mark |
5124
+ | ownership_type | string | no | Address Owner Type |
5125
+ | state | string | yes | State |
5126
+ | pincode | string | yes | Pincode |
4949
5127
 
4950
5128
  ---
4951
5129
 
@@ -4956,35 +5134,43 @@ Success. Returns the status of payment. Check the example shown below or refer `
4956
5134
 
4957
5135
  | Properties | Type | Nullable | Description |
4958
5136
  | ---------- | ---- | -------- | ----------- |
4959
- | dob | string | yes | DOB |
4960
5137
  | email_verified | boolean | yes | Is Email Verified or not |
4961
- | driving_license | string | no | Driver License |
4962
- | fathers_name | string | no | Father's Name |
4963
- | first_name | string | yes | First Name |
4964
- | passport | string | no | Passport |
4965
- | phone | string | yes | Email |
4966
5138
  | address_as_per_id | [KYCAddress](#KYCAddress) | yes | Address details |
4967
- | mothers_name | string | no | Mother's Name |
4968
- | gender | string | no | Gender |
4969
5139
  | email | string | no | Email |
4970
- | last_name | string | no | Last Name |
4971
5140
  | voter_id | string | no | Voter ID Number |
4972
- | pan | string | no | Pan Number |
4973
- | mobile_verified | boolean | yes | Is Mobile Verified or not |
5141
+ | last_name | string | no | Last Name |
5142
+ | phone | string | yes | Email |
5143
+ | dob | string | yes | DOB |
5144
+ | fathers_name | string | no | Father's Name |
4974
5145
  | middle_name | string | no | middle Name |
5146
+ | mobile_verified | boolean | yes | Is Mobile Verified or not |
5147
+ | first_name | string | yes | First Name |
5148
+ | driving_license | string | no | Driver License |
5149
+ | gender | string | no | Gender |
5150
+ | pan | string | no | Pan Number |
5151
+ | passport | string | no | Passport |
5152
+ | mothers_name | string | no | Mother's Name |
4975
5153
 
4976
5154
  ---
4977
5155
 
4978
5156
 
4979
5157
 
4980
5158
 
4981
- #### [MarketplaceInfo](#MarketplaceInfo)
5159
+ #### [BusinessDetails](#BusinessDetails)
4982
5160
 
4983
5161
  | Properties | Type | Nullable | Description |
4984
5162
  | ---------- | ---- | -------- | ----------- |
4985
- | membership_id | string | yes | merchant id |
4986
- | name | string | yes | Name of store |
4987
- | date_of_joining | string | no | Date of joining |
5163
+ | fda | string | no | Driver License |
5164
+ | fssai | string | no | FDA License Number |
5165
+ | vintage | string | no | Vintage |
5166
+ | business_type | string | no | Business Type |
5167
+ | shop_and_establishment | string | no | Shop Establishment |
5168
+ | entity_type | string | no | Busineess Entity Type |
5169
+ | address | [KYCAddress](#KYCAddress) | no | Address details |
5170
+ | name | string | no | Business Name |
5171
+ | business_ownership_type | string | no | business Ownershipp type(e.g Rented) |
5172
+ | gstin | string | no | GSTIN Number |
5173
+ | pan | string | no | Pan Number |
4988
5174
 
4989
5175
  ---
4990
5176
 
@@ -4995,13 +5181,13 @@ Success. Returns the status of payment. Check the example shown below or refer `
4995
5181
 
4996
5182
  | Properties | Type | Nullable | Description |
4997
5183
  | ---------- | ---- | -------- | ----------- |
5184
+ | mcc | string | no | Mcc |
5185
+ | marketplace_info | [MarketplaceInfo](#MarketplaceInfo) | no | Market Place info. |
5186
+ | source | string | yes | callbackURL |
4998
5187
  | device | [DeviceDetails](#DeviceDetails) | no | Device Details. |
5188
+ | personal_info | [UserPersonalInfoInDetails](#UserPersonalInfoInDetails) | yes | Credit summary of user. |
4999
5189
  | aggregator | string | yes | Aggregator Name |
5000
- | source | string | yes | callbackURL |
5001
- | mcc | string | no | Mcc |
5002
5190
  | business_info | [BusinessDetails](#BusinessDetails) | no | Business summary. |
5003
- | personal_info | [UserPersonalInfoInDetails](#UserPersonalInfoInDetails) | yes | Credit summary of user. |
5004
- | marketplace_info | [MarketplaceInfo](#MarketplaceInfo) | no | Market Place info. |
5005
5191
 
5006
5192
  ---
5007
5193