@gofynd/fdk-client-javascript 1.0.0 → 1.0.2
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.
- package/documentation/application/CART.md +251 -251
- package/documentation/application/CATALOG.md +393 -393
- package/documentation/application/CONTENT.md +15 -1
- package/documentation/application/ORDER.md +268 -268
- package/documentation/application/PAYMENT.md +249 -249
- package/documentation/application/POSCART.md +297 -297
- package/documentation/platform/CART.md +499 -499
- package/documentation/platform/CATALOG.md +3497 -3097
- package/documentation/platform/COMPANYPROFILE.md +207 -207
- package/documentation/platform/CONTENT.md +123 -1
- package/documentation/platform/ORDER.md +1518 -1324
- package/documentation/platform/PARTNER.md +7 -7
- package/documentation/platform/PAYMENT.md +96 -96
- package/index.js +7 -1
- package/package.json +1 -1
- package/sdk/application/ApplicationConfig.js +1 -1
- package/sdk/application/Cart/CartApplicationClient.js +865 -52
- package/sdk/application/Cart/CartApplicationModel.d.ts +7 -7
- package/sdk/application/Cart/CartApplicationModel.js +335 -335
- package/sdk/application/Cart/CartApplicationValidator.js +1 -0
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +1 -1
- package/sdk/application/Catalog/CatalogApplicationClient.js +1034 -60
- package/sdk/application/Catalog/CatalogApplicationModel.d.ts +19 -19
- package/sdk/application/Catalog/CatalogApplicationModel.js +532 -532
- package/sdk/application/Catalog/CatalogApplicationValidator.js +1 -0
- package/sdk/application/Common/CommonApplicationClient.js +66 -4
- package/sdk/application/Common/CommonApplicationValidator.js +1 -0
- package/sdk/application/Communication/CommunicationApplicationClient.js +108 -6
- package/sdk/application/Communication/CommunicationApplicationValidator.js +1 -0
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +1 -1
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +558 -32
- package/sdk/application/Configuration/ConfigurationApplicationValidator.js +1 -0
- package/sdk/application/Content/ContentApplicationClient.js +621 -38
- package/sdk/application/Content/ContentApplicationModel.d.ts +1 -0
- package/sdk/application/Content/ContentApplicationModel.js +11 -1
- package/sdk/application/Content/ContentApplicationValidator.js +1 -0
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +101 -6
- package/sdk/application/FileStorage/FileStorageApplicationValidator.js +1 -0
- package/sdk/application/Lead/LeadApplicationClient.js +229 -14
- package/sdk/application/Lead/LeadApplicationValidator.js +1 -0
- package/sdk/application/Logistic/LogisticApplicationClient.js +134 -8
- package/sdk/application/Logistic/LogisticApplicationValidator.js +1 -0
- package/sdk/application/Order/OrderApplicationClient.d.ts +1 -1
- package/sdk/application/Order/OrderApplicationClient.js +403 -24
- package/sdk/application/Order/OrderApplicationModel.d.ts +20 -20
- package/sdk/application/Order/OrderApplicationModel.js +334 -334
- package/sdk/application/Order/OrderApplicationValidator.js +1 -0
- package/sdk/application/Payment/PaymentApplicationClient.js +1381 -78
- package/sdk/application/Payment/PaymentApplicationModel.d.ts +2 -2
- package/sdk/application/Payment/PaymentApplicationModel.js +350 -350
- package/sdk/application/Payment/PaymentApplicationValidator.js +1 -0
- package/sdk/application/PosCart/PosCartApplicationClient.js +914 -54
- package/sdk/application/PosCart/PosCartApplicationModel.d.ts +15 -15
- package/sdk/application/PosCart/PosCartApplicationModel.js +389 -389
- package/sdk/application/PosCart/PosCartApplicationValidator.js +1 -0
- package/sdk/application/Rewards/RewardsApplicationClient.js +235 -14
- package/sdk/application/Rewards/RewardsApplicationValidator.js +1 -0
- package/sdk/application/Share/ShareApplicationClient.js +226 -14
- package/sdk/application/Share/ShareApplicationValidator.js +1 -0
- package/sdk/application/Theme/ThemeApplicationClient.js +130 -8
- package/sdk/application/Theme/ThemeApplicationValidator.js +1 -0
- package/sdk/application/User/UserApplicationClient.js +1133 -70
- package/sdk/application/User/UserApplicationValidator.js +1 -0
- package/sdk/common/AxiosHelper.js +1 -1
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +16 -8
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +287 -16
- package/sdk/platform/Analytics/AnalyticsPlatformClient.d.ts +8 -4
- package/sdk/platform/Analytics/AnalyticsPlatformClient.js +153 -8
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +8 -4
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +141 -8
- package/sdk/platform/Billing/BillingPlatformClient.d.ts +24 -12
- package/sdk/platform/Billing/BillingPlatformClient.js +429 -24
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +34 -17
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +617 -34
- package/sdk/platform/Cart/CartPlatformModel.d.ts +35 -35
- package/sdk/platform/Cart/CartPlatformModel.js +617 -617
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +191 -138
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +2202 -302
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +11 -11
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +45 -45
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +344 -226
- package/sdk/platform/Catalog/CatalogPlatformClient.js +3282 -488
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +110 -100
- package/sdk/platform/Catalog/CatalogPlatformModel.js +2073 -1795
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +23 -21
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +103 -84
- package/sdk/platform/Common/CommonPlatformClient.d.ts +4 -2
- package/sdk/platform/Common/CommonPlatformClient.js +73 -4
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +80 -40
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +1499 -80
- package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +2 -1
- package/sdk/platform/Communication/CommunicationPlatformClient.js +41 -2
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +27 -14
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +486 -26
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +9 -9
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +274 -274
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +56 -28
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +1022 -56
- package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +36 -18
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +693 -36
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +148 -67
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +2446 -140
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +1 -0
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +7 -0
- package/sdk/platform/Content/ContentPlatformModel.d.ts +4 -0
- package/sdk/platform/Content/ContentPlatformModel.js +43 -1
- package/sdk/platform/Discount/DiscountPlatformClient.d.ts +21 -10
- package/sdk/platform/Discount/DiscountPlatformClient.js +400 -22
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +8 -4
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +148 -8
- package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +12 -6
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +214 -12
- package/sdk/platform/Inventory/InventoryPlatformClient.d.ts +27 -14
- package/sdk/platform/Inventory/InventoryPlatformClient.js +449 -24
- package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +26 -13
- package/sdk/platform/Lead/LeadPlatformApplicationClient.js +447 -26
- package/sdk/platform/Lead/LeadPlatformClient.d.ts +22 -11
- package/sdk/platform/Lead/LeadPlatformClient.js +384 -22
- package/sdk/platform/OAuthClient.js +8 -8
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +6 -3
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +125 -6
- package/sdk/platform/Order/OrderPlatformClient.d.ts +108 -47
- package/sdk/platform/Order/OrderPlatformClient.js +1641 -100
- package/sdk/platform/Order/OrderPlatformModel.d.ts +69 -58
- package/sdk/platform/Order/OrderPlatformModel.js +1485 -1493
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +2 -1
- package/sdk/platform/Order/OrderPlatformValidator.js +15 -4
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +4 -2
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +74 -4
- package/sdk/platform/Partner/PartnerPlatformModel.d.ts +1 -1
- package/sdk/platform/Partner/PartnerPlatformModel.js +8 -8
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +22 -11
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +418 -22
- package/sdk/platform/Payment/PaymentPlatformClient.d.ts +21 -11
- package/sdk/platform/Payment/PaymentPlatformClient.js +374 -20
- package/sdk/platform/Payment/PaymentPlatformModel.js +139 -139
- package/sdk/platform/PlatformApplicationClient.d.ts +2973 -2827
- package/sdk/platform/PlatformApplicationClient.js +3461 -3263
- package/sdk/platform/PlatformClient.d.ts +2973 -2827
- package/sdk/platform/PlatformClient.js +3461 -3263
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +26 -13
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +449 -26
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +8 -4
- package/sdk/platform/Share/SharePlatformApplicationClient.js +139 -8
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +47 -23
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +816 -48
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +24 -12
- package/sdk/platform/User/UserPlatformApplicationClient.js +417 -24
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +12 -6
- package/sdk/platform/Webhook/WebhookPlatformClient.js +229 -12
- package/sdk/public/Configuration/ConfigurationPublicClient.js +72 -4
- package/sdk/public/Configuration/ConfigurationPublicValidator.js +3 -1
- package/sdk/public/Inventory/InventoryPublicClient.js +210 -12
- package/sdk/public/Inventory/InventoryPublicValidator.js +3 -1
- package/sdk/public/Webhook/WebhookPublicClient.js +74 -4
- package/sdk/public/Webhook/WebhookPublicValidator.js +3 -1
|
@@ -3824,16 +3824,16 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
3824
3824
|
|
|
3825
3825
|
| Properties | Type | Nullable | Description |
|
|
3826
3826
|
| ---------- | ---- | -------- | ----------- |
|
|
3827
|
-
| config_type | string | yes | Fynd or self payment gateway |
|
|
3828
|
-
| key | string | yes | Payment gateway api key |
|
|
3829
|
-
| verify_api | string | no | Payment gateway verify payment api endpoint |
|
|
3830
|
-
| pin | string | no | Masked pin |
|
|
3831
3827
|
| secret | string | yes | Masked payment gateway api secret |
|
|
3832
|
-
|
|
|
3833
|
-
| user_id | string | no | Registered User id |
|
|
3828
|
+
| pin | string | no | Masked pin |
|
|
3834
3829
|
| sdk | boolean | no | SDK |
|
|
3830
|
+
| verify_api | string | no | Payment gateway verify payment api endpoint |
|
|
3831
|
+
| config_type | string | yes | Fynd or self payment gateway |
|
|
3832
|
+
| user_id | string | no | Registered User id |
|
|
3833
|
+
| merchant_id | string | no | Unique merchant id |
|
|
3835
3834
|
| api | string | no | Payment gateway api endpoint |
|
|
3836
3835
|
| merchant_key | string | no | Unique merchant key |
|
|
3836
|
+
| key | string | yes | Payment gateway api key |
|
|
3837
3837
|
|
|
3838
3838
|
---
|
|
3839
3839
|
|
|
@@ -3844,16 +3844,16 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
3844
3844
|
|
|
3845
3845
|
| Properties | Type | Nullable | Description |
|
|
3846
3846
|
| ---------- | ---- | -------- | ----------- |
|
|
3847
|
-
|
|
|
3848
|
-
| ccavenue | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
|
|
3849
|
-
| juspay | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
|
|
3847
|
+
| stripe | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
|
|
3850
3848
|
| mswipe | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
|
|
3849
|
+
| ccavenue | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
|
|
3850
|
+
| rupifi | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
|
|
3851
3851
|
| razorpay | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
|
|
3852
|
-
| simpl | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
|
|
3853
3852
|
| payumoney | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
|
|
3854
|
-
|
|
|
3853
|
+
| juspay | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
|
|
3854
|
+
| simpl | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
|
|
3855
3855
|
| success | boolean | yes | |
|
|
3856
|
-
|
|
|
3856
|
+
| env | string | yes | Environment i.e Live or Test |
|
|
3857
3857
|
|
|
3858
3858
|
---
|
|
3859
3859
|
|
|
@@ -3864,8 +3864,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
3864
3864
|
|
|
3865
3865
|
| Properties | Type | Nullable | Description |
|
|
3866
3866
|
| ---------- | ---- | -------- | ----------- |
|
|
3867
|
-
| code | string | yes | Error descrption code. |
|
|
3868
3867
|
| description | string | yes | Error human understandable description. |
|
|
3868
|
+
| code | string | yes | Error descrption code. |
|
|
3869
3869
|
|
|
3870
3870
|
---
|
|
3871
3871
|
|
|
@@ -3876,8 +3876,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
3876
3876
|
|
|
3877
3877
|
| Properties | Type | Nullable | Description |
|
|
3878
3878
|
| ---------- | ---- | -------- | ----------- |
|
|
3879
|
-
| success | boolean | yes | Response is successful or not |
|
|
3880
3879
|
| error | [ErrorCodeAndDescription](#ErrorCodeAndDescription) | yes | |
|
|
3880
|
+
| success | boolean | yes | Response is successful or not |
|
|
3881
3881
|
|
|
3882
3882
|
---
|
|
3883
3883
|
|
|
@@ -3888,10 +3888,10 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
3888
3888
|
|
|
3889
3889
|
| Properties | Type | Nullable | Description |
|
|
3890
3890
|
| ---------- | ---- | -------- | ----------- |
|
|
3891
|
-
| card_id | string | yes | Card token of payment gateway. |
|
|
3892
3891
|
| nickname | string | no | |
|
|
3893
|
-
|
|
|
3892
|
+
| card_id | string | yes | Card token of payment gateway. |
|
|
3894
3893
|
| refresh | boolean | no | Refresh cache flag. |
|
|
3894
|
+
| name_on_card | string | no | |
|
|
3895
3895
|
|
|
3896
3896
|
---
|
|
3897
3897
|
|
|
@@ -3916,8 +3916,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
3916
3916
|
| Properties | Type | Nullable | Description |
|
|
3917
3917
|
| ---------- | ---- | -------- | ----------- |
|
|
3918
3918
|
| customer_id | string | no | Payment gateway customer id. |
|
|
3919
|
-
| aggregator | string | yes | Payment gateway name. |
|
|
3920
3919
|
| api | string | no | Payment gateway CARD api endpoint |
|
|
3920
|
+
| aggregator | string | yes | Payment gateway name. |
|
|
3921
3921
|
|
|
3922
3922
|
---
|
|
3923
3923
|
|
|
@@ -3941,23 +3941,23 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
3941
3941
|
|
|
3942
3942
|
| Properties | Type | Nullable | Description |
|
|
3943
3943
|
| ---------- | ---- | -------- | ----------- |
|
|
3944
|
-
|
|
|
3944
|
+
| expired | boolean | no | expired |
|
|
3945
|
+
| card_brand_image | string | no | card_brand_image |
|
|
3946
|
+
| compliant_with_tokenisation_guidelines | boolean | no | If card is tokenised or not |
|
|
3947
|
+
| card_number | string | no | card_number |
|
|
3945
3948
|
| card_fingerprint | string | no | card_fingerprint |
|
|
3946
|
-
| card_isin | string | no | card_isin |
|
|
3947
3949
|
| card_brand | string | no | card_brand |
|
|
3948
|
-
|
|
|
3950
|
+
| card_token | string | no | card_token |
|
|
3949
3951
|
| exp_year | number | no | exp_year |
|
|
3950
|
-
|
|
|
3952
|
+
| card_isin | string | no | card_isin |
|
|
3953
|
+
| card_id | string | no | card_id |
|
|
3951
3954
|
| card_issuer | string | no | card_issuer |
|
|
3955
|
+
| card_type | string | no | card_type |
|
|
3956
|
+
| card_reference | string | no | card_reference |
|
|
3952
3957
|
| nickname | string | no | nickname |
|
|
3953
|
-
| card_token | string | no | card_token |
|
|
3954
|
-
| card_name | string | no | card_name |
|
|
3955
|
-
| expired | boolean | no | expired |
|
|
3956
3958
|
| exp_month | number | no | exp_month |
|
|
3957
|
-
|
|
|
3958
|
-
|
|
|
3959
|
-
| card_id | string | no | card_id |
|
|
3960
|
-
| card_type | string | no | card_type |
|
|
3959
|
+
| aggregator_name | string | yes | aggregator_name |
|
|
3960
|
+
| card_name | string | no | card_name |
|
|
3961
3961
|
|
|
3962
3962
|
---
|
|
3963
3963
|
|
|
@@ -4005,13 +4005,13 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4005
4005
|
| Properties | Type | Nullable | Description |
|
|
4006
4006
|
| ---------- | ---- | -------- | ----------- |
|
|
4007
4007
|
| merchant_params | string | no | Extra meta fields. |
|
|
4008
|
-
|
|
|
4009
|
-
| phone_number | string | yes | User mobile number without country code. |
|
|
4010
|
-
| aggregator | string | yes | Payment gateway name in camel case i.e Simpl, Rupifi |
|
|
4011
|
-
| billing_address | string | no | Extra meta fields. |
|
|
4008
|
+
| delivery_address | string | no | Extra meta fields. |
|
|
4012
4009
|
| payload | string | no | Hashed payload string. |
|
|
4010
|
+
| billing_address | string | no | Extra meta fields. |
|
|
4013
4011
|
| order_items | [string] | no | Extra meta fields. |
|
|
4014
|
-
|
|
|
4012
|
+
| phone_number | string | yes | User mobile number without country code. |
|
|
4013
|
+
| transaction_amount_in_paise | number | yes | Payable amount in paise |
|
|
4014
|
+
| aggregator | string | yes | Payment gateway name in camel case i.e Simpl, Rupifi |
|
|
4015
4015
|
|
|
4016
4016
|
---
|
|
4017
4017
|
|
|
@@ -4035,11 +4035,11 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4035
4035
|
|
|
4036
4036
|
| Properties | Type | Nullable | Description |
|
|
4037
4037
|
| ---------- | ---- | -------- | ----------- |
|
|
4038
|
-
| transaction_token | string | no | Transaction token of payment gateway. |
|
|
4039
|
-
| aggregator | string | yes | Payment gateway name i.e Simpl, Mswipe |
|
|
4040
4038
|
| order_id | string | yes | Unique order id. |
|
|
4041
|
-
|
|
|
4039
|
+
| transaction_token | string | no | Transaction token of payment gateway. |
|
|
4042
4040
|
| amount | number | yes | Chargable amount of order. |
|
|
4041
|
+
| verified | boolean | no | Already Verified flag from payment gateway i.e Mswipe |
|
|
4042
|
+
| aggregator | string | yes | Payment gateway name i.e Simpl, Mswipe |
|
|
4043
4043
|
|
|
4044
4044
|
---
|
|
4045
4045
|
|
|
@@ -4050,13 +4050,13 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4050
4050
|
|
|
4051
4051
|
| Properties | Type | Nullable | Description |
|
|
4052
4052
|
| ---------- | ---- | -------- | ----------- |
|
|
4053
|
-
| aggregator | string | yes | Payment gateway name i.e Simpl, Mswipe |
|
|
4054
|
-
| order_id | string | yes | Unique order id. |
|
|
4055
|
-
| message | string | yes | Human readable message. |
|
|
4056
4053
|
| cart_id | string | no | Cart id of customer |
|
|
4054
|
+
| status | string | yes | Status of charged payment. |
|
|
4055
|
+
| message | string | yes | Human readable message. |
|
|
4056
|
+
| order_id | string | yes | Unique order id. |
|
|
4057
4057
|
| delivery_address_id | string | no | Delivery adddress id of customer |
|
|
4058
4058
|
| success | boolean | yes | Response is successful or not. |
|
|
4059
|
-
|
|
|
4059
|
+
| aggregator | string | yes | Payment gateway name i.e Simpl, Mswipe |
|
|
4060
4060
|
|
|
4061
4061
|
---
|
|
4062
4062
|
|
|
@@ -4067,18 +4067,18 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4067
4067
|
|
|
4068
4068
|
| Properties | Type | Nullable | Description |
|
|
4069
4069
|
| ---------- | ---- | -------- | ----------- |
|
|
4070
|
-
|
|
|
4071
|
-
| vpa | string | no | Customer vpa address |
|
|
4072
|
-
| aggregator | string | yes | Payment gateway name |
|
|
4070
|
+
| method | string | yes | Payment method |
|
|
4073
4071
|
| merchant_order_id | string | yes | Unique fynd order id |
|
|
4074
4072
|
| order_id | string | yes | Payment gateway order id |
|
|
4075
|
-
| currency | string | yes | Currency code. |
|
|
4076
|
-
| timeout | number | no | Payment polling timeout if not recieved response |
|
|
4077
4073
|
| contact | string | yes | Customer valid mobile number |
|
|
4078
4074
|
| amount | number | yes | Payable amount. |
|
|
4079
4075
|
| customer_id | string | yes | Payment gateway customer id. |
|
|
4080
|
-
|
|
|
4076
|
+
| currency | string | yes | Currency code. |
|
|
4077
|
+
| vpa | string | no | Customer vpa address |
|
|
4078
|
+
| email | string | yes | Customer valid email |
|
|
4079
|
+
| timeout | number | no | Payment polling timeout if not recieved response |
|
|
4081
4080
|
| razorpay_payment_id | string | no | Payment gateway payment id |
|
|
4081
|
+
| aggregator | string | yes | Payment gateway name |
|
|
4082
4082
|
|
|
4083
4083
|
---
|
|
4084
4084
|
|
|
@@ -4089,22 +4089,22 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4089
4089
|
|
|
4090
4090
|
| Properties | Type | Nullable | Description |
|
|
4091
4091
|
| ---------- | ---- | -------- | ----------- |
|
|
4092
|
-
|
|
|
4093
|
-
|
|
|
4092
|
+
| bqr_image | string | no | Bharath qr image url. |
|
|
4093
|
+
| method | string | yes | Payment method |
|
|
4094
4094
|
| upi_poll_url | string | no | UPI poll url. |
|
|
4095
|
-
|
|
|
4096
|
-
|
|
|
4095
|
+
| status | string | no | Status of payment. |
|
|
4096
|
+
| polling_url | string | yes | Polling url. |
|
|
4097
|
+
| vpa | string | no | Customer vpa address |
|
|
4097
4098
|
| virtual_id | string | no | Payment virtual address. |
|
|
4098
|
-
|
|
|
4099
|
-
| timeout | number | no | timeout. |
|
|
4099
|
+
| aggregator | string | yes | Payment gateway name |
|
|
4100
4100
|
| amount | number | no | Payable amount. |
|
|
4101
4101
|
| aggregator_order_id | string | no | Payment order id |
|
|
4102
|
-
|
|
|
4102
|
+
| currency | string | no | Currency code. |
|
|
4103
4103
|
| customer_id | string | no | Payment gateway customer id. |
|
|
4104
|
+
| timeout | number | no | timeout. |
|
|
4105
|
+
| razorpay_payment_id | string | no | Payment id. |
|
|
4104
4106
|
| success | boolean | yes | Response is successful or not. |
|
|
4105
|
-
|
|
|
4106
|
-
| status | string | no | Status of payment. |
|
|
4107
|
-
| method | string | yes | Payment method |
|
|
4107
|
+
| merchant_order_id | string | yes | order id |
|
|
4108
4108
|
|
|
4109
4109
|
---
|
|
4110
4110
|
|
|
@@ -4115,17 +4115,17 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4115
4115
|
|
|
4116
4116
|
| Properties | Type | Nullable | Description |
|
|
4117
4117
|
| ---------- | ---- | -------- | ----------- |
|
|
4118
|
-
|
|
|
4119
|
-
|
|
|
4120
|
-
| aggregator | string | yes | Payment gateway name |
|
|
4118
|
+
| method | string | yes | Payment method |
|
|
4119
|
+
| status | string | yes | Status of payment. |
|
|
4121
4120
|
| merchant_order_id | string | yes | Unique fynd order id |
|
|
4122
4121
|
| order_id | string | yes | Payment gateway order id |
|
|
4123
|
-
| currency | string | yes | Currency code. |
|
|
4124
4122
|
| contact | string | yes | Customer valid mobile number |
|
|
4125
4123
|
| amount | number | yes | Payable amount. |
|
|
4126
4124
|
| customer_id | string | yes | Payment gateway customer id. |
|
|
4127
|
-
|
|
|
4128
|
-
|
|
|
4125
|
+
| currency | string | yes | Currency code. |
|
|
4126
|
+
| vpa | string | yes | Customer vpa address |
|
|
4127
|
+
| email | string | yes | Customer valid email |
|
|
4128
|
+
| aggregator | string | yes | Payment gateway name |
|
|
4129
4129
|
|
|
4130
4130
|
---
|
|
4131
4131
|
|
|
@@ -4136,48 +4136,11 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4136
4136
|
|
|
4137
4137
|
| Properties | Type | Nullable | Description |
|
|
4138
4138
|
| ---------- | ---- | -------- | ----------- |
|
|
4139
|
-
| retry | boolean | yes | Response is successful or not. |
|
|
4140
4139
|
| aggregator_name | string | yes | Payment gateway name |
|
|
4140
|
+
| status | string | yes | Payment status |
|
|
4141
|
+
| retry | boolean | yes | Response is successful or not. |
|
|
4141
4142
|
| redirect_url | string | no | Redirect url |
|
|
4142
4143
|
| success | boolean | no | Response is successful or not |
|
|
4143
|
-
| status | string | yes | Payment status |
|
|
4144
|
-
|
|
4145
|
-
---
|
|
4146
|
-
|
|
4147
|
-
|
|
4148
|
-
|
|
4149
|
-
|
|
4150
|
-
#### [AggregatorRoute](#AggregatorRoute)
|
|
4151
|
-
|
|
4152
|
-
| Properties | Type | Nullable | Description |
|
|
4153
|
-
| ---------- | ---- | -------- | ----------- |
|
|
4154
|
-
| payment_flow | string | no | payment_flow |
|
|
4155
|
-
| data | string | no | Data |
|
|
4156
|
-
| api_link | string | no | api_link |
|
|
4157
|
-
| payment_flow_data | string | no | payment_flow_data |
|
|
4158
|
-
|
|
4159
|
-
---
|
|
4160
|
-
|
|
4161
|
-
|
|
4162
|
-
|
|
4163
|
-
|
|
4164
|
-
#### [PaymentFlow](#PaymentFlow)
|
|
4165
|
-
|
|
4166
|
-
| Properties | Type | Nullable | Description |
|
|
4167
|
-
| ---------- | ---- | -------- | ----------- |
|
|
4168
|
-
| fynd | [AggregatorRoute](#AggregatorRoute) | no | Fynd |
|
|
4169
|
-
| bqr_razorpay | [AggregatorRoute](#AggregatorRoute) | no | BQR_Razorpay |
|
|
4170
|
-
| juspay | [AggregatorRoute](#AggregatorRoute) | no | Juspay |
|
|
4171
|
-
| ccavenue | [AggregatorRoute](#AggregatorRoute) | no | Ccavenue |
|
|
4172
|
-
| jiopay | [AggregatorRoute](#AggregatorRoute) | no | Jiopay |
|
|
4173
|
-
| mswipe | [AggregatorRoute](#AggregatorRoute) | no | mswipe |
|
|
4174
|
-
| upi_razorpay | [AggregatorRoute](#AggregatorRoute) | no | UPI_Razorpay |
|
|
4175
|
-
| razorpay | [AggregatorRoute](#AggregatorRoute) | no | Razorpay |
|
|
4176
|
-
| simpl | [AggregatorRoute](#AggregatorRoute) | no | simpl |
|
|
4177
|
-
| epaylater | [AggregatorRoute](#AggregatorRoute) | no | Epaylater |
|
|
4178
|
-
| stripe | [AggregatorRoute](#AggregatorRoute) | no | Stripe |
|
|
4179
|
-
| rupifi | [AggregatorRoute](#AggregatorRoute) | no | Rupifi |
|
|
4180
|
-
| payubiz | [AggregatorRoute](#AggregatorRoute) | no | Payubiz |
|
|
4181
4144
|
|
|
4182
4145
|
---
|
|
4183
4146
|
|
|
@@ -4200,10 +4163,10 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4200
4163
|
|
|
4201
4164
|
| Properties | Type | Nullable | Description |
|
|
4202
4165
|
| ---------- | ---- | -------- | ----------- |
|
|
4203
|
-
| code | string | no | code |
|
|
4204
|
-
| display_name | string | no | display_name |
|
|
4205
4166
|
| logos | [PaymentModeLogo](#PaymentModeLogo) | no | logos |
|
|
4206
4167
|
| package_name | string | no | package_name |
|
|
4168
|
+
| code | string | no | code |
|
|
4169
|
+
| display_name | string | no | display_name |
|
|
4207
4170
|
|
|
4208
4171
|
---
|
|
4209
4172
|
|
|
@@ -4214,8 +4177,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4214
4177
|
|
|
4215
4178
|
| Properties | Type | Nullable | Description |
|
|
4216
4179
|
| ---------- | ---- | -------- | ----------- |
|
|
4217
|
-
| code | string | no | code |
|
|
4218
4180
|
| package_name | string | no | package_name |
|
|
4181
|
+
| code | string | no | code |
|
|
4219
4182
|
|
|
4220
4183
|
---
|
|
4221
4184
|
|
|
@@ -4226,39 +4189,39 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4226
4189
|
|
|
4227
4190
|
| Properties | Type | Nullable | Description |
|
|
4228
4191
|
| ---------- | ---- | -------- | ----------- |
|
|
4229
|
-
|
|
|
4230
|
-
|
|
|
4231
|
-
| card_name | string | no | card_name |
|
|
4232
|
-
| expired | boolean | no | expired |
|
|
4233
|
-
| name | string | no | name |
|
|
4234
|
-
| exp_month | number | no | exp_month |
|
|
4235
|
-
| timeout | number | no | timeout |
|
|
4236
|
-
| card_brand | string | no | card_brand |
|
|
4237
|
-
| card_id | string | no | card_id |
|
|
4192
|
+
| code | string | no | code |
|
|
4193
|
+
| compliant_with_tokenisation_guidelines | boolean | no | If card is tokenised or not |
|
|
4238
4194
|
| intent_app | [[IntentApp](#IntentApp)] | no | intent_app |
|
|
4239
|
-
| intent_app_error_dict_list | [[IntentAppErrorList](#IntentAppErrorList)] | no | intent_app_error_dict_list |
|
|
4240
4195
|
| retry_count | number | no | retry_count |
|
|
4241
|
-
| exp_year | number | no | exp_year |
|
|
4242
|
-
| display_priority | number | no | Dispaly Priority |
|
|
4243
|
-
| card_token | string | no | card_token |
|
|
4244
4196
|
| fynd_vpa | string | no | fynd_vpa |
|
|
4245
|
-
| cod_limit_per_order | number | no | Cod limit per order |
|
|
4246
|
-
| cod_limit | number | no | cod limit |
|
|
4247
|
-
| card_type | string | no | card_type |
|
|
4248
4197
|
| display_name | string | no | display name |
|
|
4249
|
-
| card_reference | string | no | card_reference |
|
|
4250
|
-
| card_isin | string | no | card_isin |
|
|
4251
|
-
| compliant_with_tokenisation_guidelines | boolean | no | If card is tokenised or not |
|
|
4252
|
-
| card_brand_image | string | no | card_brand_image |
|
|
4253
|
-
| code | string | no | code |
|
|
4254
|
-
| card_fingerprint | string | no | card_fingerprint |
|
|
4255
|
-
| intent_flow | boolean | no | intent_flow |
|
|
4256
4198
|
| logo_url | [PaymentModeLogo](#PaymentModeLogo) | no | Logo |
|
|
4199
|
+
| card_type | string | no | card_type |
|
|
4200
|
+
| card_brand_image | string | no | card_brand_image |
|
|
4257
4201
|
| nickname | string | no | nickname |
|
|
4202
|
+
| aggregator_name | string | yes | aggregator_name |
|
|
4203
|
+
| intent_app_error_dict_list | [[IntentAppErrorList](#IntentAppErrorList)] | no | intent_app_error_dict_list |
|
|
4258
4204
|
| merchant_code | string | no | merchant code |
|
|
4205
|
+
| name | string | no | name |
|
|
4206
|
+
| card_issuer | string | no | card_issuer |
|
|
4207
|
+
| card_reference | string | no | card_reference |
|
|
4208
|
+
| timeout | number | no | timeout |
|
|
4209
|
+
| intent_app_error_list | [string] | no | intent_app_error_list |
|
|
4210
|
+
| card_token | string | no | card_token |
|
|
4211
|
+
| cod_limit | number | no | cod limit |
|
|
4259
4212
|
| remaining_limit | number | no | Remaining limit |
|
|
4213
|
+
| cod_limit_per_order | number | no | Cod limit per order |
|
|
4214
|
+
| card_name | string | no | card_name |
|
|
4215
|
+
| expired | boolean | no | expired |
|
|
4260
4216
|
| card_number | string | no | card_number |
|
|
4261
|
-
|
|
|
4217
|
+
| intent_flow | boolean | no | intent_flow |
|
|
4218
|
+
| card_fingerprint | string | no | card_fingerprint |
|
|
4219
|
+
| card_brand | string | no | card_brand |
|
|
4220
|
+
| exp_year | number | no | exp_year |
|
|
4221
|
+
| card_isin | string | no | card_isin |
|
|
4222
|
+
| card_id | string | no | card_id |
|
|
4223
|
+
| display_priority | number | no | Dispaly Priority |
|
|
4224
|
+
| exp_month | number | no | exp_month |
|
|
4262
4225
|
|
|
4263
4226
|
---
|
|
4264
4227
|
|
|
@@ -4269,15 +4232,52 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4269
4232
|
|
|
4270
4233
|
| Properties | Type | Nullable | Description |
|
|
4271
4234
|
| ---------- | ---- | -------- | ----------- |
|
|
4235
|
+
| list | [[PaymentModeList](#PaymentModeList)] | no | Payment mode |
|
|
4236
|
+
| anonymous_enable | boolean | no | Annonymous card flag |
|
|
4272
4237
|
| display_name | string | yes | Payment mode display name |
|
|
4238
|
+
| name | string | yes | Payment mode name |
|
|
4273
4239
|
| save_card | boolean | no | Card save or not |
|
|
4274
|
-
| add_card_enabled | boolean | no | Annonymous card flag |
|
|
4275
|
-
| aggregator_name | string | no | Dispaly Priority |
|
|
4276
4240
|
| display_priority | number | yes | Dispaly Priority |
|
|
4277
|
-
|
|
|
4278
|
-
| name | string | yes | Payment mode name |
|
|
4241
|
+
| add_card_enabled | boolean | no | Annonymous card flag |
|
|
4279
4242
|
| is_pay_by_card_pl | boolean | no | This flag will be true in case of Payment link payment through card |
|
|
4280
|
-
|
|
|
4243
|
+
| aggregator_name | string | no | Dispaly Priority |
|
|
4244
|
+
|
|
4245
|
+
---
|
|
4246
|
+
|
|
4247
|
+
|
|
4248
|
+
|
|
4249
|
+
|
|
4250
|
+
#### [AggregatorRoute](#AggregatorRoute)
|
|
4251
|
+
|
|
4252
|
+
| Properties | Type | Nullable | Description |
|
|
4253
|
+
| ---------- | ---- | -------- | ----------- |
|
|
4254
|
+
| payment_flow_data | string | no | payment_flow_data |
|
|
4255
|
+
| payment_flow | string | no | payment_flow |
|
|
4256
|
+
| data | string | no | Data |
|
|
4257
|
+
| api_link | string | no | api_link |
|
|
4258
|
+
|
|
4259
|
+
---
|
|
4260
|
+
|
|
4261
|
+
|
|
4262
|
+
|
|
4263
|
+
|
|
4264
|
+
#### [PaymentFlow](#PaymentFlow)
|
|
4265
|
+
|
|
4266
|
+
| Properties | Type | Nullable | Description |
|
|
4267
|
+
| ---------- | ---- | -------- | ----------- |
|
|
4268
|
+
| stripe | [AggregatorRoute](#AggregatorRoute) | no | Stripe |
|
|
4269
|
+
| mswipe | [AggregatorRoute](#AggregatorRoute) | no | mswipe |
|
|
4270
|
+
| fynd | [AggregatorRoute](#AggregatorRoute) | no | Fynd |
|
|
4271
|
+
| ccavenue | [AggregatorRoute](#AggregatorRoute) | no | Ccavenue |
|
|
4272
|
+
| rupifi | [AggregatorRoute](#AggregatorRoute) | no | Rupifi |
|
|
4273
|
+
| razorpay | [AggregatorRoute](#AggregatorRoute) | no | Razorpay |
|
|
4274
|
+
| payubiz | [AggregatorRoute](#AggregatorRoute) | no | Payubiz |
|
|
4275
|
+
| upi_razorpay | [AggregatorRoute](#AggregatorRoute) | no | UPI_Razorpay |
|
|
4276
|
+
| simpl | [AggregatorRoute](#AggregatorRoute) | no | simpl |
|
|
4277
|
+
| juspay | [AggregatorRoute](#AggregatorRoute) | no | Juspay |
|
|
4278
|
+
| bqr_razorpay | [AggregatorRoute](#AggregatorRoute) | no | BQR_Razorpay |
|
|
4279
|
+
| epaylater | [AggregatorRoute](#AggregatorRoute) | no | Epaylater |
|
|
4280
|
+
| jiopay | [AggregatorRoute](#AggregatorRoute) | no | Jiopay |
|
|
4281
4281
|
|
|
4282
4282
|
---
|
|
4283
4283
|
|
|
@@ -4288,8 +4288,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4288
4288
|
|
|
4289
4289
|
| Properties | Type | Nullable | Description |
|
|
4290
4290
|
| ---------- | ---- | -------- | ----------- |
|
|
4291
|
-
| payment_flows | [PaymentFlow](#PaymentFlow) | yes | payment_flows |
|
|
4292
4291
|
| payment_option | [[RootPaymentMode](#RootPaymentMode)] | yes | Payment options |
|
|
4292
|
+
| payment_flows | [PaymentFlow](#PaymentFlow) | yes | payment_flows |
|
|
4293
4293
|
|
|
4294
4294
|
---
|
|
4295
4295
|
|
|
@@ -4312,8 +4312,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4312
4312
|
|
|
4313
4313
|
| Properties | Type | Nullable | Description |
|
|
4314
4314
|
| ---------- | ---- | -------- | ----------- |
|
|
4315
|
-
| status | string | no | Rupifi KYC status |
|
|
4316
4315
|
| kyc_url | string | no | Rupifi KYC banner url. |
|
|
4316
|
+
| status | string | no | Rupifi KYC status |
|
|
4317
4317
|
|
|
4318
4318
|
---
|
|
4319
4319
|
|
|
@@ -4336,9 +4336,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4336
4336
|
|
|
4337
4337
|
| Properties | Type | Nullable | Description |
|
|
4338
4338
|
| ---------- | ---- | -------- | ----------- |
|
|
4339
|
-
| message | string | no | ePayLater message |
|
|
4340
|
-
| status | string | no | Epaylater KYC status |
|
|
4341
4339
|
| display | boolean | yes | Need to display banner or not |
|
|
4340
|
+
| status | string | no | Epaylater KYC status |
|
|
4341
|
+
| message | string | no | ePayLater message |
|
|
4342
4342
|
|
|
4343
4343
|
---
|
|
4344
4344
|
|
|
@@ -4397,8 +4397,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4397
4397
|
|
|
4398
4398
|
| Properties | Type | Nullable | Description |
|
|
4399
4399
|
| ---------- | ---- | -------- | ----------- |
|
|
4400
|
-
| base64_html | string | yes | base64 encoded html string |
|
|
4401
4400
|
| returntype | string | no | Return Type of API |
|
|
4401
|
+
| base64_html | string | yes | base64 encoded html string |
|
|
4402
4402
|
|
|
4403
4403
|
---
|
|
4404
4404
|
|
|
@@ -4432,9 +4432,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4432
4432
|
| Properties | Type | Nullable | Description |
|
|
4433
4433
|
| ---------- | ---- | -------- | ----------- |
|
|
4434
4434
|
| upi_vpa | string | yes | UPI ID |
|
|
4435
|
+
| is_valid | boolean | yes | boolean is true or false. |
|
|
4435
4436
|
| customer_name | string | yes | Customer Bank |
|
|
4436
4437
|
| status | string | yes | VALID or INVALID |
|
|
4437
|
-
| is_valid | boolean | yes | boolean is true or false. |
|
|
4438
4438
|
|
|
4439
4439
|
---
|
|
4440
4440
|
|
|
@@ -4457,11 +4457,11 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4457
4457
|
|
|
4458
4458
|
| Properties | Type | Nullable | Description |
|
|
4459
4459
|
| ---------- | ---- | -------- | ----------- |
|
|
4460
|
-
| id | number | yes | |
|
|
4461
4460
|
| display_name | string | no | Beneficiary Display Name |
|
|
4462
4461
|
| name | string | yes | Beneficiary Name |
|
|
4463
|
-
| logo_small | string | yes | Beneficiary small Logo |
|
|
4464
4462
|
| logo_large | string | yes | Beneficiary large Logo |
|
|
4463
|
+
| logo_small | string | yes | Beneficiary small Logo |
|
|
4464
|
+
| id | number | yes | |
|
|
4465
4465
|
|
|
4466
4466
|
---
|
|
4467
4467
|
|
|
@@ -4472,8 +4472,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4472
4472
|
|
|
4473
4473
|
| Properties | Type | Nullable | Description |
|
|
4474
4474
|
| ---------- | ---- | -------- | ----------- |
|
|
4475
|
-
| display_name | string | yes | Beneficiary Mode Name |
|
|
4476
4475
|
| items | [[TransferItemsDetails](#TransferItemsDetails)] | no | Beneficiary Mode Items |
|
|
4476
|
+
| display_name | string | yes | Beneficiary Mode Name |
|
|
4477
4477
|
|
|
4478
4478
|
---
|
|
4479
4479
|
|
|
@@ -4495,8 +4495,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4495
4495
|
|
|
4496
4496
|
| Properties | Type | Nullable | Description |
|
|
4497
4497
|
| ---------- | ---- | -------- | ----------- |
|
|
4498
|
-
| enable | boolean | yes | True for enabling the Transfer Mode |
|
|
4499
4498
|
| transfer_mode | string | yes | Transfer Mode of the Beneficiary to be added |
|
|
4499
|
+
| enable | boolean | yes | True for enabling the Transfer Mode |
|
|
4500
4500
|
|
|
4501
4501
|
---
|
|
4502
4502
|
|
|
@@ -4518,25 +4518,25 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4518
4518
|
|
|
4519
4519
|
| Properties | Type | Nullable | Description |
|
|
4520
4520
|
| ---------- | ---- | -------- | ----------- |
|
|
4521
|
-
| account_holder | string | yes | Account Holder Name |
|
|
4522
|
-
| bank_name | string | yes | Bank Name Of Account |
|
|
4523
|
-
| modified_on | string | yes | MOdification Date of Beneficiary |
|
|
4524
|
-
| address | string | yes | Address of User |
|
|
4525
|
-
| ifsc_code | string | yes | Ifsc Code Of Account |
|
|
4526
|
-
| account_no | string | yes | Account Number |
|
|
4527
4521
|
| branch_name | string | no | Branch Name Of Account |
|
|
4528
|
-
|
|
|
4522
|
+
| modified_on | string | yes | MOdification Date of Beneficiary |
|
|
4523
|
+
| display_name | string | yes | Display Name Of Account |
|
|
4524
|
+
| bank_name | string | yes | Bank Name Of Account |
|
|
4529
4525
|
| subtitle | string | yes | SHort Title Of Account |
|
|
4526
|
+
| account_holder | string | yes | Account Holder Name |
|
|
4527
|
+
| comment | string | no | Remarks |
|
|
4530
4528
|
| created_on | string | yes | Creation Date of Beneficiary |
|
|
4531
|
-
|
|
|
4529
|
+
| title | string | yes | Title Of Account |
|
|
4532
4530
|
| id | number | yes | |
|
|
4533
|
-
|
|
|
4531
|
+
| beneficiary_id | string | yes | Benenficiary Id |
|
|
4534
4532
|
| delights_user_name | string | no | User Id Who filled the Beneficiary |
|
|
4533
|
+
| transfer_mode | string | yes | Transfer Mode Of Account |
|
|
4534
|
+
| address | string | yes | Address of User |
|
|
4535
|
+
| email | string | yes | EMail of User |
|
|
4536
|
+
| account_no | string | yes | Account Number |
|
|
4535
4537
|
| is_active | boolean | yes | Boolean Flag whether Beneficiary set or not |
|
|
4536
|
-
|
|
|
4537
|
-
| title | string | yes | Title Of Account |
|
|
4538
|
+
| ifsc_code | string | yes | Ifsc Code Of Account |
|
|
4538
4539
|
| mobile | string | no | MObile no of User |
|
|
4539
|
-
| comment | string | no | Remarks |
|
|
4540
4540
|
|
|
4541
4541
|
---
|
|
4542
4542
|
|
|
@@ -4547,8 +4547,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4547
4547
|
|
|
4548
4548
|
| Properties | Type | Nullable | Description |
|
|
4549
4549
|
| ---------- | ---- | -------- | ----------- |
|
|
4550
|
-
| show_beneficiary_details | boolean | no | Show beneficiary details or not. |
|
|
4551
4550
|
| beneficiaries | [[OrderBeneficiaryDetails](#OrderBeneficiaryDetails)] | no | All Beneficiaries Of An Order |
|
|
4551
|
+
| show_beneficiary_details | boolean | no | Show beneficiary details or not. |
|
|
4552
4552
|
|
|
4553
4553
|
---
|
|
4554
4554
|
|
|
@@ -4559,8 +4559,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4559
4559
|
|
|
4560
4560
|
| Properties | Type | Nullable | Description |
|
|
4561
4561
|
| ---------- | ---- | -------- | ----------- |
|
|
4562
|
-
| code | string | yes | Bad Request Data |
|
|
4563
4562
|
| description | string | yes | Not Found |
|
|
4563
|
+
| code | string | yes | Bad Request Data |
|
|
4564
4564
|
| success | boolean | yes | Response is successful or not |
|
|
4565
4565
|
|
|
4566
4566
|
---
|
|
@@ -4572,9 +4572,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4572
4572
|
|
|
4573
4573
|
| Properties | Type | Nullable | Description |
|
|
4574
4574
|
| ---------- | ---- | -------- | ----------- |
|
|
4575
|
-
| bank_name | string | yes | Bank Name Of Account |
|
|
4576
|
-
| success | boolean | no | Response is successful or not |
|
|
4577
4575
|
| branch_name | string | yes | Branch Name Of Account |
|
|
4576
|
+
| success | boolean | no | Response is successful or not |
|
|
4577
|
+
| bank_name | string | yes | Bank Name Of Account |
|
|
4578
4578
|
|
|
4579
4579
|
---
|
|
4580
4580
|
|
|
@@ -4585,8 +4585,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4585
4585
|
|
|
4586
4586
|
| Properties | Type | Nullable | Description |
|
|
4587
4587
|
| ---------- | ---- | -------- | ----------- |
|
|
4588
|
-
| code | string | yes | Error descrption code. |
|
|
4589
4588
|
| description | string | yes | Error human understandable description. |
|
|
4589
|
+
| code | string | yes | Error descrption code. |
|
|
4590
4590
|
| success | boolean | yes | Response is successful or not |
|
|
4591
4591
|
|
|
4592
4592
|
---
|
|
@@ -4624,8 +4624,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4624
4624
|
| Properties | Type | Nullable | Description |
|
|
4625
4625
|
| ---------- | ---- | -------- | ----------- |
|
|
4626
4626
|
| description | string | yes | Wrong OTP Code |
|
|
4627
|
-
| success | string | yes | Response is successful or not |
|
|
4628
4627
|
| is_verified_flag | boolean | yes | Vefified flag. |
|
|
4628
|
+
| success | string | yes | Response is successful or not |
|
|
4629
4629
|
|
|
4630
4630
|
---
|
|
4631
4631
|
|
|
@@ -4636,17 +4636,17 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4636
4636
|
|
|
4637
4637
|
| Properties | Type | Nullable | Description |
|
|
4638
4638
|
| ---------- | ---- | -------- | ----------- |
|
|
4639
|
+
| account_no | string | yes | Account NUmber of the Account Holder |
|
|
4640
|
+
| bank_name | string | yes | Bank Name of the Account |
|
|
4641
|
+
| wallet | string | no | |
|
|
4639
4642
|
| email | string | yes | Email of the Account Holder |
|
|
4640
|
-
|
|
|
4643
|
+
| branch_name | string | yes | Branch Name of the Account |
|
|
4641
4644
|
| ifsc_code | string | yes | Ifsc Code of the Account |
|
|
4642
4645
|
| account_holder | string | yes | Name of the Account Holder |
|
|
4643
|
-
| bank_name | string | yes | Bank Name of the Account |
|
|
4644
|
-
| account_no | string | yes | Account NUmber of the Account Holder |
|
|
4645
|
-
| wallet | string | no | |
|
|
4646
|
-
| address | string | no | Address of the User |
|
|
4647
4646
|
| comment | string | no | Remarks added by The user |
|
|
4648
4647
|
| vpa | string | no | |
|
|
4649
|
-
|
|
|
4648
|
+
| address | string | no | Address of the User |
|
|
4649
|
+
| mobile | string | yes | Moblie Number of the User |
|
|
4650
4650
|
|
|
4651
4651
|
---
|
|
4652
4652
|
|
|
@@ -4657,13 +4657,13 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4657
4657
|
|
|
4658
4658
|
| Properties | Type | Nullable | Description |
|
|
4659
4659
|
| ---------- | ---- | -------- | ----------- |
|
|
4660
|
+
| details | [BeneficiaryModeDetails](#BeneficiaryModeDetails) | yes | Beneficiary bank details |
|
|
4661
|
+
| request_id | string | no | |
|
|
4660
4662
|
| shipment_id | string | yes | Shipment Id of the respective Merchant Order Id |
|
|
4661
4663
|
| order_id | string | yes | Merchant Order Id |
|
|
4662
|
-
| transfer_mode | string | yes | Transfer Mode of the Beneficiary to be added |
|
|
4663
4664
|
| otp | string | no | |
|
|
4664
|
-
|
|
|
4665
|
+
| transfer_mode | string | yes | Transfer Mode of the Beneficiary to be added |
|
|
4665
4666
|
| delights | boolean | yes | True if beneficiary to be added by delights or False if by User |
|
|
4666
|
-
| details | [BeneficiaryModeDetails](#BeneficiaryModeDetails) | yes | Beneficiary bank details |
|
|
4667
4667
|
|
|
4668
4668
|
---
|
|
4669
4669
|
|
|
@@ -4674,10 +4674,10 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4674
4674
|
|
|
4675
4675
|
| Properties | Type | Nullable | Description |
|
|
4676
4676
|
| ---------- | ---- | -------- | ----------- |
|
|
4677
|
+
| is_verified_flag | boolean | no | |
|
|
4677
4678
|
| data | string | no | Refund account data. |
|
|
4678
4679
|
| success | boolean | yes | Success or failure flag. |
|
|
4679
4680
|
| message | string | yes | Response message |
|
|
4680
|
-
| is_verified_flag | boolean | no | |
|
|
4681
4681
|
|
|
4682
4682
|
---
|
|
4683
4683
|
|
|
@@ -4688,11 +4688,11 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4688
4688
|
|
|
4689
4689
|
| Properties | Type | Nullable | Description |
|
|
4690
4690
|
| ---------- | ---- | -------- | ----------- |
|
|
4691
|
-
| account_holder | string | yes | |
|
|
4692
|
-
| bank_name | string | yes | |
|
|
4693
4691
|
| account_no | string | yes | |
|
|
4694
|
-
| ifsc_code | string | yes | |
|
|
4695
4692
|
| branch_name | string | yes | |
|
|
4693
|
+
| ifsc_code | string | yes | |
|
|
4694
|
+
| account_holder | string | yes | |
|
|
4695
|
+
| bank_name | string | yes | |
|
|
4696
4696
|
|
|
4697
4697
|
---
|
|
4698
4698
|
|
|
@@ -4727,9 +4727,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4727
4727
|
|
|
4728
4728
|
| Properties | Type | Nullable | Description |
|
|
4729
4729
|
| ---------- | ---- | -------- | ----------- |
|
|
4730
|
+
| is_verified_flag | string | yes | Boolean Flag whether OTP Validation is already done or not |
|
|
4730
4731
|
| success | boolean | no | Response is successful or not |
|
|
4731
4732
|
| request_id | string | yes | request id |
|
|
4732
|
-
| is_verified_flag | string | yes | Boolean Flag whether OTP Validation is already done or not |
|
|
4733
4733
|
|
|
4734
4734
|
---
|
|
4735
4735
|
|
|
@@ -4740,8 +4740,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4740
4740
|
|
|
4741
4741
|
| Properties | Type | Nullable | Description |
|
|
4742
4742
|
| ---------- | ---- | -------- | ----------- |
|
|
4743
|
-
| order_id | string | yes | Merchant Order Id |
|
|
4744
4743
|
| beneficiary_id | string | yes | Beneficiary Hash Id of the beneficiary added |
|
|
4744
|
+
| order_id | string | yes | Merchant Order Id |
|
|
4745
4745
|
|
|
4746
4746
|
---
|
|
4747
4747
|
|
|
@@ -4764,15 +4764,15 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4764
4764
|
|
|
4765
4765
|
| Properties | Type | Nullable | Description |
|
|
4766
4766
|
| ---------- | ---- | -------- | ----------- |
|
|
4767
|
-
| payment_link_url | string | no | Url of payment link |
|
|
4768
|
-
| polling_timeout | number | no | Polling request timeout |
|
|
4769
4767
|
| external_order_id | string | no | Merchant order id |
|
|
4768
|
+
| message | string | yes | Message |
|
|
4769
|
+
| polling_timeout | number | no | Polling request timeout |
|
|
4770
4770
|
| payment_link_current_status | string | no | Status of payment link |
|
|
4771
|
-
| status_code | number | yes | HTTP status code |
|
|
4772
|
-
| amount | number | no | Total value of order |
|
|
4773
4771
|
| merchant_name | string | no | Merchant name |
|
|
4772
|
+
| amount | number | no | Total value of order |
|
|
4773
|
+
| status_code | number | yes | HTTP status code |
|
|
4774
|
+
| payment_link_url | string | no | Url of payment link |
|
|
4774
4775
|
| success | boolean | yes | Successful or failure |
|
|
4775
|
-
| message | string | yes | Message |
|
|
4776
4776
|
|
|
4777
4777
|
---
|
|
4778
4778
|
|
|
@@ -4783,14 +4783,14 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4783
4783
|
|
|
4784
4784
|
| Properties | Type | Nullable | Description |
|
|
4785
4785
|
| ---------- | ---- | -------- | ----------- |
|
|
4786
|
-
| merchant_order_id | string | no | Order id |
|
|
4787
|
-
| payment_transaction_id | string | no | Payment transaction id |
|
|
4788
4786
|
| expired | boolean | no | Payment link expired or not |
|
|
4787
|
+
| invalid_id | boolean | no | Payment link id is valid or not |
|
|
4788
|
+
| payment_transaction_id | string | no | Payment transaction id |
|
|
4789
4789
|
| merchant_name | string | no | Name of merchant that created payment link |
|
|
4790
4790
|
| amount | number | no | Amount paid |
|
|
4791
|
-
| msg | string | no | Message |
|
|
4792
4791
|
| cancelled | boolean | no | Payment link is cancelled or not |
|
|
4793
|
-
|
|
|
4792
|
+
| msg | string | no | Message |
|
|
4793
|
+
| merchant_order_id | string | no | Order id |
|
|
4794
4794
|
|
|
4795
4795
|
---
|
|
4796
4796
|
|
|
@@ -4801,9 +4801,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4801
4801
|
|
|
4802
4802
|
| Properties | Type | Nullable | Description |
|
|
4803
4803
|
| ---------- | ---- | -------- | ----------- |
|
|
4804
|
+
| status_code | number | yes | HTTP status code |
|
|
4804
4805
|
| error | [ErrorDescription](#ErrorDescription) | no | |
|
|
4805
4806
|
| success | boolean | yes | Successful or failure |
|
|
4806
|
-
| status_code | number | yes | HTTP status code |
|
|
4807
4807
|
| message | string | yes | Message |
|
|
4808
4808
|
|
|
4809
4809
|
---
|
|
@@ -4815,9 +4815,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4815
4815
|
|
|
4816
4816
|
| Properties | Type | Nullable | Description |
|
|
4817
4817
|
| ---------- | ---- | -------- | ----------- |
|
|
4818
|
-
| checkout_mode | string | yes | |
|
|
4819
4818
|
| cart_id | string | yes | |
|
|
4820
4819
|
| assign_card_id | string | no | |
|
|
4820
|
+
| checkout_mode | string | yes | |
|
|
4821
4821
|
| amount | string | yes | |
|
|
4822
4822
|
| pincode | string | yes | |
|
|
4823
4823
|
|
|
@@ -4830,12 +4830,12 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4830
4830
|
|
|
4831
4831
|
| Properties | Type | Nullable | Description |
|
|
4832
4832
|
| ---------- | ---- | -------- | ----------- |
|
|
4833
|
-
|
|
|
4834
|
-
| external_order_id | string | yes | Merchant order id |
|
|
4833
|
+
| mobile_number | string | yes | Mobile number to which the payment link is to be sent |
|
|
4835
4834
|
| meta | [CreatePaymentLinkMeta](#CreatePaymentLinkMeta) | yes | Meta |
|
|
4836
|
-
| description | string | no | Merchant order id |
|
|
4837
4835
|
| amount | number | yes | Total value of order |
|
|
4838
|
-
|
|
|
4836
|
+
| description | string | no | Merchant order id |
|
|
4837
|
+
| email | string | yes | Email to which the payment link is to be sent |
|
|
4838
|
+
| external_order_id | string | yes | Merchant order id |
|
|
4839
4839
|
|
|
4840
4840
|
---
|
|
4841
4841
|
|
|
@@ -4846,12 +4846,12 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4846
4846
|
|
|
4847
4847
|
| Properties | Type | Nullable | Description |
|
|
4848
4848
|
| ---------- | ---- | -------- | ----------- |
|
|
4849
|
-
|
|
|
4849
|
+
| message | string | yes | Message |
|
|
4850
4850
|
| polling_timeout | number | no | Polling request timeout |
|
|
4851
4851
|
| status_code | number | yes | HTTP status code |
|
|
4852
4852
|
| payment_link_id | string | no | Unique id of payment link |
|
|
4853
|
+
| payment_link_url | string | no | Url of payment link |
|
|
4853
4854
|
| success | boolean | yes | Successful or failure |
|
|
4854
|
-
| message | string | yes | Message |
|
|
4855
4855
|
|
|
4856
4856
|
---
|
|
4857
4857
|
|
|
@@ -4873,9 +4873,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4873
4873
|
|
|
4874
4874
|
| Properties | Type | Nullable | Description |
|
|
4875
4875
|
| ---------- | ---- | -------- | ----------- |
|
|
4876
|
-
| success | boolean | yes | Successful or failure |
|
|
4877
|
-
| polling_timeout | number | no | Polling request timeout |
|
|
4878
4876
|
| status_code | number | yes | HTTP status code |
|
|
4877
|
+
| polling_timeout | number | no | Polling request timeout |
|
|
4878
|
+
| success | boolean | yes | Successful or failure |
|
|
4879
4879
|
| message | string | yes | Message |
|
|
4880
4880
|
|
|
4881
4881
|
---
|
|
@@ -4887,8 +4887,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4887
4887
|
|
|
4888
4888
|
| Properties | Type | Nullable | Description |
|
|
4889
4889
|
| ---------- | ---- | -------- | ----------- |
|
|
4890
|
-
| success | boolean | yes | Successful or failure |
|
|
4891
4890
|
| status_code | number | yes | HTTP status code |
|
|
4891
|
+
| success | boolean | yes | Successful or failure |
|
|
4892
4892
|
| message | string | yes | Message |
|
|
4893
4893
|
|
|
4894
4894
|
---
|
|
@@ -4900,16 +4900,16 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4900
4900
|
|
|
4901
4901
|
| Properties | Type | Nullable | Description |
|
|
4902
4902
|
| ---------- | ---- | -------- | ----------- |
|
|
4903
|
-
| order_id | string | no | Fynd order id |
|
|
4904
4903
|
| http_status | number | no | HTTP status code |
|
|
4905
|
-
|
|
|
4904
|
+
| status | string | no | Status of payment link |
|
|
4905
|
+
| message | string | no | Message |
|
|
4906
|
+
| order_id | string | no | Fynd order id |
|
|
4906
4907
|
| success | boolean | no | Successful or failure |
|
|
4907
4908
|
| status_code | number | no | HTTP status code |
|
|
4909
|
+
| payment_link_id | string | no | Payment link id |
|
|
4908
4910
|
| amount | number | no | Amount |
|
|
4909
4911
|
| redirect_url | string | no | Url to redirect to |
|
|
4910
|
-
|
|
|
4911
|
-
| message | string | no | Message |
|
|
4912
|
-
| status | string | no | Status of payment link |
|
|
4912
|
+
| aggregator_name | string | no | Aggregator name |
|
|
4913
4913
|
|
|
4914
4914
|
---
|
|
4915
4915
|
|
|
@@ -4920,9 +4920,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4920
4920
|
|
|
4921
4921
|
| Properties | Type | Nullable | Description |
|
|
4922
4922
|
| ---------- | ---- | -------- | ----------- |
|
|
4923
|
-
| payment_identifier | string | yes | Payment identifier |
|
|
4924
|
-
| payment_gateway | string | yes | Payment gateway name |
|
|
4925
4923
|
| merchant_code | string | yes | Merchant code |
|
|
4924
|
+
| payment_gateway | string | yes | Payment gateway name |
|
|
4925
|
+
| payment_identifier | string | yes | Payment identifier |
|
|
4926
4926
|
|
|
4927
4927
|
---
|
|
4928
4928
|
|
|
@@ -4933,8 +4933,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4933
4933
|
|
|
4934
4934
|
| Properties | Type | Nullable | Description |
|
|
4935
4935
|
| ---------- | ---- | -------- | ----------- |
|
|
4936
|
-
| meta | [PaymentMethodsMeta](#PaymentMethodsMeta) | yes | Meta |
|
|
4937
4936
|
| name | string | yes | Payment mode name |
|
|
4937
|
+
| meta | [PaymentMethodsMeta](#PaymentMethodsMeta) | yes | Meta |
|
|
4938
4938
|
| mode | string | yes | Payment mode |
|
|
4939
4939
|
|
|
4940
4940
|
---
|
|
@@ -4946,12 +4946,12 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4946
4946
|
|
|
4947
4947
|
| Properties | Type | Nullable | Description |
|
|
4948
4948
|
| ---------- | ---- | -------- | ----------- |
|
|
4949
|
-
| payment_methods | [CreateOrderUserPaymentMethods](#CreateOrderUserPaymentMethods) | yes | Payment method details |
|
|
4950
4949
|
| success_callback_url | string | yes | Success page url |
|
|
4951
|
-
| failure_callback_url | string | yes | Failure page url |
|
|
4952
4950
|
| meta | string | no | Meta |
|
|
4953
|
-
|
|
|
4951
|
+
| failure_callback_url | string | yes | Failure page url |
|
|
4954
4952
|
| payment_link_id | string | yes | Unique id of payment link |
|
|
4953
|
+
| payment_methods | [CreateOrderUserPaymentMethods](#CreateOrderUserPaymentMethods) | yes | Payment method details |
|
|
4954
|
+
| currency | string | yes | Currency |
|
|
4955
4955
|
|
|
4956
4956
|
---
|
|
4957
4957
|
|
|
@@ -4962,16 +4962,16 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4962
4962
|
|
|
4963
4963
|
| Properties | Type | Nullable | Description |
|
|
4964
4964
|
| ---------- | ---- | -------- | ----------- |
|
|
4965
|
-
|
|
|
4966
|
-
| aggregator | string | no | Aggregator name |
|
|
4965
|
+
| method | string | no | Method |
|
|
4967
4966
|
| merchant_order_id | string | no | Merchant order id |
|
|
4968
4967
|
| order_id | string | no | Aggregator order id |
|
|
4969
|
-
| currency | string | no | Currency |
|
|
4970
4968
|
| contact | string | no | Mobile number |
|
|
4971
4969
|
| amount | number | no | Amount |
|
|
4972
|
-
| customer_id | string | no | Aggregator customer id |
|
|
4973
4970
|
| callback_url | string | no | Callback url for aggregator |
|
|
4974
|
-
|
|
|
4971
|
+
| customer_id | string | no | Aggregator customer id |
|
|
4972
|
+
| currency | string | no | Currency |
|
|
4973
|
+
| email | string | no | Email |
|
|
4974
|
+
| aggregator | string | no | Aggregator name |
|
|
4975
4975
|
|
|
4976
4976
|
---
|
|
4977
4977
|
|
|
@@ -4982,13 +4982,13 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4982
4982
|
|
|
4983
4983
|
| Properties | Type | Nullable | Description |
|
|
4984
4984
|
| ---------- | ---- | -------- | ----------- |
|
|
4985
|
-
| payment_confirm_url | string | no | Payment confirm url for aggregator |
|
|
4986
4985
|
| message | string | yes | Message |
|
|
4987
4986
|
| order_id | string | no | Merchant order id |
|
|
4988
|
-
| status_code | number | yes | HTTP status code |
|
|
4989
4987
|
| data | [CreateOrderUserData](#CreateOrderUserData) | no | |
|
|
4990
|
-
| success | boolean | yes | Successful or failure |
|
|
4991
4988
|
| callback_url | string | no | Callback url for aggregator |
|
|
4989
|
+
| status_code | number | yes | HTTP status code |
|
|
4990
|
+
| payment_confirm_url | string | no | Payment confirm url for aggregator |
|
|
4991
|
+
| success | boolean | yes | Successful or failure |
|
|
4992
4992
|
|
|
4993
4993
|
---
|
|
4994
4994
|
|
|
@@ -5012,10 +5012,10 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
5012
5012
|
|
|
5013
5013
|
| Properties | Type | Nullable | Description |
|
|
5014
5014
|
| ---------- | ---- | -------- | ----------- |
|
|
5015
|
-
|
|
|
5015
|
+
| merchant_customer_ref_id | string | yes | Unique aggregator customer id |
|
|
5016
5016
|
| status_message | string | yes | message to customer |
|
|
5017
5017
|
| status | string | yes | Customer Credit status |
|
|
5018
|
-
|
|
|
5018
|
+
| balance | [BalanceDetails](#BalanceDetails) | no | Credit summary of user. |
|
|
5019
5019
|
|
|
5020
5020
|
---
|
|
5021
5021
|
|
|
@@ -5062,8 +5062,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
5062
5062
|
|
|
5063
5063
|
| Properties | Type | Nullable | Description |
|
|
5064
5064
|
| ---------- | ---- | -------- | ----------- |
|
|
5065
|
-
| signup_url | string | yes | URL to which the user may redirect. |
|
|
5066
5065
|
| is_registered | boolean | yes | User is registered with aggregator or not. |
|
|
5066
|
+
| signup_url | string | yes | URL to which the user may redirect. |
|
|
5067
5067
|
| status | boolean | yes | Operation is successful or not. |
|
|
5068
5068
|
|
|
5069
5069
|
---
|
|
@@ -5087,13 +5087,13 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
5087
5087
|
|
|
5088
5088
|
| Properties | Type | Nullable | Description |
|
|
5089
5089
|
| ---------- | ---- | -------- | ----------- |
|
|
5090
|
-
| city | string | yes | City |
|
|
5091
|
-
| ownership_type | string | no | Address Owner Type |
|
|
5092
|
-
| state | string | yes | State |
|
|
5093
5090
|
| land_mark | string | no | Land Mark |
|
|
5091
|
+
| state | string | yes | State |
|
|
5092
|
+
| city | string | yes | City |
|
|
5094
5093
|
| addressline2 | string | no | Address Line 2 |
|
|
5095
|
-
|
|
|
5094
|
+
| ownership_type | string | no | Address Owner Type |
|
|
5096
5095
|
| pincode | string | yes | Pincode |
|
|
5096
|
+
| addressline1 | string | yes | Address Line 1 |
|
|
5097
5097
|
|
|
5098
5098
|
---
|
|
5099
5099
|
|
|
@@ -5104,22 +5104,22 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
5104
5104
|
|
|
5105
5105
|
| Properties | Type | Nullable | Description |
|
|
5106
5106
|
| ---------- | ---- | -------- | ----------- |
|
|
5107
|
-
|
|
|
5108
|
-
|
|
|
5109
|
-
|
|
|
5107
|
+
| driving_license | string | no | Driver License |
|
|
5108
|
+
| mobile_verified | boolean | yes | Is Mobile Verified or not |
|
|
5109
|
+
| dob | string | yes | DOB |
|
|
5110
|
+
| address_as_per_id | [KYCAddress](#KYCAddress) | yes | Address details |
|
|
5110
5111
|
| fathers_name | string | no | Father's Name |
|
|
5112
|
+
| pan | string | no | Pan Number |
|
|
5113
|
+
| email_verified | boolean | yes | Is Email Verified or not |
|
|
5111
5114
|
| passport | string | no | Passport |
|
|
5112
|
-
|
|
|
5115
|
+
| mothers_name | string | no | Mother's Name |
|
|
5113
5116
|
| first_name | string | yes | First Name |
|
|
5117
|
+
| phone | string | yes | Email |
|
|
5118
|
+
| middle_name | string | no | middle Name |
|
|
5119
|
+
| last_name | string | no | Last Name |
|
|
5114
5120
|
| voter_id | string | no | Voter ID Number |
|
|
5115
|
-
| dob | string | yes | DOB |
|
|
5116
5121
|
| gender | string | no | Gender |
|
|
5117
|
-
|
|
|
5118
|
-
| pan | string | no | Pan Number |
|
|
5119
|
-
| mothers_name | string | no | Mother's Name |
|
|
5120
|
-
| email_verified | boolean | yes | Is Email Verified or not |
|
|
5121
|
-
| mobile_verified | boolean | yes | Is Mobile Verified or not |
|
|
5122
|
-
| address_as_per_id | [KYCAddress](#KYCAddress) | yes | Address details |
|
|
5122
|
+
| email | string | no | Email |
|
|
5123
5123
|
|
|
5124
5124
|
---
|
|
5125
5125
|
|
|
@@ -5130,12 +5130,12 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
5130
5130
|
|
|
5131
5131
|
| Properties | Type | Nullable | Description |
|
|
5132
5132
|
| ---------- | ---- | -------- | ----------- |
|
|
5133
|
-
|
|
|
5134
|
-
|
|
|
5133
|
+
| identifier_type | string | no | Static value = ip |
|
|
5134
|
+
| device_model | string | no | Device Model |
|
|
5135
5135
|
| os | string | no | OS Name |
|
|
5136
5136
|
| os_version | string | no | OS Version |
|
|
5137
|
-
|
|
|
5138
|
-
|
|
|
5137
|
+
| device_make | string | no | Device maker |
|
|
5138
|
+
| device_type | string | no | Device Type(E.g. Mobile) |
|
|
5139
5139
|
| identification_number | string | no | IP |
|
|
5140
5140
|
|
|
5141
5141
|
---
|
|
@@ -5147,17 +5147,17 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
5147
5147
|
|
|
5148
5148
|
| Properties | Type | Nullable | Description |
|
|
5149
5149
|
| ---------- | ---- | -------- | ----------- |
|
|
5150
|
+
| entity_type | string | no | Busineess Entity Type |
|
|
5150
5151
|
| fssai | string | no | FDA License Number |
|
|
5151
|
-
|
|
|
5152
|
+
| pan | string | no | Pan Number |
|
|
5153
|
+
| business_type | string | no | Business Type |
|
|
5152
5154
|
| fda | string | no | Driver License |
|
|
5153
|
-
|
|
|
5154
|
-
| vintage | string | no | Vintage |
|
|
5155
|
+
| shop_and_establishment | string | no | Shop Establishment |
|
|
5155
5156
|
| name | string | no | Business Name |
|
|
5156
|
-
|
|
|
5157
|
-
|
|
|
5158
|
-
| pan | string | no | Pan Number |
|
|
5157
|
+
| vintage | string | no | Vintage |
|
|
5158
|
+
| business_ownership_type | string | no | business Ownershipp type(e.g Rented) |
|
|
5159
5159
|
| address | [KYCAddress](#KYCAddress) | no | Address details |
|
|
5160
|
-
|
|
|
5160
|
+
| gstin | string | no | GSTIN Number |
|
|
5161
5161
|
|
|
5162
5162
|
---
|
|
5163
5163
|
|
|
@@ -5169,8 +5169,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
5169
5169
|
| Properties | Type | Nullable | Description |
|
|
5170
5170
|
| ---------- | ---- | -------- | ----------- |
|
|
5171
5171
|
| name | string | yes | Name of store |
|
|
5172
|
-
| date_of_joining | string | no | Date of joining |
|
|
5173
5172
|
| membership_id | string | yes | merchant id |
|
|
5173
|
+
| date_of_joining | string | no | Date of joining |
|
|
5174
5174
|
|
|
5175
5175
|
---
|
|
5176
5176
|
|
|
@@ -5181,13 +5181,13 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
5181
5181
|
|
|
5182
5182
|
| Properties | Type | Nullable | Description |
|
|
5183
5183
|
| ---------- | ---- | -------- | ----------- |
|
|
5184
|
-
| aggregator | string | yes | Aggregator Name |
|
|
5185
5184
|
| personal_info | [UserPersonalInfoInDetails](#UserPersonalInfoInDetails) | yes | Credit summary of user. |
|
|
5186
|
-
| mcc | string | no | Mcc |
|
|
5187
5185
|
| device | [DeviceDetails](#DeviceDetails) | no | Device Details. |
|
|
5188
|
-
|
|
|
5186
|
+
| mcc | string | no | Mcc |
|
|
5189
5187
|
| source | string | yes | callbackURL |
|
|
5188
|
+
| business_info | [BusinessDetails](#BusinessDetails) | no | Business summary. |
|
|
5190
5189
|
| marketplace_info | [MarketplaceInfo](#MarketplaceInfo) | no | Market Place info. |
|
|
5190
|
+
| aggregator | string | yes | Aggregator Name |
|
|
5191
5191
|
|
|
5192
5192
|
---
|
|
5193
5193
|
|
|
@@ -5199,8 +5199,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
5199
5199
|
| Properties | Type | Nullable | Description |
|
|
5200
5200
|
| ---------- | ---- | -------- | ----------- |
|
|
5201
5201
|
| redirect_url | string | yes | URL to which the user may redirect. |
|
|
5202
|
-
| session | string | yes | User Session |
|
|
5203
5202
|
| status | boolean | yes | Operation Status |
|
|
5203
|
+
| session | string | yes | User Session |
|
|
5204
5204
|
|
|
5205
5205
|
---
|
|
5206
5206
|
|