@gofynd/fdk-client-javascript 1.0.1 → 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 +414 -414
- package/documentation/application/CONTENT.md +15 -1
- package/documentation/application/ORDER.md +290 -290
- package/documentation/application/PAYMENT.md +255 -255
- package/documentation/application/POSCART.md +297 -297
- package/documentation/platform/CART.md +499 -499
- package/documentation/platform/CATALOG.md +3088 -2702
- package/documentation/platform/COMPANYPROFILE.md +201 -201
- package/documentation/platform/CONTENT.md +123 -1
- package/documentation/platform/ORDER.md +1233 -1158
- package/documentation/platform/PARTNER.md +7 -7
- package/documentation/platform/PAYMENT.md +83 -83
- package/package.json +1 -1
- package/sdk/application/ApplicationConfig.js +1 -1
- package/sdk/application/Cart/CartApplicationClient.js +619 -108
- package/sdk/application/Cart/CartApplicationModel.d.ts +7 -7
- package/sdk/application/Cart/CartApplicationModel.js +335 -335
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +1 -1
- package/sdk/application/Catalog/CatalogApplicationClient.js +730 -134
- package/sdk/application/Catalog/CatalogApplicationModel.d.ts +21 -21
- package/sdk/application/Catalog/CatalogApplicationModel.js +547 -547
- package/sdk/application/Common/CommonApplicationClient.js +48 -8
- package/sdk/application/Communication/CommunicationApplicationClient.js +75 -14
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +1 -1
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +392 -66
- package/sdk/application/Content/ContentApplicationClient.js +444 -76
- package/sdk/application/Content/ContentApplicationModel.d.ts +1 -0
- package/sdk/application/Content/ContentApplicationModel.js +11 -1
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +74 -12
- package/sdk/application/Lead/LeadApplicationClient.js +164 -30
- package/sdk/application/Logistic/LogisticApplicationClient.js +98 -16
- package/sdk/application/Order/OrderApplicationClient.d.ts +1 -1
- package/sdk/application/Order/OrderApplicationClient.js +287 -54
- package/sdk/application/Order/OrderApplicationModel.d.ts +19 -19
- package/sdk/application/Order/OrderApplicationModel.js +357 -357
- package/sdk/application/Payment/PaymentApplicationClient.js +961 -186
- package/sdk/application/Payment/PaymentApplicationModel.d.ts +3 -3
- package/sdk/application/Payment/PaymentApplicationModel.js +352 -352
- package/sdk/application/PosCart/PosCartApplicationClient.js +645 -114
- package/sdk/application/PosCart/PosCartApplicationModel.d.ts +15 -15
- package/sdk/application/PosCart/PosCartApplicationModel.js +389 -389
- package/sdk/application/Rewards/RewardsApplicationClient.js +168 -28
- package/sdk/application/Share/ShareApplicationClient.js +157 -32
- package/sdk/application/Theme/ThemeApplicationClient.js +94 -16
- package/sdk/application/User/UserApplicationClient.js +806 -148
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +16 -8
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +191 -34
- package/sdk/platform/Analytics/AnalyticsPlatformClient.d.ts +8 -4
- package/sdk/platform/Analytics/AnalyticsPlatformClient.js +103 -16
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +8 -4
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +103 -16
- package/sdk/platform/Billing/BillingPlatformClient.d.ts +24 -12
- package/sdk/platform/Billing/BillingPlatformClient.js +299 -54
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +34 -17
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +409 -72
- package/sdk/platform/Cart/CartPlatformModel.d.ts +35 -35
- package/sdk/platform/Cart/CartPlatformModel.js +617 -617
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +167 -114
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +1562 -453
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +8 -8
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +39 -39
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +314 -196
- package/sdk/platform/Catalog/CatalogPlatformClient.js +2459 -718
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +103 -94
- package/sdk/platform/Catalog/CatalogPlatformModel.js +2063 -1797
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +17 -15
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +95 -76
- package/sdk/platform/Common/CommonPlatformClient.d.ts +4 -2
- package/sdk/platform/Common/CommonPlatformClient.js +51 -8
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +80 -40
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +1000 -168
- package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +2 -1
- package/sdk/platform/Communication/CommunicationPlatformClient.js +28 -4
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +27 -14
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +335 -54
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +10 -10
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +278 -278
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +56 -28
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +702 -118
- package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +36 -18
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +457 -82
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +148 -67
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +1724 -284
- 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 +270 -44
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +8 -4
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +102 -16
- package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +12 -6
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +150 -24
- package/sdk/platform/Inventory/InventoryPlatformClient.d.ts +27 -14
- package/sdk/platform/Inventory/InventoryPlatformClient.js +316 -52
- package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +26 -13
- package/sdk/platform/Lead/LeadPlatformApplicationClient.js +311 -52
- package/sdk/platform/Lead/LeadPlatformClient.d.ts +22 -11
- package/sdk/platform/Lead/LeadPlatformClient.js +266 -44
- package/sdk/platform/OAuthClient.js +8 -8
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +6 -3
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +78 -14
- package/sdk/platform/Order/OrderPlatformClient.d.ts +95 -43
- package/sdk/platform/Order/OrderPlatformClient.js +1062 -180
- package/sdk/platform/Order/OrderPlatformModel.d.ts +64 -60
- package/sdk/platform/Order/OrderPlatformModel.js +1481 -1425
- package/sdk/platform/Order/OrderPlatformValidator.js +5 -0
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +4 -2
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +52 -8
- 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 +287 -56
- package/sdk/platform/Payment/PaymentPlatformClient.d.ts +21 -11
- package/sdk/platform/Payment/PaymentPlatformClient.js +263 -48
- package/sdk/platform/Payment/PaymentPlatformModel.js +122 -122
- package/sdk/platform/PlatformApplicationClient.d.ts +2959 -2787
- package/sdk/platform/PlatformApplicationClient.js +3420 -3212
- package/sdk/platform/PlatformClient.d.ts +2959 -2787
- package/sdk/platform/PlatformClient.js +3420 -3212
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +26 -13
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +308 -54
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +8 -4
- package/sdk/platform/Share/SharePlatformApplicationClient.js +94 -16
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +47 -23
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +571 -96
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +24 -12
- package/sdk/platform/User/UserPlatformApplicationClient.js +296 -48
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +12 -6
- package/sdk/platform/Webhook/WebhookPlatformClient.js +157 -30
- package/sdk/public/Configuration/ConfigurationPublicClient.js +51 -8
- package/sdk/public/Inventory/InventoryPublicClient.js +149 -26
- package/sdk/public/Webhook/WebhookPublicClient.js +51 -10
|
@@ -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
|
-
| pin | string | no | Masked pin |
|
|
3828
|
-
| merchant_id | string | no | Unique merchant id |
|
|
3829
3827
|
| secret | string | yes | Masked payment gateway api secret |
|
|
3830
|
-
|
|
|
3828
|
+
| pin | string | no | Masked pin |
|
|
3831
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 |
|
|
3832
3834
|
| api | string | no | Payment gateway api endpoint |
|
|
3833
3835
|
| merchant_key | string | no | Unique merchant key |
|
|
3834
|
-
| config_type | string | yes | Fynd or self payment gateway |
|
|
3835
3836
|
| key | string | yes | Payment gateway api key |
|
|
3836
|
-
| verify_api | string | no | Payment gateway verify payment api endpoint |
|
|
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
|
-
| env | string | yes | Environment i.e Live or Test |
|
|
3849
|
-
| success | boolean | yes | |
|
|
3850
|
-
| rupifi | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
|
|
3847
|
+
| stripe | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
|
|
3851
3848
|
| mswipe | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
|
|
3849
|
+
| ccavenue | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
|
|
3850
|
+
| rupifi | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
|
|
3851
|
+
| razorpay | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
|
|
3852
3852
|
| payumoney | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
|
|
3853
3853
|
| juspay | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
|
|
3854
3854
|
| simpl | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
|
|
3855
|
-
|
|
|
3856
|
-
|
|
|
3855
|
+
| success | boolean | yes | |
|
|
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
|
|
|
@@ -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
|
-
| name_on_card | string | no | |
|
|
3893
3891
|
| nickname | string | no | |
|
|
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
|
|
|
@@ -3903,8 +3903,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
3903
3903
|
| Properties | Type | Nullable | Description |
|
|
3904
3904
|
| ---------- | ---- | -------- | ----------- |
|
|
3905
3905
|
| data | string | yes | List of cards of customer. |
|
|
3906
|
-
| message | string | no | Human readable message. |
|
|
3907
3906
|
| success | boolean | yes | Response is successful or not. |
|
|
3907
|
+
| message | string | no | Human readable message. |
|
|
3908
3908
|
|
|
3909
3909
|
---
|
|
3910
3910
|
|
|
@@ -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
|
|
|
@@ -3929,8 +3929,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
3929
3929
|
| Properties | Type | Nullable | Description |
|
|
3930
3930
|
| ---------- | ---- | -------- | ----------- |
|
|
3931
3931
|
| cards | [CardPaymentGateway](#CardPaymentGateway) | yes | Card's payment gateway with customer id. |
|
|
3932
|
-
| message | string | yes | Human readable message. |
|
|
3933
3932
|
| success | boolean | yes | Response is successful or not. |
|
|
3933
|
+
| message | string | yes | Human readable message. |
|
|
3934
3934
|
|
|
3935
3935
|
---
|
|
3936
3936
|
|
|
@@ -3941,22 +3941,22 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
3941
3941
|
|
|
3942
3942
|
| Properties | Type | Nullable | Description |
|
|
3943
3943
|
| ---------- | ---- | -------- | ----------- |
|
|
3944
|
-
| card_isin | string | no | card_isin |
|
|
3945
|
-
| exp_year | number | no | exp_year |
|
|
3946
|
-
| compliant_with_tokenisation_guidelines | boolean | no | If card is tokenised or not |
|
|
3947
|
-
| nickname | string | no | nickname |
|
|
3948
3944
|
| expired | boolean | no | expired |
|
|
3949
|
-
| card_reference | string | no | card_reference |
|
|
3950
|
-
| card_fingerprint | string | no | card_fingerprint |
|
|
3951
3945
|
| card_brand_image | string | no | card_brand_image |
|
|
3952
|
-
|
|
|
3953
|
-
| card_token | string | no | card_token |
|
|
3946
|
+
| compliant_with_tokenisation_guidelines | boolean | no | If card is tokenised or not |
|
|
3954
3947
|
| card_number | string | no | card_number |
|
|
3955
|
-
|
|
|
3956
|
-
| card_issuer | string | no | card_issuer |
|
|
3948
|
+
| card_fingerprint | string | no | card_fingerprint |
|
|
3957
3949
|
| card_brand | string | no | card_brand |
|
|
3958
|
-
|
|
|
3950
|
+
| card_token | string | no | card_token |
|
|
3951
|
+
| exp_year | number | no | exp_year |
|
|
3952
|
+
| card_isin | string | no | card_isin |
|
|
3959
3953
|
| card_id | string | no | card_id |
|
|
3954
|
+
| card_issuer | string | no | card_issuer |
|
|
3955
|
+
| card_type | string | no | card_type |
|
|
3956
|
+
| card_reference | string | no | card_reference |
|
|
3957
|
+
| nickname | string | no | nickname |
|
|
3958
|
+
| exp_month | number | no | exp_month |
|
|
3959
|
+
| aggregator_name | string | yes | aggregator_name |
|
|
3960
3960
|
| card_name | string | no | card_name |
|
|
3961
3961
|
|
|
3962
3962
|
---
|
|
@@ -3969,8 +3969,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
3969
3969
|
| Properties | Type | Nullable | Description |
|
|
3970
3970
|
| ---------- | ---- | -------- | ----------- |
|
|
3971
3971
|
| data | [[Card](#Card)] | no | List of cards of customer. |
|
|
3972
|
-
| message | string | yes | Human readable message. |
|
|
3973
3972
|
| success | boolean | yes | Response is successful or not. |
|
|
3973
|
+
| message | string | yes | Human readable message. |
|
|
3974
3974
|
|
|
3975
3975
|
---
|
|
3976
3976
|
|
|
@@ -3992,8 +3992,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
3992
3992
|
|
|
3993
3993
|
| Properties | Type | Nullable | Description |
|
|
3994
3994
|
| ---------- | ---- | -------- | ----------- |
|
|
3995
|
-
| message | string | no | Human readable message. |
|
|
3996
3995
|
| success | boolean | yes | Response is successful or not. |
|
|
3996
|
+
| message | string | no | Human readable message. |
|
|
3997
3997
|
|
|
3998
3998
|
---
|
|
3999
3999
|
|
|
@@ -4004,14 +4004,14 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4004
4004
|
|
|
4005
4005
|
| Properties | Type | Nullable | Description |
|
|
4006
4006
|
| ---------- | ---- | -------- | ----------- |
|
|
4007
|
-
| order_items | [string] | no | Extra meta fields. |
|
|
4008
|
-
| phone_number | string | yes | User mobile number without country code. |
|
|
4009
4007
|
| merchant_params | string | no | Extra meta fields. |
|
|
4010
|
-
| payload | string | no | Hashed payload string. |
|
|
4011
4008
|
| delivery_address | string | no | Extra meta fields. |
|
|
4012
|
-
|
|
|
4013
|
-
| transaction_amount_in_paise | number | yes | Payable amount in paise |
|
|
4009
|
+
| payload | string | no | Hashed payload string. |
|
|
4014
4010
|
| billing_address | string | no | Extra meta fields. |
|
|
4011
|
+
| order_items | [string] | no | Extra meta fields. |
|
|
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
|
|
|
@@ -4023,8 +4023,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4023
4023
|
| Properties | Type | Nullable | Description |
|
|
4024
4024
|
| ---------- | ---- | -------- | ----------- |
|
|
4025
4025
|
| data | string | yes | Payment gateway response data |
|
|
4026
|
-
| message | string | yes | Error or success message. |
|
|
4027
4026
|
| success | boolean | yes | Response is successful or not |
|
|
4027
|
+
| message | string | yes | Error or success message. |
|
|
4028
4028
|
|
|
4029
4029
|
---
|
|
4030
4030
|
|
|
@@ -4035,10 +4035,10 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4035
4035
|
|
|
4036
4036
|
| Properties | Type | Nullable | Description |
|
|
4037
4037
|
| ---------- | ---- | -------- | ----------- |
|
|
4038
|
-
| verified | boolean | no | Already Verified flag from payment gateway i.e Mswipe |
|
|
4039
|
-
| amount | number | yes | Chargable amount of order. |
|
|
4040
4038
|
| order_id | string | yes | Unique order id. |
|
|
4041
4039
|
| transaction_token | string | no | Transaction token of payment gateway. |
|
|
4040
|
+
| amount | number | yes | Chargable amount of order. |
|
|
4041
|
+
| verified | boolean | no | Already Verified flag from payment gateway i.e Mswipe |
|
|
4042
4042
|
| aggregator | string | yes | Payment gateway name i.e Simpl, Mswipe |
|
|
4043
4043
|
|
|
4044
4044
|
---
|
|
@@ -4050,12 +4050,12 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4050
4050
|
|
|
4051
4051
|
| Properties | Type | Nullable | Description |
|
|
4052
4052
|
| ---------- | ---- | -------- | ----------- |
|
|
4053
|
+
| cart_id | string | no | Cart id of customer |
|
|
4053
4054
|
| status | string | yes | Status of charged payment. |
|
|
4054
|
-
| success | boolean | yes | Response is successful or not. |
|
|
4055
|
-
| delivery_address_id | string | no | Delivery adddress id of customer |
|
|
4056
4055
|
| message | string | yes | Human readable message. |
|
|
4057
4056
|
| order_id | string | yes | Unique order id. |
|
|
4058
|
-
|
|
|
4057
|
+
| delivery_address_id | string | no | Delivery adddress id of customer |
|
|
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
|
---
|
|
@@ -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
|
-
| timeout | number | no | Payment polling timeout if not recieved response |
|
|
4071
|
-
| customer_id | string | yes | Payment gateway customer id. |
|
|
4072
4070
|
| method | string | yes | Payment method |
|
|
4073
|
-
| vpa | string | no | Customer vpa address |
|
|
4074
4071
|
| merchant_order_id | string | yes | Unique fynd order id |
|
|
4072
|
+
| order_id | string | yes | Payment gateway order id |
|
|
4073
|
+
| contact | string | yes | Customer valid mobile number |
|
|
4075
4074
|
| amount | number | yes | Payable amount. |
|
|
4076
|
-
|
|
|
4075
|
+
| customer_id | string | yes | Payment gateway customer id. |
|
|
4077
4076
|
| currency | string | yes | Currency code. |
|
|
4078
|
-
|
|
|
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 |
|
|
4079
4080
|
| razorpay_payment_id | string | no | Payment gateway payment id |
|
|
4080
4081
|
| aggregator | string | yes | Payment gateway name |
|
|
4081
|
-
| contact | string | yes | Customer valid mobile number |
|
|
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
|
-
| status | string | no | Status of payment. |
|
|
4092
|
+
| bqr_image | string | no | Bharath qr image url. |
|
|
4094
4093
|
| method | string | yes | Payment method |
|
|
4095
|
-
| vpa | string | no | Customer vpa address |
|
|
4096
4094
|
| upi_poll_url | string | no | UPI poll url. |
|
|
4097
|
-
|
|
|
4098
|
-
|
|
|
4099
|
-
|
|
|
4100
|
-
| amount | number | no | Payable amount. |
|
|
4101
|
-
| timeout | number | no | timeout. |
|
|
4102
|
-
| bqr_image | string | no | Bharath qr image url. |
|
|
4095
|
+
| status | string | no | Status of payment. |
|
|
4096
|
+
| polling_url | string | yes | Polling url. |
|
|
4097
|
+
| vpa | string | no | Customer vpa address |
|
|
4103
4098
|
| virtual_id | string | no | Payment virtual address. |
|
|
4099
|
+
| aggregator | string | yes | Payment gateway name |
|
|
4100
|
+
| amount | number | no | Payable amount. |
|
|
4101
|
+
| aggregator_order_id | string | no | Payment order id |
|
|
4104
4102
|
| currency | string | no | Currency code. |
|
|
4105
|
-
|
|
|
4103
|
+
| customer_id | string | no | Payment gateway customer id. |
|
|
4104
|
+
| timeout | number | no | timeout. |
|
|
4106
4105
|
| razorpay_payment_id | string | no | Payment id. |
|
|
4107
|
-
|
|
|
4106
|
+
| success | boolean | yes | Response is successful or not. |
|
|
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
|
-
| customer_id | string | yes | Payment gateway customer id. |
|
|
4119
|
-
| status | string | yes | Status of payment. |
|
|
4120
4118
|
| method | string | yes | Payment method |
|
|
4121
|
-
|
|
|
4119
|
+
| status | string | yes | Status of payment. |
|
|
4122
4120
|
| merchant_order_id | string | yes | Unique fynd order id |
|
|
4121
|
+
| order_id | string | yes | Payment gateway order id |
|
|
4122
|
+
| contact | string | yes | Customer valid mobile number |
|
|
4123
4123
|
| amount | number | yes | Payable amount. |
|
|
4124
|
-
|
|
|
4124
|
+
| customer_id | string | yes | Payment gateway customer id. |
|
|
4125
4125
|
| currency | string | yes | Currency code. |
|
|
4126
|
-
|
|
|
4126
|
+
| vpa | string | yes | Customer vpa address |
|
|
4127
|
+
| email | string | yes | Customer valid email |
|
|
4127
4128
|
| aggregator | string | yes | Payment gateway name |
|
|
4128
|
-
| contact | string | yes | Customer valid mobile number |
|
|
4129
4129
|
|
|
4130
4130
|
---
|
|
4131
4131
|
|
|
@@ -4136,49 +4136,49 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4136
4136
|
|
|
4137
4137
|
| Properties | Type | Nullable | Description |
|
|
4138
4138
|
| ---------- | ---- | -------- | ----------- |
|
|
4139
|
+
| aggregator_name | string | yes | Payment gateway name |
|
|
4139
4140
|
| status | string | yes | Payment status |
|
|
4141
|
+
| retry | boolean | yes | Response is successful or not. |
|
|
4140
4142
|
| redirect_url | string | no | Redirect url |
|
|
4141
4143
|
| success | boolean | no | Response is successful or not |
|
|
4142
|
-
| aggregator_name | string | yes | Payment gateway name |
|
|
4143
|
-
| retry | boolean | yes | Response is successful or not. |
|
|
4144
4144
|
|
|
4145
4145
|
---
|
|
4146
4146
|
|
|
4147
4147
|
|
|
4148
4148
|
|
|
4149
4149
|
|
|
4150
|
-
#### [
|
|
4150
|
+
#### [PaymentModeLogo](#PaymentModeLogo)
|
|
4151
4151
|
|
|
4152
4152
|
| Properties | Type | Nullable | Description |
|
|
4153
4153
|
| ---------- | ---- | -------- | ----------- |
|
|
4154
|
-
|
|
|
4155
|
-
|
|
|
4154
|
+
| large | string | yes | large |
|
|
4155
|
+
| small | string | yes | smalll |
|
|
4156
4156
|
|
|
4157
4157
|
---
|
|
4158
4158
|
|
|
4159
4159
|
|
|
4160
4160
|
|
|
4161
4161
|
|
|
4162
|
-
#### [
|
|
4162
|
+
#### [IntentApp](#IntentApp)
|
|
4163
4163
|
|
|
4164
4164
|
| Properties | Type | Nullable | Description |
|
|
4165
4165
|
| ---------- | ---- | -------- | ----------- |
|
|
4166
|
-
|
|
|
4167
|
-
|
|
|
4166
|
+
| logos | [PaymentModeLogo](#PaymentModeLogo) | no | logos |
|
|
4167
|
+
| package_name | string | no | package_name |
|
|
4168
|
+
| code | string | no | code |
|
|
4169
|
+
| display_name | string | no | display_name |
|
|
4168
4170
|
|
|
4169
4171
|
---
|
|
4170
4172
|
|
|
4171
4173
|
|
|
4172
4174
|
|
|
4173
4175
|
|
|
4174
|
-
#### [
|
|
4176
|
+
#### [IntentAppErrorList](#IntentAppErrorList)
|
|
4175
4177
|
|
|
4176
4178
|
| Properties | Type | Nullable | Description |
|
|
4177
4179
|
| ---------- | ---- | -------- | ----------- |
|
|
4178
|
-
| logos | [PaymentModeLogo](#PaymentModeLogo) | no | logos |
|
|
4179
|
-
| display_name | string | no | display_name |
|
|
4180
|
-
| code | string | no | code |
|
|
4181
4180
|
| package_name | string | no | package_name |
|
|
4181
|
+
| code | string | no | code |
|
|
4182
4182
|
|
|
4183
4183
|
---
|
|
4184
4184
|
|
|
@@ -4189,39 +4189,39 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4189
4189
|
|
|
4190
4190
|
| Properties | Type | Nullable | Description |
|
|
4191
4191
|
| ---------- | ---- | -------- | ----------- |
|
|
4192
|
-
|
|
|
4193
|
-
| display_name | string | no | display name |
|
|
4194
|
-
| card_issuer | string | no | card_issuer |
|
|
4195
|
-
| card_brand | string | no | card_brand |
|
|
4196
|
-
| intent_flow | boolean | no | intent_flow |
|
|
4197
|
-
| exp_month | number | no | exp_month |
|
|
4198
|
-
| intent_app_error_dict_list | [[IntentAppErrorList](#IntentAppErrorList)] | no | intent_app_error_dict_list |
|
|
4199
|
-
| exp_year | number | no | exp_year |
|
|
4192
|
+
| code | string | no | code |
|
|
4200
4193
|
| compliant_with_tokenisation_guidelines | boolean | no | If card is tokenised or not |
|
|
4194
|
+
| intent_app | [[IntentApp](#IntentApp)] | no | intent_app |
|
|
4201
4195
|
| retry_count | number | no | retry_count |
|
|
4202
|
-
|
|
|
4203
|
-
|
|
|
4196
|
+
| fynd_vpa | string | no | fynd_vpa |
|
|
4197
|
+
| display_name | string | no | display name |
|
|
4204
4198
|
| logo_url | [PaymentModeLogo](#PaymentModeLogo) | no | Logo |
|
|
4205
|
-
|
|
|
4206
|
-
|
|
|
4207
|
-
| timeout | number | no | timeout |
|
|
4208
|
-
| merchant_code | string | no | merchant code |
|
|
4199
|
+
| card_type | string | no | card_type |
|
|
4200
|
+
| card_brand_image | string | no | card_brand_image |
|
|
4209
4201
|
| nickname | string | no | nickname |
|
|
4210
4202
|
| aggregator_name | string | yes | aggregator_name |
|
|
4211
|
-
|
|
|
4212
|
-
|
|
|
4213
|
-
|
|
|
4214
|
-
|
|
|
4215
|
-
| card_isin | string | no | card_isin |
|
|
4216
|
-
| remaining_limit | number | no | Remaining limit |
|
|
4217
|
-
| expired | boolean | no | expired |
|
|
4203
|
+
| intent_app_error_dict_list | [[IntentAppErrorList](#IntentAppErrorList)] | no | intent_app_error_dict_list |
|
|
4204
|
+
| merchant_code | string | no | merchant code |
|
|
4205
|
+
| name | string | no | name |
|
|
4206
|
+
| card_issuer | string | no | card_issuer |
|
|
4218
4207
|
| card_reference | string | no | card_reference |
|
|
4219
|
-
|
|
|
4208
|
+
| timeout | number | no | timeout |
|
|
4220
4209
|
| intent_app_error_list | [string] | no | intent_app_error_list |
|
|
4221
4210
|
| card_token | string | no | card_token |
|
|
4222
|
-
|
|
|
4223
|
-
|
|
|
4211
|
+
| cod_limit | number | no | cod limit |
|
|
4212
|
+
| remaining_limit | number | no | Remaining limit |
|
|
4213
|
+
| cod_limit_per_order | number | no | Cod limit per order |
|
|
4224
4214
|
| card_name | string | no | card_name |
|
|
4215
|
+
| expired | boolean | no | expired |
|
|
4216
|
+
| card_number | string | no | card_number |
|
|
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 |
|
|
4225
4225
|
|
|
4226
4226
|
---
|
|
4227
4227
|
|
|
@@ -4232,15 +4232,15 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4232
4232
|
|
|
4233
4233
|
| Properties | Type | Nullable | Description |
|
|
4234
4234
|
| ---------- | ---- | -------- | ----------- |
|
|
4235
|
-
| is_pay_by_card_pl | boolean | no | This flag will be true in case of Payment link payment through card |
|
|
4236
|
-
| aggregator_name | string | no | Dispaly Priority |
|
|
4237
|
-
| display_name | string | yes | Payment mode display name |
|
|
4238
|
-
| save_card | boolean | no | Card save or not |
|
|
4239
|
-
| display_priority | number | yes | Dispaly Priority |
|
|
4240
4235
|
| list | [[PaymentModeList](#PaymentModeList)] | no | Payment mode |
|
|
4241
4236
|
| anonymous_enable | boolean | no | Annonymous card flag |
|
|
4237
|
+
| display_name | string | yes | Payment mode display name |
|
|
4242
4238
|
| name | string | yes | Payment mode name |
|
|
4239
|
+
| save_card | boolean | no | Card save or not |
|
|
4240
|
+
| display_priority | number | yes | Dispaly Priority |
|
|
4243
4241
|
| add_card_enabled | boolean | no | Annonymous card flag |
|
|
4242
|
+
| is_pay_by_card_pl | boolean | no | This flag will be true in case of Payment link payment through card |
|
|
4243
|
+
| aggregator_name | string | no | Dispaly Priority |
|
|
4244
4244
|
|
|
4245
4245
|
---
|
|
4246
4246
|
|
|
@@ -4251,10 +4251,10 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4251
4251
|
|
|
4252
4252
|
| Properties | Type | Nullable | Description |
|
|
4253
4253
|
| ---------- | ---- | -------- | ----------- |
|
|
4254
|
-
| data | string | no | Data |
|
|
4255
|
-
| api_link | string | no | api_link |
|
|
4256
4254
|
| payment_flow_data | string | no | payment_flow_data |
|
|
4257
4255
|
| payment_flow | string | no | payment_flow |
|
|
4256
|
+
| data | string | no | Data |
|
|
4257
|
+
| api_link | string | no | api_link |
|
|
4258
4258
|
|
|
4259
4259
|
---
|
|
4260
4260
|
|
|
@@ -4265,19 +4265,19 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4265
4265
|
|
|
4266
4266
|
| Properties | Type | Nullable | Description |
|
|
4267
4267
|
| ---------- | ---- | -------- | ----------- |
|
|
4268
|
-
| razorpay | [AggregatorRoute](#AggregatorRoute) | no | Razorpay |
|
|
4269
|
-
| epaylater | [AggregatorRoute](#AggregatorRoute) | no | Epaylater |
|
|
4270
|
-
| jiopay | [AggregatorRoute](#AggregatorRoute) | no | Jiopay |
|
|
4271
|
-
| fynd | [AggregatorRoute](#AggregatorRoute) | no | Fynd |
|
|
4272
|
-
| rupifi | [AggregatorRoute](#AggregatorRoute) | no | Rupifi |
|
|
4273
|
-
| mswipe | [AggregatorRoute](#AggregatorRoute) | no | mswipe |
|
|
4274
|
-
| bqr_razorpay | [AggregatorRoute](#AggregatorRoute) | no | BQR_Razorpay |
|
|
4275
|
-
| juspay | [AggregatorRoute](#AggregatorRoute) | no | Juspay |
|
|
4276
|
-
| simpl | [AggregatorRoute](#AggregatorRoute) | no | simpl |
|
|
4277
4268
|
| stripe | [AggregatorRoute](#AggregatorRoute) | no | Stripe |
|
|
4269
|
+
| mswipe | [AggregatorRoute](#AggregatorRoute) | no | mswipe |
|
|
4270
|
+
| fynd | [AggregatorRoute](#AggregatorRoute) | no | Fynd |
|
|
4278
4271
|
| ccavenue | [AggregatorRoute](#AggregatorRoute) | no | Ccavenue |
|
|
4279
|
-
|
|
|
4272
|
+
| rupifi | [AggregatorRoute](#AggregatorRoute) | no | Rupifi |
|
|
4273
|
+
| razorpay | [AggregatorRoute](#AggregatorRoute) | no | Razorpay |
|
|
4280
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
|
|
|
@@ -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
|
|
|
@@ -4337,8 +4337,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4337
4337
|
| Properties | Type | Nullable | Description |
|
|
4338
4338
|
| ---------- | ---- | -------- | ----------- |
|
|
4339
4339
|
| display | boolean | yes | Need to display banner or not |
|
|
4340
|
-
| message | string | no | ePayLater message |
|
|
4341
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
|
-
| status | string | yes | VALID or INVALID |
|
|
4436
|
-
| customer_name | string | yes | Customer Bank |
|
|
4437
4435
|
| is_valid | boolean | yes | boolean is true or false. |
|
|
4436
|
+
| customer_name | string | yes | Customer Bank |
|
|
4437
|
+
| status | string | yes | VALID or INVALID |
|
|
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
|
-
| logo_small | string | yes | Beneficiary small Logo |
|
|
4463
|
-
| logo_large | string | yes | Beneficiary large Logo |
|
|
4464
4461
|
| name | string | yes | Beneficiary Name |
|
|
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
|
|
|
@@ -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
|
-
|
|
|
4522
|
-
|
|
|
4521
|
+
| branch_name | string | no | Branch Name Of Account |
|
|
4522
|
+
| modified_on | string | yes | MOdification Date of Beneficiary |
|
|
4523
4523
|
| display_name | string | yes | Display Name Of Account |
|
|
4524
|
+
| bank_name | string | yes | Bank Name Of Account |
|
|
4525
|
+
| subtitle | string | yes | SHort Title Of Account |
|
|
4524
4526
|
| account_holder | string | yes | Account Holder Name |
|
|
4525
|
-
|
|
|
4527
|
+
| comment | string | no | Remarks |
|
|
4526
4528
|
| created_on | string | yes | Creation Date of Beneficiary |
|
|
4527
|
-
| beneficiary_id | string | yes | Benenficiary Id |
|
|
4528
|
-
| id | number | yes | |
|
|
4529
4529
|
| title | string | yes | Title Of Account |
|
|
4530
|
-
|
|
|
4531
|
-
|
|
|
4532
|
-
|
|
|
4533
|
-
| subtitle | string | yes | SHort Title Of Account |
|
|
4530
|
+
| id | number | yes | |
|
|
4531
|
+
| beneficiary_id | string | yes | Benenficiary Id |
|
|
4532
|
+
| delights_user_name | string | no | User Id Who filled the Beneficiary |
|
|
4534
4533
|
| transfer_mode | string | yes | Transfer Mode Of Account |
|
|
4535
|
-
|
|
|
4534
|
+
| address | string | yes | Address of User |
|
|
4535
|
+
| email | string | yes | EMail of User |
|
|
4536
|
+
| account_no | string | yes | Account Number |
|
|
4536
4537
|
| is_active | boolean | yes | Boolean Flag whether Beneficiary set or not |
|
|
4537
4538
|
| ifsc_code | string | yes | Ifsc Code Of Account |
|
|
4538
|
-
|
|
|
4539
|
-
| account_no | string | yes | Account Number |
|
|
4539
|
+
| mobile | string | no | MObile no of User |
|
|
4540
4540
|
|
|
4541
4541
|
---
|
|
4542
4542
|
|
|
@@ -4559,9 +4559,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4559
4559
|
|
|
4560
4560
|
| Properties | Type | Nullable | Description |
|
|
4561
4561
|
| ---------- | ---- | -------- | ----------- |
|
|
4562
|
-
| success | boolean | yes | Response is successful or not |
|
|
4563
|
-
| code | string | yes | Bad Request Data |
|
|
4564
4562
|
| description | string | yes | Not Found |
|
|
4563
|
+
| code | string | yes | Bad Request Data |
|
|
4564
|
+
| success | boolean | yes | Response is successful or not |
|
|
4565
4565
|
|
|
4566
4566
|
---
|
|
4567
4567
|
|
|
@@ -4573,8 +4573,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4573
4573
|
| Properties | Type | Nullable | Description |
|
|
4574
4574
|
| ---------- | ---- | -------- | ----------- |
|
|
4575
4575
|
| branch_name | string | yes | Branch Name Of Account |
|
|
4576
|
-
| bank_name | string | yes | Bank Name Of Account |
|
|
4577
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,9 +4585,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4585
4585
|
|
|
4586
4586
|
| Properties | Type | Nullable | Description |
|
|
4587
4587
|
| ---------- | ---- | -------- | ----------- |
|
|
4588
|
-
| success | boolean | yes | Response is successful or not |
|
|
4589
|
-
| code | string | yes | Error descrption code. |
|
|
4590
4588
|
| description | string | yes | Error human understandable description. |
|
|
4589
|
+
| code | string | yes | Error descrption code. |
|
|
4590
|
+
| success | boolean | yes | Response is successful or not |
|
|
4591
4591
|
|
|
4592
4592
|
---
|
|
4593
4593
|
|
|
@@ -4598,9 +4598,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4598
4598
|
|
|
4599
4599
|
| Properties | Type | Nullable | Description |
|
|
4600
4600
|
| ---------- | ---- | -------- | ----------- |
|
|
4601
|
+
| otp | string | yes | Otp sent to the given Mobile No |
|
|
4601
4602
|
| hash_key | string | yes | Hash key of the beneficiary Id |
|
|
4602
4603
|
| request_id | string | yes | Request Id sent in |
|
|
4603
|
-
| otp | string | yes | Otp sent to the given Mobile No |
|
|
4604
4604
|
|
|
4605
4605
|
---
|
|
4606
4606
|
|
|
@@ -4611,8 +4611,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4611
4611
|
|
|
4612
4612
|
| Properties | Type | Nullable | Description |
|
|
4613
4613
|
| ---------- | ---- | -------- | ----------- |
|
|
4614
|
-
| message | string | yes | Aggregator Response of beneficicary |
|
|
4615
4614
|
| success | boolean | no | Response is successful or not |
|
|
4615
|
+
| message | string | yes | Aggregator Response of beneficicary |
|
|
4616
4616
|
|
|
4617
4617
|
---
|
|
4618
4618
|
|
|
@@ -4623,9 +4623,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4623
4623
|
|
|
4624
4624
|
| Properties | Type | Nullable | Description |
|
|
4625
4625
|
| ---------- | ---- | -------- | ----------- |
|
|
4626
|
+
| description | string | yes | Wrong OTP Code |
|
|
4626
4627
|
| is_verified_flag | boolean | yes | Vefified flag. |
|
|
4627
4628
|
| success | string | yes | Response is successful or not |
|
|
4628
|
-
| description | string | yes | Wrong OTP Code |
|
|
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
|
-
|
|
|
4640
|
-
| address | string | no | Address of the User |
|
|
4639
|
+
| account_no | string | yes | Account NUmber of the Account Holder |
|
|
4641
4640
|
| bank_name | string | yes | Bank Name of the Account |
|
|
4641
|
+
| wallet | string | no | |
|
|
4642
4642
|
| email | string | yes | Email of the Account Holder |
|
|
4643
|
-
|
|
|
4644
|
-
| mobile | string | yes | Moblie Number of the User |
|
|
4643
|
+
| branch_name | string | yes | Branch Name of the Account |
|
|
4645
4644
|
| ifsc_code | string | yes | Ifsc Code of the Account |
|
|
4646
|
-
|
|
|
4645
|
+
| account_holder | string | yes | Name of the Account Holder |
|
|
4647
4646
|
| comment | string | no | Remarks added by The user |
|
|
4648
|
-
|
|
|
4649
|
-
|
|
|
4647
|
+
| vpa | string | no | |
|
|
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
|
-
|
|
|
4660
|
+
| details | [BeneficiaryModeDetails](#BeneficiaryModeDetails) | yes | Beneficiary bank details |
|
|
4661
4661
|
| request_id | string | no | |
|
|
4662
|
+
| shipment_id | string | yes | Shipment Id of the respective Merchant Order Id |
|
|
4662
4663
|
| order_id | string | yes | Merchant Order Id |
|
|
4663
|
-
| delights | boolean | yes | True if beneficiary to be added by delights or False if by User |
|
|
4664
|
-
| details | [BeneficiaryModeDetails](#BeneficiaryModeDetails) | yes | Beneficiary bank details |
|
|
4665
|
-
| transfer_mode | string | yes | Transfer Mode of the Beneficiary to be added |
|
|
4666
4664
|
| otp | string | no | |
|
|
4665
|
+
| transfer_mode | string | yes | Transfer Mode of the Beneficiary to be added |
|
|
4666
|
+
| delights | boolean | yes | True if beneficiary to be added by delights or False if by User |
|
|
4667
4667
|
|
|
4668
4668
|
---
|
|
4669
4669
|
|
|
@@ -4676,8 +4676,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4676
4676
|
| ---------- | ---- | -------- | ----------- |
|
|
4677
4677
|
| is_verified_flag | boolean | no | |
|
|
4678
4678
|
| data | string | no | Refund account data. |
|
|
4679
|
-
| message | string | yes | Response message |
|
|
4680
4679
|
| success | boolean | yes | Success or failure flag. |
|
|
4680
|
+
| message | string | yes | Response message |
|
|
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
|
-
| bank_name | string | yes | |
|
|
4692
|
-
| account_holder | string | yes | |
|
|
4693
|
-
| ifsc_code | string | yes | |
|
|
4694
|
-
| branch_name | string | yes | |
|
|
4695
4691
|
| account_no | string | yes | |
|
|
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
|
|
|
@@ -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
|
-
|
|
|
4768
|
-
| success | boolean | yes | Successful or failure |
|
|
4769
|
-
| amount | number | no | Total value of order |
|
|
4770
|
-
| payment_link_current_status | string | no | Status of payment link |
|
|
4767
|
+
| external_order_id | string | no | Merchant order id |
|
|
4771
4768
|
| message | string | yes | Message |
|
|
4769
|
+
| polling_timeout | number | no | Polling request timeout |
|
|
4770
|
+
| payment_link_current_status | string | no | Status of payment link |
|
|
4772
4771
|
| merchant_name | string | no | Merchant name |
|
|
4773
|
-
|
|
|
4772
|
+
| amount | number | no | Total value of order |
|
|
4774
4773
|
| status_code | number | yes | HTTP status code |
|
|
4775
|
-
|
|
|
4774
|
+
| payment_link_url | string | no | Url of payment link |
|
|
4775
|
+
| success | boolean | yes | Successful or failure |
|
|
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
|
-
| payment_transaction_id | string | no | Payment transaction id |
|
|
4787
4786
|
| expired | boolean | no | Payment link expired or not |
|
|
4788
|
-
|
|
|
4789
|
-
|
|
|
4790
|
-
| msg | string | no | Message |
|
|
4787
|
+
| invalid_id | boolean | no | Payment link id is valid or not |
|
|
4788
|
+
| payment_transaction_id | string | no | Payment transaction id |
|
|
4791
4789
|
| merchant_name | string | no | Name of merchant that created payment link |
|
|
4790
|
+
| amount | number | no | Amount paid |
|
|
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,10 +4801,10 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4801
4801
|
|
|
4802
4802
|
| Properties | Type | Nullable | Description |
|
|
4803
4803
|
| ---------- | ---- | -------- | ----------- |
|
|
4804
|
-
| error | [ErrorDescription](#ErrorDescription) | no | |
|
|
4805
4804
|
| status_code | number | yes | HTTP status code |
|
|
4806
|
-
|
|
|
4805
|
+
| error | [ErrorDescription](#ErrorDescription) | no | |
|
|
4807
4806
|
| success | boolean | yes | Successful or failure |
|
|
4807
|
+
| message | string | yes | Message |
|
|
4808
4808
|
|
|
4809
4809
|
---
|
|
4810
4810
|
|
|
@@ -4815,11 +4815,11 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4815
4815
|
|
|
4816
4816
|
| Properties | Type | Nullable | Description |
|
|
4817
4817
|
| ---------- | ---- | -------- | ----------- |
|
|
4818
|
-
| amount | string | yes | |
|
|
4819
|
-
| pincode | string | yes | |
|
|
4820
|
-
| checkout_mode | string | yes | |
|
|
4821
4818
|
| cart_id | string | yes | |
|
|
4822
4819
|
| assign_card_id | string | no | |
|
|
4820
|
+
| checkout_mode | string | yes | |
|
|
4821
|
+
| amount | string | yes | |
|
|
4822
|
+
| pincode | string | yes | |
|
|
4823
4823
|
|
|
4824
4824
|
---
|
|
4825
4825
|
|
|
@@ -4831,11 +4831,11 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4831
4831
|
| Properties | Type | Nullable | Description |
|
|
4832
4832
|
| ---------- | ---- | -------- | ----------- |
|
|
4833
4833
|
| mobile_number | string | yes | Mobile number to which the payment link is to be sent |
|
|
4834
|
+
| meta | [CreatePaymentLinkMeta](#CreatePaymentLinkMeta) | yes | Meta |
|
|
4834
4835
|
| amount | number | yes | Total value of order |
|
|
4836
|
+
| description | string | no | Merchant order id |
|
|
4835
4837
|
| email | string | yes | Email to which the payment link is to be sent |
|
|
4836
|
-
| meta | [CreatePaymentLinkMeta](#CreatePaymentLinkMeta) | yes | Meta |
|
|
4837
4838
|
| external_order_id | string | yes | Merchant order id |
|
|
4838
|
-
| description | string | no | 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
|
-
| payment_link_url | string | no | Url of payment link |
|
|
4850
|
-
| success | boolean | yes | Successful or failure |
|
|
4851
4849
|
| message | string | yes | Message |
|
|
4852
|
-
| status_code | number | yes | HTTP status code |
|
|
4853
4850
|
| polling_timeout | number | no | Polling request timeout |
|
|
4851
|
+
| status_code | number | yes | HTTP status code |
|
|
4854
4852
|
| payment_link_id | string | no | Unique id of payment link |
|
|
4853
|
+
| payment_link_url | string | no | Url of payment link |
|
|
4854
|
+
| success | boolean | yes | Successful or failure |
|
|
4855
4855
|
|
|
4856
4856
|
---
|
|
4857
4857
|
|
|
@@ -4873,10 +4873,10 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4873
4873
|
|
|
4874
4874
|
| Properties | Type | Nullable | Description |
|
|
4875
4875
|
| ---------- | ---- | -------- | ----------- |
|
|
4876
|
-
| polling_timeout | number | no | Polling request timeout |
|
|
4877
4876
|
| status_code | number | yes | HTTP status code |
|
|
4878
|
-
|
|
|
4877
|
+
| polling_timeout | number | no | Polling request timeout |
|
|
4879
4878
|
| success | boolean | yes | Successful or failure |
|
|
4879
|
+
| message | string | yes | Message |
|
|
4880
4880
|
|
|
4881
4881
|
---
|
|
4882
4882
|
|
|
@@ -4888,8 +4888,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4888
4888
|
| Properties | Type | Nullable | Description |
|
|
4889
4889
|
| ---------- | ---- | -------- | ----------- |
|
|
4890
4890
|
| status_code | number | yes | HTTP status code |
|
|
4891
|
-
| message | string | yes | Message |
|
|
4892
4891
|
| success | boolean | yes | Successful or failure |
|
|
4892
|
+
| message | string | yes | Message |
|
|
4893
4893
|
|
|
4894
4894
|
---
|
|
4895
4895
|
|
|
@@ -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
|
+
| http_status | number | no | HTTP status code |
|
|
4903
4904
|
| status | string | no | Status of payment link |
|
|
4904
|
-
| redirect_url | string | no | Url to redirect to |
|
|
4905
|
-
| success | boolean | no | Successful or failure |
|
|
4906
|
-
| amount | number | no | Amount |
|
|
4907
|
-
| aggregator_name | string | no | Aggregator name |
|
|
4908
4905
|
| message | string | no | Message |
|
|
4909
|
-
| http_status | number | no | HTTP status code |
|
|
4910
4906
|
| order_id | string | no | Fynd order id |
|
|
4907
|
+
| success | boolean | no | Successful or failure |
|
|
4911
4908
|
| status_code | number | no | HTTP status code |
|
|
4912
4909
|
| payment_link_id | string | no | Payment link id |
|
|
4910
|
+
| amount | number | no | Amount |
|
|
4911
|
+
| redirect_url | string | no | Url to redirect to |
|
|
4912
|
+
| aggregator_name | string | no | Aggregator name |
|
|
4913
4913
|
|
|
4914
4914
|
---
|
|
4915
4915
|
|
|
@@ -4921,8 +4921,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4921
4921
|
| Properties | Type | Nullable | Description |
|
|
4922
4922
|
| ---------- | ---- | -------- | ----------- |
|
|
4923
4923
|
| merchant_code | string | yes | Merchant code |
|
|
4924
|
-
| payment_identifier | string | yes | Payment identifier |
|
|
4925
4924
|
| payment_gateway | string | yes | Payment gateway name |
|
|
4925
|
+
| payment_identifier | string | yes | Payment identifier |
|
|
4926
4926
|
|
|
4927
4927
|
---
|
|
4928
4928
|
|
|
@@ -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
|
-
| failure_callback_url | string | yes | Failure page url |
|
|
4950
4949
|
| success_callback_url | string | yes | Success page url |
|
|
4951
|
-
| currency | string | yes | Currency |
|
|
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
|
-
| customer_id | string | no | Aggregator customer id |
|
|
4966
4965
|
| method | string | no | Method |
|
|
4967
4966
|
| merchant_order_id | string | no | Merchant order id |
|
|
4967
|
+
| order_id | string | no | Aggregator order id |
|
|
4968
|
+
| contact | string | no | Mobile number |
|
|
4968
4969
|
| amount | number | no | Amount |
|
|
4969
|
-
| email | string | no | Email |
|
|
4970
4970
|
| callback_url | string | no | Callback url for aggregator |
|
|
4971
|
+
| customer_id | string | no | Aggregator customer id |
|
|
4971
4972
|
| currency | string | no | Currency |
|
|
4972
|
-
|
|
|
4973
|
+
| email | string | no | Email |
|
|
4973
4974
|
| aggregator | string | no | Aggregator name |
|
|
4974
|
-
| contact | string | no | Mobile number |
|
|
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
|
-
| success | boolean | yes | Successful or failure |
|
|
4987
|
-
| data | [CreateOrderUserData](#CreateOrderUserData) | no | |
|
|
4988
4985
|
| message | string | yes | Message |
|
|
4989
|
-
| callback_url | string | no | Callback url for aggregator |
|
|
4990
4986
|
| order_id | string | no | Merchant order id |
|
|
4987
|
+
| data | [CreateOrderUserData](#CreateOrderUserData) | no | |
|
|
4988
|
+
| callback_url | string | no | Callback url for aggregator |
|
|
4991
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,9 +5012,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
5012
5012
|
|
|
5013
5013
|
| Properties | Type | Nullable | Description |
|
|
5014
5014
|
| ---------- | ---- | -------- | ----------- |
|
|
5015
|
-
| status | string | yes | Customer Credit status |
|
|
5016
5015
|
| merchant_customer_ref_id | string | yes | Unique aggregator customer id |
|
|
5017
5016
|
| status_message | string | yes | message to customer |
|
|
5017
|
+
| status | string | yes | Customer Credit status |
|
|
5018
5018
|
| balance | [BalanceDetails](#BalanceDetails) | no | Credit summary of user. |
|
|
5019
5019
|
|
|
5020
5020
|
---
|
|
@@ -5038,8 +5038,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
5038
5038
|
|
|
5039
5039
|
| Properties | Type | Nullable | Description |
|
|
5040
5040
|
| ---------- | ---- | -------- | ----------- |
|
|
5041
|
-
| status | boolean | yes | Aggregator's Operation is successful or not. |
|
|
5042
5041
|
| signup_url | string | yes | URL to which the user may redirect. |
|
|
5042
|
+
| status | boolean | yes | Aggregator's Operation is successful or not. |
|
|
5043
5043
|
|
|
5044
5044
|
---
|
|
5045
5045
|
|
|
@@ -5062,9 +5062,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
5062
5062
|
|
|
5063
5063
|
| Properties | Type | Nullable | Description |
|
|
5064
5064
|
| ---------- | ---- | -------- | ----------- |
|
|
5065
|
-
| status | boolean | yes | Operation is successful or not. |
|
|
5066
|
-
| signup_url | string | yes | URL to which the user may redirect. |
|
|
5067
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
|
+
| status | boolean | yes | Operation is successful or not. |
|
|
5068
5068
|
|
|
5069
5069
|
---
|
|
5070
5070
|
|
|
@@ -5087,90 +5087,90 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
5087
5087
|
|
|
5088
5088
|
| Properties | Type | Nullable | Description |
|
|
5089
5089
|
| ---------- | ---- | -------- | ----------- |
|
|
5090
|
-
|
|
|
5090
|
+
| land_mark | string | no | Land Mark |
|
|
5091
|
+
| state | string | yes | State |
|
|
5092
|
+
| city | string | yes | City |
|
|
5091
5093
|
| addressline2 | string | no | Address Line 2 |
|
|
5092
5094
|
| ownership_type | string | no | Address Owner Type |
|
|
5093
|
-
| city | string | yes | City |
|
|
5094
5095
|
| pincode | string | yes | Pincode |
|
|
5095
|
-
|
|
|
5096
|
-
| state | string | yes | State |
|
|
5096
|
+
| addressline1 | string | yes | Address Line 1 |
|
|
5097
5097
|
|
|
5098
5098
|
---
|
|
5099
5099
|
|
|
5100
5100
|
|
|
5101
5101
|
|
|
5102
5102
|
|
|
5103
|
-
#### [
|
|
5103
|
+
#### [UserPersonalInfoInDetails](#UserPersonalInfoInDetails)
|
|
5104
5104
|
|
|
5105
5105
|
| Properties | Type | Nullable | Description |
|
|
5106
5106
|
| ---------- | ---- | -------- | ----------- |
|
|
5107
|
-
|
|
|
5108
|
-
|
|
|
5109
|
-
|
|
|
5110
|
-
|
|
|
5111
|
-
|
|
|
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 |
|
|
5111
|
+
| fathers_name | string | no | Father's Name |
|
|
5112
5112
|
| pan | string | no | Pan Number |
|
|
5113
|
-
|
|
|
5114
|
-
|
|
|
5115
|
-
|
|
|
5116
|
-
|
|
|
5117
|
-
|
|
|
5113
|
+
| email_verified | boolean | yes | Is Email Verified or not |
|
|
5114
|
+
| passport | string | no | Passport |
|
|
5115
|
+
| mothers_name | string | no | Mother's Name |
|
|
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 |
|
|
5120
|
+
| voter_id | string | no | Voter ID Number |
|
|
5121
|
+
| gender | string | no | Gender |
|
|
5122
|
+
| email | string | no | Email |
|
|
5118
5123
|
|
|
5119
5124
|
---
|
|
5120
5125
|
|
|
5121
5126
|
|
|
5122
5127
|
|
|
5123
5128
|
|
|
5124
|
-
#### [
|
|
5129
|
+
#### [DeviceDetails](#DeviceDetails)
|
|
5125
5130
|
|
|
5126
5131
|
| Properties | Type | Nullable | Description |
|
|
5127
5132
|
| ---------- | ---- | -------- | ----------- |
|
|
5128
|
-
|
|
|
5129
|
-
|
|
|
5130
|
-
|
|
|
5131
|
-
|
|
|
5132
|
-
|
|
|
5133
|
-
|
|
|
5134
|
-
|
|
|
5135
|
-
| passport | string | no | Passport |
|
|
5136
|
-
| dob | string | yes | DOB |
|
|
5137
|
-
| pan | string | no | Pan Number |
|
|
5138
|
-
| driving_license | string | no | Driver License |
|
|
5139
|
-
| middle_name | string | no | middle Name |
|
|
5140
|
-
| address_as_per_id | [KYCAddress](#KYCAddress) | yes | Address details |
|
|
5141
|
-
| voter_id | string | no | Voter ID Number |
|
|
5142
|
-
| gender | string | no | Gender |
|
|
5143
|
-
| first_name | string | yes | First Name |
|
|
5133
|
+
| identifier_type | string | no | Static value = ip |
|
|
5134
|
+
| device_model | string | no | Device Model |
|
|
5135
|
+
| os | string | no | OS Name |
|
|
5136
|
+
| os_version | string | no | OS Version |
|
|
5137
|
+
| device_make | string | no | Device maker |
|
|
5138
|
+
| device_type | string | no | Device Type(E.g. Mobile) |
|
|
5139
|
+
| identification_number | string | no | IP |
|
|
5144
5140
|
|
|
5145
5141
|
---
|
|
5146
5142
|
|
|
5147
5143
|
|
|
5148
5144
|
|
|
5149
5145
|
|
|
5150
|
-
#### [
|
|
5146
|
+
#### [BusinessDetails](#BusinessDetails)
|
|
5151
5147
|
|
|
5152
5148
|
| Properties | Type | Nullable | Description |
|
|
5153
5149
|
| ---------- | ---- | -------- | ----------- |
|
|
5154
|
-
|
|
|
5155
|
-
|
|
|
5156
|
-
|
|
|
5150
|
+
| entity_type | string | no | Busineess Entity Type |
|
|
5151
|
+
| fssai | string | no | FDA License Number |
|
|
5152
|
+
| pan | string | no | Pan Number |
|
|
5153
|
+
| business_type | string | no | Business Type |
|
|
5154
|
+
| fda | string | no | Driver License |
|
|
5155
|
+
| shop_and_establishment | string | no | Shop Establishment |
|
|
5156
|
+
| name | string | no | Business Name |
|
|
5157
|
+
| vintage | string | no | Vintage |
|
|
5158
|
+
| business_ownership_type | string | no | business Ownershipp type(e.g Rented) |
|
|
5159
|
+
| address | [KYCAddress](#KYCAddress) | no | Address details |
|
|
5160
|
+
| gstin | string | no | GSTIN Number |
|
|
5157
5161
|
|
|
5158
5162
|
---
|
|
5159
5163
|
|
|
5160
5164
|
|
|
5161
5165
|
|
|
5162
5166
|
|
|
5163
|
-
#### [
|
|
5167
|
+
#### [MarketplaceInfo](#MarketplaceInfo)
|
|
5164
5168
|
|
|
5165
5169
|
| Properties | Type | Nullable | Description |
|
|
5166
5170
|
| ---------- | ---- | -------- | ----------- |
|
|
5167
|
-
|
|
|
5168
|
-
|
|
|
5169
|
-
|
|
|
5170
|
-
| device_model | string | no | Device Model |
|
|
5171
|
-
| identification_number | string | no | IP |
|
|
5172
|
-
| identifier_type | string | no | Static value = ip |
|
|
5173
|
-
| os | string | no | OS Name |
|
|
5171
|
+
| name | string | yes | Name of store |
|
|
5172
|
+
| membership_id | string | yes | merchant id |
|
|
5173
|
+
| date_of_joining | string | no | Date of joining |
|
|
5174
5174
|
|
|
5175
5175
|
---
|
|
5176
5176
|
|
|
@@ -5181,12 +5181,12 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
5181
5181
|
|
|
5182
5182
|
| Properties | Type | Nullable | Description |
|
|
5183
5183
|
| ---------- | ---- | -------- | ----------- |
|
|
5184
|
-
| business_info | [BusinessDetails](#BusinessDetails) | no | Business summary. |
|
|
5185
5184
|
| personal_info | [UserPersonalInfoInDetails](#UserPersonalInfoInDetails) | yes | Credit summary of user. |
|
|
5186
|
-
|
|
|
5185
|
+
| device | [DeviceDetails](#DeviceDetails) | no | Device Details. |
|
|
5187
5186
|
| mcc | string | no | Mcc |
|
|
5188
5187
|
| source | string | yes | callbackURL |
|
|
5189
|
-
|
|
|
5188
|
+
| business_info | [BusinessDetails](#BusinessDetails) | no | Business summary. |
|
|
5189
|
+
| marketplace_info | [MarketplaceInfo](#MarketplaceInfo) | no | Market Place info. |
|
|
5190
5190
|
| aggregator | string | yes | Aggregator Name |
|
|
5191
5191
|
|
|
5192
5192
|
---
|
|
@@ -5198,9 +5198,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
5198
5198
|
|
|
5199
5199
|
| Properties | Type | Nullable | Description |
|
|
5200
5200
|
| ---------- | ---- | -------- | ----------- |
|
|
5201
|
-
| session | string | yes | User Session |
|
|
5202
5201
|
| redirect_url | string | yes | URL to which the user may redirect. |
|
|
5203
5202
|
| status | boolean | yes | Operation Status |
|
|
5203
|
+
| session | string | yes | User Session |
|
|
5204
5204
|
|
|
5205
5205
|
---
|
|
5206
5206
|
|