@gofynd/fdk-client-javascript 0.1.37 → 1.0.1
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/README.md +24 -0
- package/application.d.ts +2 -1
- package/application.js +2 -1
- package/documentation/application/CART.md +315 -289
- package/documentation/application/CATALOG.md +438 -415
- package/documentation/application/FILESTORAGE.md +2 -0
- package/documentation/application/LEAD.md +18 -18
- package/documentation/application/LOGISTIC.md +45 -45
- package/documentation/application/ORDER.md +277 -277
- package/documentation/application/PAYMENT.md +251 -251
- package/documentation/application/POSCART.md +318 -292
- package/documentation/application/REWARDS.md +1 -0
- package/documentation/application/USER.md +19 -14
- package/documentation/platform/CART.md +465 -462
- package/documentation/platform/CATALOG.md +2792 -2711
- package/documentation/platform/COMPANYPROFILE.md +200 -362
- package/documentation/platform/DISCOUNT.md +86 -0
- package/documentation/platform/FILESTORAGE.md +2 -0
- package/documentation/platform/LEAD.md +60 -60
- package/documentation/platform/ORDER.md +1451 -1654
- package/documentation/platform/PAYMENT.md +94 -94
- package/documentation/platform/REWARDS.md +145 -0
- package/documentation/platform/USER.md +24 -14
- package/index.d.ts +4 -1
- package/index.js +13 -4
- package/package.json +9 -9
- package/platform.d.ts +2 -1
- package/platform.js +3 -2
- package/public.d.ts +1 -0
- package/public.js +3 -2
- package/sdk/application/ApplicationAPIClient.js +3 -1
- package/sdk/application/ApplicationClient.d.ts +16 -16
- package/sdk/application/ApplicationClient.js +32 -16
- package/sdk/application/ApplicationConfig.js +3 -2
- package/sdk/application/ApplicationModels.d.ts +0 -832
- package/sdk/application/ApplicationModels.js +3 -10574
- package/sdk/application/{client → Cart}/CartApplicationClient.d.ts +9 -3
- package/sdk/application/{client → Cart}/CartApplicationClient.js +316 -8
- package/sdk/application/Cart/CartApplicationModel.d.ts +81 -0
- package/sdk/application/Cart/CartApplicationModel.js +1136 -0
- package/sdk/application/{models/CartValidator.js → Cart/CartApplicationValidator.js} +17 -12
- package/sdk/application/{client → Catalog}/CatalogApplicationClient.d.ts +8 -5
- package/sdk/application/{client → Catalog}/CatalogApplicationClient.js +389 -8
- package/sdk/application/Catalog/CatalogApplicationModel.d.ts +117 -0
- package/sdk/application/Catalog/CatalogApplicationModel.js +1606 -0
- package/sdk/application/{models/CatalogValidator.js → Catalog/CatalogApplicationValidator.js} +4 -1
- package/sdk/application/{client → Common}/CommonApplicationClient.js +24 -2
- package/sdk/application/Common/CommonApplicationModel.d.ts +20 -0
- package/sdk/application/Common/CommonApplicationModel.js +228 -0
- package/sdk/{platform/models/CommonValidator.js → application/Common/CommonApplicationValidator.js} +3 -1
- package/sdk/application/{client → Communication}/CommunicationApplicationClient.js +43 -2
- package/sdk/application/Communication/CommunicationApplicationModel.d.ts +15 -0
- package/sdk/application/Communication/CommunicationApplicationModel.js +144 -0
- package/sdk/application/{models/CommunicationValidator.js → Communication/CommunicationApplicationValidator.js} +5 -3
- package/sdk/application/{client → Configuration}/ConfigurationApplicationClient.js +202 -2
- package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +111 -0
- package/sdk/application/Configuration/ConfigurationApplicationModel.js +1182 -0
- package/sdk/application/{models/ConfigurationValidator.js → Configuration/ConfigurationApplicationValidator.js} +4 -2
- package/sdk/application/{client → Content}/ContentApplicationClient.js +217 -2
- package/sdk/application/Content/ContentApplicationModel.d.ts +105 -0
- package/sdk/application/Content/ContentApplicationModel.js +1349 -0
- package/sdk/application/{models/ContentValidator.js → Content/ContentApplicationValidator.js} +3 -1
- package/sdk/application/{client → FileStorage}/FileStorageApplicationClient.js +35 -2
- package/sdk/application/FileStorage/FileStorageApplicationModel.d.ts +21 -0
- package/sdk/application/FileStorage/FileStorageApplicationModel.js +244 -0
- package/sdk/application/{models/FileStorageValidator.js → FileStorage/FileStorageApplicationValidator.js} +6 -4
- package/sdk/application/{client → Lead}/LeadApplicationClient.js +83 -2
- package/sdk/application/Lead/LeadApplicationModel.d.ts +55 -0
- package/sdk/application/Lead/LeadApplicationModel.js +690 -0
- package/sdk/application/{models/LeadValidator.js → Lead/LeadApplicationValidator.js} +6 -4
- package/sdk/application/{client → Logistic}/LogisticApplicationClient.js +46 -2
- package/sdk/application/Logistic/LogisticApplicationModel.d.ts +26 -0
- package/sdk/application/Logistic/LogisticApplicationModel.js +286 -0
- package/sdk/application/{models/LogisticValidator.js → Logistic/LogisticApplicationValidator.js} +5 -3
- package/sdk/application/{client → Order}/OrderApplicationClient.js +148 -2
- package/sdk/application/Order/OrderApplicationModel.d.ts +67 -0
- package/sdk/application/Order/OrderApplicationModel.js +872 -0
- package/sdk/application/{models/OrderValidator.js → Order/OrderApplicationValidator.js} +5 -3
- package/sdk/application/{client → Payment}/PaymentApplicationClient.js +530 -2
- package/sdk/application/Payment/PaymentApplicationModel.d.ts +96 -0
- package/sdk/application/Payment/PaymentApplicationModel.js +1318 -0
- package/sdk/application/{models/PaymentValidator.js → Payment/PaymentApplicationValidator.js} +25 -23
- package/sdk/application/{client → PosCart}/PosCartApplicationClient.d.ts +9 -3
- package/sdk/application/{client → PosCart}/PosCartApplicationClient.js +343 -8
- package/sdk/application/PosCart/PosCartApplicationModel.d.ts +79 -0
- package/sdk/application/PosCart/PosCartApplicationModel.js +1132 -0
- package/sdk/application/{models/PosCartValidator.js → PosCart/PosCartApplicationValidator.js} +18 -13
- package/sdk/application/{client → Rewards}/RewardsApplicationClient.js +83 -2
- package/sdk/application/Rewards/RewardsApplicationModel.d.ts +23 -0
- package/sdk/application/Rewards/RewardsApplicationModel.js +276 -0
- package/sdk/application/{models/RewardsValidator.js → Rewards/RewardsApplicationValidator.js} +6 -4
- package/sdk/application/{client → Share}/ShareApplicationClient.js +89 -2
- package/sdk/application/Share/ShareApplicationModel.d.ts +16 -0
- package/sdk/application/Share/ShareApplicationModel.js +178 -0
- package/sdk/application/{models/ShareValidator.js → Share/ShareApplicationValidator.js} +4 -2
- package/sdk/application/{client → Theme}/ThemeApplicationClient.js +46 -2
- package/sdk/application/Theme/ThemeApplicationModel.d.ts +49 -0
- package/sdk/application/Theme/ThemeApplicationModel.js +486 -0
- package/sdk/application/{models/ThemeValidator.js → Theme/ThemeApplicationValidator.js} +3 -1
- package/sdk/application/{client → User}/UserApplicationClient.js +407 -2
- package/sdk/application/User/UserApplicationModel.d.ts +95 -0
- package/sdk/application/User/UserApplicationModel.js +998 -0
- package/sdk/application/{models/UserValidator.js → User/UserApplicationValidator.js} +31 -29
- package/sdk/application/index.d.ts +18 -0
- package/sdk/application/index.js +33 -0
- package/sdk/common/AxiosHelper.js +23 -10
- package/sdk/common/Logger.d.ts +2 -0
- package/sdk/common/Logger.js +6 -0
- package/sdk/common/curlHelper.d.ts +2 -0
- package/sdk/common/curlHelper.js +95 -0
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +101 -0
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +399 -0
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +11 -0
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +56 -0
- package/sdk/platform/{client → Analytics}/AnalyticsPlatformClient.js +60 -2
- package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +23 -0
- package/sdk/platform/Analytics/AnalyticsPlatformModel.js +252 -0
- package/sdk/platform/{models/AnalyticsValidator.js → Analytics/AnalyticsPlatformValidator.js} +5 -4
- package/sdk/platform/{client → AuditTrail}/AuditTrailPlatformClient.js +48 -2
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +18 -0
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +144 -0
- package/sdk/platform/{models/AuditTrailValidator.js → AuditTrail/AuditTrailPlatformValidator.js} +3 -2
- package/sdk/platform/{client → Billing}/BillingPlatformClient.js +162 -2
- package/sdk/platform/Billing/BillingPlatformModel.d.ts +65 -0
- package/sdk/platform/Billing/BillingPlatformModel.js +906 -0
- package/sdk/platform/{models/BillingValidator.js → Billing/BillingPlatformValidator.js} +6 -5
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +293 -0
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +1001 -0
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +20 -0
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +138 -0
- package/sdk/platform/Cart/CartPlatformModel.d.ts +104 -0
- package/sdk/platform/Cart/CartPlatformModel.js +1516 -0
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +856 -0
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +2927 -0
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +56 -0
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +389 -0
- package/sdk/platform/{client → Catalog}/CatalogPlatformClient.js +1402 -349
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +317 -0
- package/sdk/platform/Catalog/CatalogPlatformModel.js +4702 -0
- package/sdk/platform/{models/CatalogValidator.js → Catalog/CatalogPlatformValidator.js} +92 -91
- package/sdk/platform/{client → Common}/CommonPlatformClient.js +28 -2
- package/sdk/platform/Common/CommonPlatformModel.d.ts +20 -0
- package/sdk/platform/Common/CommonPlatformModel.js +228 -0
- package/sdk/{application/models/CommonValidator.js → platform/Common/CommonPlatformValidator.js} +2 -1
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +611 -0
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +2243 -0
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +43 -0
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +277 -0
- package/sdk/platform/{client → Communication}/CommunicationPlatformClient.js +17 -2
- package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +102 -0
- package/sdk/platform/Communication/CommunicationPlatformModel.js +1312 -0
- package/sdk/platform/{models/CommunicationValidator.js → Communication/CommunicationPlatformValidator.js} +2 -1
- package/sdk/platform/{client → CompanyProfile}/CompanyProfilePlatformClient.d.ts +0 -9
- package/sdk/platform/{client → CompanyProfile}/CompanyProfilePlatformClient.js +176 -28
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +44 -0
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +706 -0
- package/sdk/platform/{models/CompanyProfileValidator.d.ts → CompanyProfile/CompanyProfilePlatformValidator.d.ts} +0 -1
- package/sdk/platform/{models/CompanyProfileValidator.js → CompanyProfile/CompanyProfilePlatformValidator.js} +9 -14
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +309 -0
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +1322 -0
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +31 -0
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +164 -0
- package/sdk/platform/{client → Configuration}/ConfigurationPlatformClient.js +284 -2
- package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +185 -0
- package/sdk/platform/Configuration/ConfigurationPlatformModel.js +2072 -0
- package/sdk/platform/{models/ConfigurationValidator.js → Configuration/ConfigurationPlatformValidator.js} +9 -8
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +781 -0
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +3074 -0
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +71 -0
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +422 -0
- package/sdk/platform/Content/ContentPlatformModel.d.ts +105 -0
- package/sdk/platform/Content/ContentPlatformModel.js +1349 -0
- package/sdk/platform/{client → Discount}/DiscountPlatformClient.d.ts +11 -0
- package/sdk/platform/{client → Discount}/DiscountPlatformClient.js +187 -2
- package/sdk/platform/Discount/DiscountPlatformModel.d.ts +15 -0
- package/sdk/platform/Discount/DiscountPlatformModel.js +176 -0
- package/sdk/platform/{models/DiscountValidator.d.ts → Discount/DiscountPlatformValidator.d.ts} +1 -0
- package/sdk/platform/{models/DiscountValidator.js → Discount/DiscountPlatformValidator.js} +13 -5
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +114 -0
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +301 -0
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +7 -0
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +38 -0
- package/sdk/platform/{client → FileStorage}/FileStoragePlatformClient.js +78 -2
- package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +21 -0
- package/sdk/platform/FileStorage/FileStoragePlatformModel.js +244 -0
- package/sdk/platform/{models/FileStorageValidator.js → FileStorage/FileStoragePlatformValidator.js} +6 -5
- package/sdk/platform/{client → Inventory}/InventoryPlatformClient.js +163 -2
- package/sdk/platform/Inventory/InventoryPlatformModel.d.ts +62 -0
- package/sdk/platform/Inventory/InventoryPlatformModel.js +1178 -0
- package/sdk/platform/{models/InventoryValidator.js → Inventory/InventoryPlatformValidator.js} +5 -4
- package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +138 -0
- package/sdk/platform/Lead/LeadPlatformApplicationClient.js +559 -0
- package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +16 -0
- package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +90 -0
- package/sdk/platform/{client → Lead}/LeadPlatformClient.js +142 -2
- package/sdk/platform/Lead/LeadPlatformModel.d.ts +55 -0
- package/sdk/platform/Lead/LeadPlatformModel.js +690 -0
- package/sdk/platform/{models/LeadValidator.js → Lead/LeadPlatformValidator.js} +7 -6
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +59 -0
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +207 -0
- package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +6 -0
- package/sdk/platform/Order/OrderPlatformApplicationValidator.js +37 -0
- package/sdk/platform/{client → Order}/OrderPlatformClient.d.ts +24 -55
- package/sdk/platform/{client → Order}/OrderPlatformClient.js +693 -146
- package/sdk/platform/Order/OrderPlatformModel.d.ts +222 -0
- package/sdk/platform/Order/OrderPlatformModel.js +3466 -0
- package/sdk/platform/{models/OrderValidator.d.ts → Order/OrderPlatformValidator.d.ts} +2 -3
- package/sdk/platform/{models/OrderValidator.js → Order/OrderPlatformValidator.js} +32 -48
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +30 -0
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +100 -0
- package/sdk/platform/Partner/PartnerPlatformApplicationValidator.d.ts +5 -0
- package/sdk/platform/Partner/PartnerPlatformApplicationValidator.js +20 -0
- package/sdk/platform/Partner/PartnerPlatformModel.d.ts +7 -0
- package/sdk/platform/Partner/PartnerPlatformModel.js +54 -0
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +108 -0
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +498 -0
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +14 -0
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +73 -0
- package/sdk/platform/{client → Payment}/PaymentPlatformClient.js +141 -2
- package/sdk/platform/Payment/PaymentPlatformModel.d.ts +44 -0
- package/sdk/platform/Payment/PaymentPlatformModel.js +552 -0
- package/sdk/platform/{models/PaymentValidator.js → Payment/PaymentPlatformValidator.js} +6 -5
- package/sdk/platform/PlatformAPIClient.js +2 -1
- package/sdk/platform/PlatformApplicationClient.d.ts +2824 -18486
- package/sdk/platform/PlatformApplicationClient.js +3772 -13928
- package/sdk/platform/PlatformClient.d.ts +2824 -2881
- package/sdk/platform/PlatformClient.js +3710 -3145
- package/sdk/platform/PlatformConfig.js +2 -1
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +150 -0
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +597 -0
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +16 -0
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +91 -0
- package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +24 -0
- package/sdk/platform/Rewards/RewardsPlatformModel.js +294 -0
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +72 -0
- package/sdk/platform/Share/SharePlatformApplicationClient.js +235 -0
- package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +7 -0
- package/sdk/platform/Share/SharePlatformApplicationValidator.js +35 -0
- package/sdk/platform/Share/SharePlatformModel.d.ts +15 -0
- package/sdk/platform/Share/SharePlatformModel.js +170 -0
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +238 -0
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +997 -0
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +27 -0
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +155 -0
- package/sdk/platform/Theme/ThemePlatformModel.d.ts +49 -0
- package/sdk/platform/Theme/ThemePlatformModel.js +486 -0
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +121 -0
- package/sdk/platform/User/UserPlatformApplicationClient.js +506 -0
- package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +15 -0
- package/sdk/platform/User/UserPlatformApplicationValidator.js +79 -0
- package/sdk/platform/User/UserPlatformModel.d.ts +95 -0
- package/sdk/platform/User/UserPlatformModel.js +998 -0
- package/sdk/platform/{client → Webhook}/WebhookPlatformClient.js +92 -2
- package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +17 -0
- package/sdk/platform/Webhook/WebhookPlatformModel.js +208 -0
- package/sdk/platform/{models/WebhookValidator.js → Webhook/WebhookPlatformValidator.js} +4 -3
- package/sdk/platform/index.d.ts +24 -0
- package/sdk/platform/index.js +45 -0
- package/sdk/public/{client → Configuration}/ConfigurationPublicClient.js +26 -1
- package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +20 -0
- package/sdk/public/Configuration/ConfigurationPublicModel.js +230 -0
- package/sdk/public/{models/ConfigurationValidator.js → Configuration/ConfigurationPublicValidator.js} +3 -1
- package/sdk/public/{client → Inventory}/InventoryPublicClient.js +76 -1
- package/sdk/public/Inventory/InventoryPublicModel.d.ts +22 -0
- package/sdk/public/Inventory/InventoryPublicModel.js +334 -0
- package/sdk/public/{models/InventoryValidator.js → Inventory/InventoryPublicValidator.js} +4 -2
- package/sdk/public/PublicClient.d.ts +3 -3
- package/sdk/public/PublicClient.js +8 -3
- package/sdk/public/{client → Webhook}/WebhookPublicClient.js +30 -1
- package/sdk/public/Webhook/WebhookPublicModel.d.ts +17 -0
- package/sdk/public/Webhook/WebhookPublicModel.js +208 -0
- package/sdk/public/{models/WebhookValidator.js → Webhook/WebhookPublicValidator.js} +4 -2
- package/sdk/public/index.d.ts +5 -0
- package/sdk/public/index.js +7 -0
- package/sdk/platform/PlatformApplicationModels.d.ts +0 -328
- package/sdk/platform/PlatformApplicationModels.js +0 -22658
- package/sdk/platform/PlatformModels.d.ts +0 -1477
- package/sdk/platform/PlatformModels.js +0 -20646
- package/sdk/platform/models/CartValidator.d.ts +0 -0
- package/sdk/platform/models/CartValidator.js +0 -0
- package/sdk/platform/models/ContentValidator.d.ts +0 -0
- package/sdk/platform/models/ContentValidator.js +0 -0
- package/sdk/platform/models/PartnerValidator.d.ts +0 -0
- package/sdk/platform/models/PartnerValidator.js +0 -0
- package/sdk/platform/models/RewardsValidator.d.ts +0 -0
- package/sdk/platform/models/RewardsValidator.js +0 -0
- package/sdk/platform/models/ShareValidator.d.ts +0 -0
- package/sdk/platform/models/ShareValidator.js +0 -0
- package/sdk/platform/models/ThemeValidator.d.ts +0 -0
- package/sdk/platform/models/ThemeValidator.js +0 -0
- package/sdk/platform/models/UserValidator.d.ts +0 -0
- package/sdk/platform/models/UserValidator.js +0 -0
- package/sdk/public/PublicModels.d.ts +0 -50
- package/sdk/public/PublicModels.js +0 -712
- package/sdk/application/{models/CartValidator.d.ts → Cart/CartApplicationValidator.d.ts} +0 -0
- package/sdk/application/{models/CatalogValidator.d.ts → Catalog/CatalogApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → Common}/CommonApplicationClient.d.ts +0 -0
- package/sdk/application/{models/CommonValidator.d.ts → Common/CommonApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → Communication}/CommunicationApplicationClient.d.ts +0 -0
- package/sdk/application/{models/CommunicationValidator.d.ts → Communication/CommunicationApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → Configuration}/ConfigurationApplicationClient.d.ts +0 -0
- package/sdk/application/{models/ConfigurationValidator.d.ts → Configuration/ConfigurationApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → Content}/ContentApplicationClient.d.ts +0 -0
- package/sdk/application/{models/ContentValidator.d.ts → Content/ContentApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → FileStorage}/FileStorageApplicationClient.d.ts +0 -0
- package/sdk/application/{models/FileStorageValidator.d.ts → FileStorage/FileStorageApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → Lead}/LeadApplicationClient.d.ts +0 -0
- package/sdk/application/{models/LeadValidator.d.ts → Lead/LeadApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → Logistic}/LogisticApplicationClient.d.ts +0 -0
- package/sdk/application/{models/LogisticValidator.d.ts → Logistic/LogisticApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → Order}/OrderApplicationClient.d.ts +0 -0
- package/sdk/application/{models/OrderValidator.d.ts → Order/OrderApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → Payment}/PaymentApplicationClient.d.ts +0 -0
- package/sdk/application/{models/PaymentValidator.d.ts → Payment/PaymentApplicationValidator.d.ts} +0 -0
- package/sdk/application/{models/PosCartValidator.d.ts → PosCart/PosCartApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → Rewards}/RewardsApplicationClient.d.ts +0 -0
- package/sdk/application/{models/RewardsValidator.d.ts → Rewards/RewardsApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → Share}/ShareApplicationClient.d.ts +0 -0
- package/sdk/application/{models/ShareValidator.d.ts → Share/ShareApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → Theme}/ThemeApplicationClient.d.ts +0 -0
- package/sdk/application/{models/ThemeValidator.d.ts → Theme/ThemeApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → User}/UserApplicationClient.d.ts +0 -0
- package/sdk/application/{models/UserValidator.d.ts → User/UserApplicationValidator.d.ts} +0 -0
- package/sdk/platform/{client → Analytics}/AnalyticsPlatformClient.d.ts +0 -0
- package/sdk/platform/{models/AnalyticsValidator.d.ts → Analytics/AnalyticsPlatformValidator.d.ts} +0 -0
- package/sdk/platform/{client → AuditTrail}/AuditTrailPlatformClient.d.ts +0 -0
- package/sdk/platform/{models/AuditTrailValidator.d.ts → AuditTrail/AuditTrailPlatformValidator.d.ts} +0 -0
- package/sdk/platform/{client → Billing}/BillingPlatformClient.d.ts +0 -0
- package/sdk/platform/{models/BillingValidator.d.ts → Billing/BillingPlatformValidator.d.ts} +0 -0
- package/sdk/platform/{client → Catalog}/CatalogPlatformClient.d.ts +149 -149
- package/sdk/platform/{models/CatalogValidator.d.ts → Catalog/CatalogPlatformValidator.d.ts} +21 -21
- /package/sdk/platform/{client → Common}/CommonPlatformClient.d.ts +0 -0
- /package/sdk/platform/{models/CommonValidator.d.ts → Common/CommonPlatformValidator.d.ts} +0 -0
- /package/sdk/platform/{client → Communication}/CommunicationPlatformClient.d.ts +0 -0
- /package/sdk/platform/{models/CommunicationValidator.d.ts → Communication/CommunicationPlatformValidator.d.ts} +0 -0
- /package/sdk/platform/{client → Configuration}/ConfigurationPlatformClient.d.ts +0 -0
- /package/sdk/platform/{models/ConfigurationValidator.d.ts → Configuration/ConfigurationPlatformValidator.d.ts} +0 -0
- /package/sdk/platform/{client → FileStorage}/FileStoragePlatformClient.d.ts +0 -0
- /package/sdk/platform/{models/FileStorageValidator.d.ts → FileStorage/FileStoragePlatformValidator.d.ts} +0 -0
- /package/sdk/platform/{client → Inventory}/InventoryPlatformClient.d.ts +0 -0
- /package/sdk/platform/{models/InventoryValidator.d.ts → Inventory/InventoryPlatformValidator.d.ts} +0 -0
- /package/sdk/platform/{client → Lead}/LeadPlatformClient.d.ts +0 -0
- /package/sdk/platform/{models/LeadValidator.d.ts → Lead/LeadPlatformValidator.d.ts} +0 -0
- /package/sdk/platform/{client → Payment}/PaymentPlatformClient.d.ts +0 -0
- /package/sdk/platform/{models/PaymentValidator.d.ts → Payment/PaymentPlatformValidator.d.ts} +0 -0
- /package/sdk/platform/{client → Webhook}/WebhookPlatformClient.d.ts +0 -0
- /package/sdk/platform/{models/WebhookValidator.d.ts → Webhook/WebhookPlatformValidator.d.ts} +0 -0
- /package/sdk/public/{client → Configuration}/ConfigurationPublicClient.d.ts +0 -0
- /package/sdk/public/{models/ConfigurationValidator.d.ts → Configuration/ConfigurationPublicValidator.d.ts} +0 -0
- /package/sdk/public/{client → Inventory}/InventoryPublicClient.d.ts +0 -0
- /package/sdk/public/{models/InventoryValidator.d.ts → Inventory/InventoryPublicValidator.d.ts} +0 -0
- /package/sdk/public/{client → Webhook}/WebhookPublicClient.d.ts +0 -0
- /package/sdk/public/{models/WebhookValidator.d.ts → Webhook/WebhookPublicValidator.d.ts} +0 -0
|
@@ -3385,8 +3385,8 @@ Success. Check the example shown below
|
|
|
3385
3385
|
"data": {
|
|
3386
3386
|
"amount": 2190000,
|
|
3387
3387
|
"order_id": "order_JeaZ5ryKO01rno",
|
|
3388
|
-
"email": "
|
|
3389
|
-
"contact": "
|
|
3388
|
+
"email": "abc@example.com",
|
|
3389
|
+
"contact": "9999999999",
|
|
3390
3390
|
"currency": "INR",
|
|
3391
3391
|
"customer_id": "cust_CZgcLVGsGP8BUQ",
|
|
3392
3392
|
"callback_url": "https://api.fyndx0.com/service/webhooks/payment/v1.0/callback/link/?razorpay_order_id=order_JeaZ5ryKO01rno",
|
|
@@ -3826,14 +3826,14 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
3826
3826
|
| ---------- | ---- | -------- | ----------- |
|
|
3827
3827
|
| pin | string | no | Masked pin |
|
|
3828
3828
|
| merchant_id | string | no | Unique merchant id |
|
|
3829
|
-
| api | string | no | Payment gateway api endpoint |
|
|
3830
|
-
| sdk | boolean | no | SDK |
|
|
3831
3829
|
| secret | string | yes | Masked payment gateway api secret |
|
|
3832
|
-
|
|
|
3833
|
-
|
|
|
3830
|
+
| user_id | string | no | Registered User id |
|
|
3831
|
+
| sdk | boolean | no | SDK |
|
|
3832
|
+
| api | string | no | Payment gateway api endpoint |
|
|
3834
3833
|
| merchant_key | string | no | Unique merchant key |
|
|
3834
|
+
| config_type | string | yes | Fynd or self payment gateway |
|
|
3835
3835
|
| key | string | yes | Payment gateway api key |
|
|
3836
|
-
|
|
|
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
|
-
|
|
|
3847
|
+
| razorpay | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
|
|
3848
|
+
| env | string | yes | Environment i.e Live or Test |
|
|
3849
3849
|
| success | boolean | yes | |
|
|
3850
|
-
| stripe | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
|
|
3851
3850
|
| rupifi | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
|
|
3852
3851
|
| mswipe | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
|
|
3853
|
-
| razorpay | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
|
|
3854
|
-
| env | string | yes | Environment i.e Live or Test |
|
|
3855
|
-
| ccavenue | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
|
|
3856
3852
|
| payumoney | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
|
|
3853
|
+
| juspay | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
|
|
3854
|
+
| simpl | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
|
|
3855
|
+
| stripe | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
|
|
3856
|
+
| ccavenue | [AggregatorConfigDetail](#AggregatorConfigDetail) | no | |
|
|
3857
3857
|
|
|
3858
3858
|
---
|
|
3859
3859
|
|
|
@@ -3864,8 +3864,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
3864
3864
|
|
|
3865
3865
|
| Properties | Type | Nullable | Description |
|
|
3866
3866
|
| ---------- | ---- | -------- | ----------- |
|
|
3867
|
-
| description | string | yes | Error human understandable description. |
|
|
3868
3867
|
| code | string | yes | Error descrption code. |
|
|
3868
|
+
| description | string | yes | Error human understandable description. |
|
|
3869
3869
|
|
|
3870
3870
|
---
|
|
3871
3871
|
|
|
@@ -3889,9 +3889,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
3889
3889
|
| Properties | Type | Nullable | Description |
|
|
3890
3890
|
| ---------- | ---- | -------- | ----------- |
|
|
3891
3891
|
| card_id | string | yes | Card token of payment gateway. |
|
|
3892
|
+
| name_on_card | string | no | |
|
|
3892
3893
|
| nickname | string | no | |
|
|
3893
3894
|
| 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
|
-
| success | boolean | yes | Response is successful or not. |
|
|
3907
3906
|
| message | string | no | Human readable message. |
|
|
3907
|
+
| success | boolean | yes | Response is successful or not. |
|
|
3908
3908
|
|
|
3909
3909
|
---
|
|
3910
3910
|
|
|
@@ -3915,8 +3915,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
3915
3915
|
|
|
3916
3916
|
| Properties | Type | Nullable | Description |
|
|
3917
3917
|
| ---------- | ---- | -------- | ----------- |
|
|
3918
|
-
| aggregator | string | yes | Payment gateway name. |
|
|
3919
3918
|
| customer_id | string | no | Payment gateway customer id. |
|
|
3919
|
+
| aggregator | string | yes | Payment gateway name. |
|
|
3920
3920
|
| api | string | no | Payment gateway CARD api endpoint |
|
|
3921
3921
|
|
|
3922
3922
|
---
|
|
@@ -3928,9 +3928,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
3928
3928
|
|
|
3929
3929
|
| Properties | Type | Nullable | Description |
|
|
3930
3930
|
| ---------- | ---- | -------- | ----------- |
|
|
3931
|
-
| success | boolean | yes | Response is successful or not. |
|
|
3932
3931
|
| cards | [CardPaymentGateway](#CardPaymentGateway) | yes | Card's payment gateway with customer id. |
|
|
3933
3932
|
| message | string | yes | Human readable message. |
|
|
3933
|
+
| success | boolean | yes | Response is successful or not. |
|
|
3934
3934
|
|
|
3935
3935
|
---
|
|
3936
3936
|
|
|
@@ -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
|
+
| 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 |
|
|
3945
3947
|
| nickname | string | no | nickname |
|
|
3948
|
+
| expired | boolean | no | expired |
|
|
3946
3949
|
| card_reference | string | no | card_reference |
|
|
3947
|
-
|
|
|
3948
|
-
| compliant_with_tokenisation_guidelines | boolean | no | If card is tokenised or not |
|
|
3950
|
+
| card_fingerprint | string | no | card_fingerprint |
|
|
3949
3951
|
| card_brand_image | string | no | card_brand_image |
|
|
3952
|
+
| aggregator_name | string | yes | aggregator_name |
|
|
3950
3953
|
| card_token | string | no | card_token |
|
|
3951
3954
|
| card_number | string | no | card_number |
|
|
3952
|
-
|
|
|
3953
|
-
|
|
|
3955
|
+
| card_type | string | no | card_type |
|
|
3956
|
+
| card_issuer | string | no | card_issuer |
|
|
3957
|
+
| card_brand | string | no | card_brand |
|
|
3954
3958
|
| exp_month | number | no | exp_month |
|
|
3959
|
+
| card_id | string | no | card_id |
|
|
3955
3960
|
| card_name | string | no | card_name |
|
|
3956
|
-
| aggregator_name | string | yes | aggregator_name |
|
|
3957
|
-
| expired | boolean | no | expired |
|
|
3958
|
-
| card_fingerprint | string | no | card_fingerprint |
|
|
3959
|
-
| card_brand | string | no | card_brand |
|
|
3960
|
-
| card_issuer | string | no | card_issuer |
|
|
3961
3961
|
|
|
3962
3962
|
---
|
|
3963
3963
|
|
|
@@ -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
|
-
| success | boolean | yes | Response is successful or not. |
|
|
3973
3972
|
| message | string | yes | Human readable message. |
|
|
3973
|
+
| success | boolean | yes | Response is successful or not. |
|
|
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
|
-
| success | boolean | yes | Response is successful or not. |
|
|
3996
3995
|
| message | string | no | Human readable message. |
|
|
3996
|
+
| success | boolean | yes | Response is successful or not. |
|
|
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
|
-
| delivery_address | string | no | Extra meta fields. |
|
|
4008
4007
|
| order_items | [string] | no | Extra meta fields. |
|
|
4009
4008
|
| phone_number | string | yes | User mobile number without country code. |
|
|
4010
|
-
|
|
|
4009
|
+
| merchant_params | string | no | Extra meta fields. |
|
|
4011
4010
|
| payload | string | no | Hashed payload string. |
|
|
4012
|
-
|
|
|
4011
|
+
| delivery_address | string | no | Extra meta fields. |
|
|
4013
4012
|
| aggregator | string | yes | Payment gateway name in camel case i.e Simpl, Rupifi |
|
|
4014
|
-
|
|
|
4013
|
+
| transaction_amount_in_paise | number | yes | Payable amount in paise |
|
|
4014
|
+
| billing_address | string | no | Extra meta fields. |
|
|
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
|
-
| success | boolean | yes | Response is successful or not |
|
|
4027
4026
|
| message | string | yes | Error or success message. |
|
|
4027
|
+
| success | boolean | yes | Response is successful or not |
|
|
4028
4028
|
|
|
4029
4029
|
---
|
|
4030
4030
|
|
|
@@ -4036,10 +4036,10 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4036
4036
|
| Properties | Type | Nullable | Description |
|
|
4037
4037
|
| ---------- | ---- | -------- | ----------- |
|
|
4038
4038
|
| verified | boolean | no | Already Verified flag from payment gateway i.e Mswipe |
|
|
4039
|
+
| amount | number | yes | Chargable amount of order. |
|
|
4039
4040
|
| order_id | string | yes | Unique order id. |
|
|
4040
4041
|
| transaction_token | string | no | Transaction token of payment gateway. |
|
|
4041
4042
|
| aggregator | string | yes | Payment gateway name i.e Simpl, Mswipe |
|
|
4042
|
-
| amount | number | yes | Chargable amount of order. |
|
|
4043
4043
|
|
|
4044
4044
|
---
|
|
4045
4045
|
|
|
@@ -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
|
-
| success | boolean | yes | Response is successful or not. |
|
|
4054
4053
|
| 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
|
+
| message | string | yes | Human readable message. |
|
|
4055
4057
|
| order_id | string | yes | Unique order id. |
|
|
4056
4058
|
| cart_id | string | no | Cart id of customer |
|
|
4057
|
-
| message | string | yes | Human readable message. |
|
|
4058
|
-
| delivery_address_id | string | no | Delivery adddress id of customer |
|
|
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
|
-
| currency | string | yes | Currency code. |
|
|
4071
4070
|
| timeout | number | no | Payment polling timeout if not recieved response |
|
|
4072
|
-
| email | string | yes | Customer valid email |
|
|
4073
|
-
| merchant_order_id | string | yes | Unique fynd order id |
|
|
4074
|
-
| order_id | string | yes | Payment gateway order id |
|
|
4075
4071
|
| customer_id | string | yes | Payment gateway customer id. |
|
|
4076
|
-
|
|
|
4072
|
+
| method | string | yes | Payment method |
|
|
4077
4073
|
| vpa | string | no | Customer vpa address |
|
|
4078
|
-
|
|
|
4079
|
-
| razorpay_payment_id | string | no | Payment gateway payment id |
|
|
4074
|
+
| merchant_order_id | string | yes | Unique fynd order id |
|
|
4080
4075
|
| amount | number | yes | Payable amount. |
|
|
4081
|
-
|
|
|
4076
|
+
| email | string | yes | Customer valid email |
|
|
4077
|
+
| currency | string | yes | Currency code. |
|
|
4078
|
+
| order_id | string | yes | Payment gateway order id |
|
|
4079
|
+
| razorpay_payment_id | string | no | Payment gateway payment id |
|
|
4080
|
+
| 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
|
-
|
|
|
4092
|
+
| customer_id | string | no | Payment gateway customer id. |
|
|
4093
|
+
| status | string | no | Status of payment. |
|
|
4094
|
+
| method | string | yes | Payment method |
|
|
4095
|
+
| vpa | string | no | Customer vpa address |
|
|
4096
|
+
| upi_poll_url | string | no | UPI poll url. |
|
|
4093
4097
|
| success | boolean | yes | Response is successful or not. |
|
|
4098
|
+
| merchant_order_id | string | yes | order id |
|
|
4094
4099
|
| aggregator_order_id | string | no | Payment order id |
|
|
4100
|
+
| amount | number | no | Payable amount. |
|
|
4095
4101
|
| timeout | number | no | timeout. |
|
|
4096
|
-
| status | string | no | Status of payment. |
|
|
4097
4102
|
| bqr_image | string | no | Bharath qr image url. |
|
|
4098
|
-
| upi_poll_url | string | no | UPI poll url. |
|
|
4099
|
-
| customer_id | string | no | Payment gateway customer id. |
|
|
4100
4103
|
| virtual_id | string | no | Payment virtual address. |
|
|
4101
|
-
|
|
|
4104
|
+
| currency | string | no | Currency code. |
|
|
4102
4105
|
| polling_url | string | yes | Polling url. |
|
|
4103
|
-
|
|
|
4106
|
+
| razorpay_payment_id | string | no | Payment id. |
|
|
4104
4107
|
| aggregator | string | yes | Payment gateway name |
|
|
4105
|
-
| merchant_order_id | string | yes | order id |
|
|
4106
|
-
| amount | number | no | Payable amount. |
|
|
4107
|
-
| method | string | yes | Payment method |
|
|
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
|
-
| currency | string | yes | Currency code. |
|
|
4119
|
-
| email | string | yes | Customer valid email |
|
|
4120
|
-
| status | string | yes | Status of payment. |
|
|
4121
|
-
| order_id | string | yes | Payment gateway order id |
|
|
4122
4118
|
| customer_id | string | yes | Payment gateway customer id. |
|
|
4123
|
-
|
|
|
4119
|
+
| status | string | yes | Status of payment. |
|
|
4120
|
+
| method | string | yes | Payment method |
|
|
4124
4121
|
| vpa | string | yes | Customer vpa address |
|
|
4125
|
-
| aggregator | string | yes | Payment gateway name |
|
|
4126
4122
|
| merchant_order_id | string | yes | Unique fynd order id |
|
|
4127
4123
|
| amount | number | yes | Payable amount. |
|
|
4128
|
-
|
|
|
4124
|
+
| email | string | yes | Customer valid email |
|
|
4125
|
+
| currency | string | yes | Currency code. |
|
|
4126
|
+
| order_id | string | yes | Payment gateway order id |
|
|
4127
|
+
| aggregator | string | yes | Payment gateway name |
|
|
4128
|
+
| contact | string | yes | Customer valid mobile number |
|
|
4129
4129
|
|
|
4130
4130
|
---
|
|
4131
4131
|
|
|
@@ -4136,9 +4136,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4136
4136
|
|
|
4137
4137
|
| Properties | Type | Nullable | Description |
|
|
4138
4138
|
| ---------- | ---- | -------- | ----------- |
|
|
4139
|
-
| success | boolean | no | Response is successful or not |
|
|
4140
|
-
| redirect_url | string | no | Redirect url |
|
|
4141
4139
|
| status | string | yes | Payment status |
|
|
4140
|
+
| redirect_url | string | no | Redirect url |
|
|
4141
|
+
| success | boolean | no | Response is successful or not |
|
|
4142
4142
|
| aggregator_name | string | yes | Payment gateway name |
|
|
4143
4143
|
| retry | boolean | yes | Response is successful or not. |
|
|
4144
4144
|
|
|
@@ -4147,38 +4147,38 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4147
4147
|
|
|
4148
4148
|
|
|
4149
4149
|
|
|
4150
|
-
#### [
|
|
4150
|
+
#### [IntentAppErrorList](#IntentAppErrorList)
|
|
4151
4151
|
|
|
4152
4152
|
| Properties | Type | Nullable | Description |
|
|
4153
4153
|
| ---------- | ---- | -------- | ----------- |
|
|
4154
|
-
|
|
|
4155
|
-
|
|
|
4154
|
+
| code | string | no | code |
|
|
4155
|
+
| package_name | string | no | package_name |
|
|
4156
4156
|
|
|
4157
4157
|
---
|
|
4158
4158
|
|
|
4159
4159
|
|
|
4160
4160
|
|
|
4161
4161
|
|
|
4162
|
-
#### [
|
|
4162
|
+
#### [PaymentModeLogo](#PaymentModeLogo)
|
|
4163
4163
|
|
|
4164
4164
|
| Properties | Type | Nullable | Description |
|
|
4165
4165
|
| ---------- | ---- | -------- | ----------- |
|
|
4166
|
-
|
|
|
4167
|
-
|
|
|
4168
|
-
| package_name | string | no | package_name |
|
|
4169
|
-
| display_name | string | no | display_name |
|
|
4166
|
+
| large | string | yes | large |
|
|
4167
|
+
| small | string | yes | smalll |
|
|
4170
4168
|
|
|
4171
4169
|
---
|
|
4172
4170
|
|
|
4173
4171
|
|
|
4174
4172
|
|
|
4175
4173
|
|
|
4176
|
-
#### [
|
|
4174
|
+
#### [IntentApp](#IntentApp)
|
|
4177
4175
|
|
|
4178
4176
|
| Properties | Type | Nullable | Description |
|
|
4179
4177
|
| ---------- | ---- | -------- | ----------- |
|
|
4180
|
-
|
|
|
4178
|
+
| logos | [PaymentModeLogo](#PaymentModeLogo) | no | logos |
|
|
4179
|
+
| display_name | string | no | display_name |
|
|
4181
4180
|
| code | string | no | code |
|
|
4181
|
+
| package_name | string | no | package_name |
|
|
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
|
-
| nickname | string | no | nickname |
|
|
4193
|
-
| card_reference | string | no | card_reference |
|
|
4194
|
-
| card_type | string | no | card_type |
|
|
4195
|
-
| intent_flow | boolean | no | intent_flow |
|
|
4196
|
-
| card_brand_image | string | no | card_brand_image |
|
|
4197
|
-
| display_name | string | no | display name |
|
|
4198
4192
|
| card_number | string | no | card_number |
|
|
4199
|
-
|
|
|
4200
|
-
| display_priority | number | no | Dispaly Priority |
|
|
4201
|
-
| timeout | number | no | timeout |
|
|
4202
|
-
| intent_app | [[IntentApp](#IntentApp)] | no | intent_app |
|
|
4203
|
-
| card_name | string | no | card_name |
|
|
4193
|
+
| display_name | string | no | display name |
|
|
4204
4194
|
| card_issuer | string | no | card_issuer |
|
|
4205
|
-
|
|
|
4206
|
-
|
|
|
4207
|
-
|
|
|
4208
|
-
| retry_count | number | no | retry_count |
|
|
4209
|
-
| card_fingerprint | string | no | card_fingerprint |
|
|
4210
|
-
| name | string | no | name |
|
|
4195
|
+
| card_brand | string | no | card_brand |
|
|
4196
|
+
| intent_flow | boolean | no | intent_flow |
|
|
4197
|
+
| exp_month | number | no | exp_month |
|
|
4211
4198
|
| intent_app_error_dict_list | [[IntentAppErrorList](#IntentAppErrorList)] | no | intent_app_error_dict_list |
|
|
4199
|
+
| exp_year | number | no | exp_year |
|
|
4200
|
+
| compliant_with_tokenisation_guidelines | boolean | no | If card is tokenised or not |
|
|
4201
|
+
| retry_count | number | no | retry_count |
|
|
4202
|
+
| card_brand_image | string | no | card_brand_image |
|
|
4203
|
+
| card_type | string | no | card_type |
|
|
4204
|
+
| logo_url | [PaymentModeLogo](#PaymentModeLogo) | no | Logo |
|
|
4212
4205
|
| cod_limit | number | no | cod limit |
|
|
4213
|
-
| fynd_vpa | string | no | fynd_vpa |
|
|
4214
4206
|
| code | string | no | code |
|
|
4215
|
-
|
|
|
4207
|
+
| timeout | number | no | timeout |
|
|
4216
4208
|
| merchant_code | string | no | merchant code |
|
|
4209
|
+
| nickname | string | no | nickname |
|
|
4210
|
+
| aggregator_name | string | yes | aggregator_name |
|
|
4211
|
+
| fynd_vpa | string | no | fynd_vpa |
|
|
4212
|
+
| card_id | string | no | card_id |
|
|
4213
|
+
| cod_limit_per_order | number | no | Cod limit per order |
|
|
4214
|
+
| intent_app | [[IntentApp](#IntentApp)] | no | intent_app |
|
|
4217
4215
|
| card_isin | string | no | card_isin |
|
|
4218
4216
|
| remaining_limit | number | no | Remaining limit |
|
|
4219
|
-
| card_id | string | no | card_id |
|
|
4220
|
-
| compliant_with_tokenisation_guidelines | boolean | no | If card is tokenised or not |
|
|
4221
|
-
| exp_year | number | no | exp_year |
|
|
4222
4217
|
| expired | boolean | no | expired |
|
|
4223
|
-
|
|
|
4224
|
-
|
|
|
4218
|
+
| card_reference | string | no | card_reference |
|
|
4219
|
+
| card_fingerprint | string | no | card_fingerprint |
|
|
4220
|
+
| intent_app_error_list | [string] | no | intent_app_error_list |
|
|
4221
|
+
| card_token | string | no | card_token |
|
|
4222
|
+
| display_priority | number | no | Dispaly Priority |
|
|
4223
|
+
| name | string | no | name |
|
|
4224
|
+
| card_name | string | no | card_name |
|
|
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
|
-
| save_card | boolean | no | Card save or not |
|
|
4236
|
-
| display_name | string | yes | Payment mode display name |
|
|
4237
|
-
| name | string | yes | Payment mode name |
|
|
4238
|
-
| add_card_enabled | boolean | no | Annonymous card flag |
|
|
4239
4235
|
| is_pay_by_card_pl | boolean | no | This flag will be true in case of Payment link payment through card |
|
|
4240
|
-
| list | [[PaymentModeList](#PaymentModeList)] | no | Payment mode |
|
|
4241
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 |
|
|
4242
4239
|
| display_priority | number | yes | Dispaly Priority |
|
|
4240
|
+
| list | [[PaymentModeList](#PaymentModeList)] | no | Payment mode |
|
|
4243
4241
|
| anonymous_enable | boolean | no | Annonymous card flag |
|
|
4242
|
+
| name | string | yes | Payment mode name |
|
|
4243
|
+
| add_card_enabled | boolean | no | Annonymous card flag |
|
|
4244
4244
|
|
|
4245
4245
|
---
|
|
4246
4246
|
|
|
@@ -4251,9 +4251,9 @@ 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 |
|
|
4254
4255
|
| api_link | string | no | api_link |
|
|
4255
4256
|
| payment_flow_data | string | no | payment_flow_data |
|
|
4256
|
-
| data | string | no | Data |
|
|
4257
4257
|
| payment_flow | string | no | payment_flow |
|
|
4258
4258
|
|
|
4259
4259
|
---
|
|
@@ -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
|
-
|
|
|
4269
|
-
|
|
|
4270
|
-
|
|
|
4268
|
+
| razorpay | [AggregatorRoute](#AggregatorRoute) | no | Razorpay |
|
|
4269
|
+
| epaylater | [AggregatorRoute](#AggregatorRoute) | no | Epaylater |
|
|
4270
|
+
| jiopay | [AggregatorRoute](#AggregatorRoute) | no | Jiopay |
|
|
4271
|
+
| fynd | [AggregatorRoute](#AggregatorRoute) | no | Fynd |
|
|
4271
4272
|
| rupifi | [AggregatorRoute](#AggregatorRoute) | no | Rupifi |
|
|
4272
|
-
| payubiz | [AggregatorRoute](#AggregatorRoute) | no | Payubiz |
|
|
4273
4273
|
| mswipe | [AggregatorRoute](#AggregatorRoute) | no | mswipe |
|
|
4274
|
-
| razorpay | [AggregatorRoute](#AggregatorRoute) | no | Razorpay |
|
|
4275
4274
|
| bqr_razorpay | [AggregatorRoute](#AggregatorRoute) | no | BQR_Razorpay |
|
|
4275
|
+
| juspay | [AggregatorRoute](#AggregatorRoute) | no | Juspay |
|
|
4276
|
+
| simpl | [AggregatorRoute](#AggregatorRoute) | no | simpl |
|
|
4277
|
+
| stripe | [AggregatorRoute](#AggregatorRoute) | no | Stripe |
|
|
4276
4278
|
| ccavenue | [AggregatorRoute](#AggregatorRoute) | no | Ccavenue |
|
|
4277
|
-
| fynd | [AggregatorRoute](#AggregatorRoute) | no | Fynd |
|
|
4278
|
-
| epaylater | [AggregatorRoute](#AggregatorRoute) | no | Epaylater |
|
|
4279
|
-
| jiopay | [AggregatorRoute](#AggregatorRoute) | no | Jiopay |
|
|
4280
4279
|
| upi_razorpay | [AggregatorRoute](#AggregatorRoute) | no | UPI_Razorpay |
|
|
4280
|
+
| payubiz | [AggregatorRoute](#AggregatorRoute) | no | Payubiz |
|
|
4281
4281
|
|
|
4282
4282
|
---
|
|
4283
4283
|
|
|
@@ -4300,8 +4300,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4300
4300
|
|
|
4301
4301
|
| Properties | Type | Nullable | Description |
|
|
4302
4302
|
| ---------- | ---- | -------- | ----------- |
|
|
4303
|
-
| success | boolean | yes | Response is successful or not |
|
|
4304
4303
|
| payment_options | [PaymentOptionAndFlow](#PaymentOptionAndFlow) | yes | payment_options |
|
|
4304
|
+
| success | boolean | yes | Response is successful or not |
|
|
4305
4305
|
|
|
4306
4306
|
---
|
|
4307
4307
|
|
|
@@ -4336,9 +4336,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4336
4336
|
|
|
4337
4337
|
| Properties | Type | Nullable | Description |
|
|
4338
4338
|
| ---------- | ---- | -------- | ----------- |
|
|
4339
|
-
| status | string | no | Epaylater KYC status |
|
|
4340
4339
|
| display | boolean | yes | Need to display banner or not |
|
|
4341
4340
|
| message | string | no | ePayLater message |
|
|
4341
|
+
| status | string | no | Epaylater KYC status |
|
|
4342
4342
|
|
|
4343
4343
|
---
|
|
4344
4344
|
|
|
@@ -4361,8 +4361,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4361
4361
|
|
|
4362
4362
|
| Properties | Type | Nullable | Description |
|
|
4363
4363
|
| ---------- | ---- | -------- | ----------- |
|
|
4364
|
-
| request_type | string | yes | Either resend or cancel |
|
|
4365
4364
|
| order_id | string | yes | Unique order id |
|
|
4365
|
+
| request_type | string | yes | Either resend or cancel |
|
|
4366
4366
|
|
|
4367
4367
|
---
|
|
4368
4368
|
|
|
@@ -4431,10 +4431,10 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4431
4431
|
|
|
4432
4432
|
| Properties | Type | Nullable | Description |
|
|
4433
4433
|
| ---------- | ---- | -------- | ----------- |
|
|
4434
|
+
| upi_vpa | string | yes | UPI ID |
|
|
4434
4435
|
| status | string | yes | VALID or INVALID |
|
|
4435
4436
|
| customer_name | string | yes | Customer Bank |
|
|
4436
4437
|
| is_valid | boolean | yes | boolean is true or false. |
|
|
4437
|
-
| upi_vpa | string | yes | UPI ID |
|
|
4438
4438
|
|
|
4439
4439
|
---
|
|
4440
4440
|
|
|
@@ -4458,10 +4458,10 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4458
4458
|
| Properties | Type | Nullable | Description |
|
|
4459
4459
|
| ---------- | ---- | -------- | ----------- |
|
|
4460
4460
|
| id | number | yes | |
|
|
4461
|
-
| logo_large | string | yes | Beneficiary large Logo |
|
|
4462
4461
|
| display_name | string | no | Beneficiary Display Name |
|
|
4463
|
-
| name | string | yes | Beneficiary Name |
|
|
4464
4462
|
| logo_small | string | yes | Beneficiary small Logo |
|
|
4463
|
+
| logo_large | string | yes | Beneficiary large Logo |
|
|
4464
|
+
| name | string | yes | Beneficiary Name |
|
|
4465
4465
|
|
|
4466
4466
|
---
|
|
4467
4467
|
|
|
@@ -4518,24 +4518,24 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4518
4518
|
|
|
4519
4519
|
| Properties | Type | Nullable | Description |
|
|
4520
4520
|
| ---------- | ---- | -------- | ----------- |
|
|
4521
|
-
|
|
|
4521
|
+
| address | string | yes | Address of User |
|
|
4522
4522
|
| email | string | yes | EMail of User |
|
|
4523
|
-
| bank_name | string | yes | Bank Name Of Account |
|
|
4524
4523
|
| display_name | string | yes | Display Name Of Account |
|
|
4524
|
+
| account_holder | string | yes | Account Holder Name |
|
|
4525
|
+
| delights_user_name | string | no | User Id Who filled the Beneficiary |
|
|
4526
|
+
| created_on | string | yes | Creation Date of Beneficiary |
|
|
4525
4527
|
| beneficiary_id | string | yes | Benenficiary Id |
|
|
4526
|
-
|
|
|
4528
|
+
| id | number | yes | |
|
|
4527
4529
|
| title | string | yes | Title Of Account |
|
|
4528
|
-
|
|
|
4530
|
+
| mobile | string | no | MObile no of User |
|
|
4531
|
+
| modified_on | string | yes | MOdification Date of Beneficiary |
|
|
4529
4532
|
| comment | string | no | Remarks |
|
|
4530
|
-
|
|
|
4531
|
-
| created_on | string | yes | Creation Date of Beneficiary |
|
|
4533
|
+
| subtitle | string | yes | SHort Title Of Account |
|
|
4532
4534
|
| transfer_mode | string | yes | Transfer Mode Of Account |
|
|
4533
|
-
|
|
|
4534
|
-
|
|
|
4535
|
+
| bank_name | string | yes | Bank Name Of Account |
|
|
4536
|
+
| is_active | boolean | yes | Boolean Flag whether Beneficiary set or not |
|
|
4537
|
+
| ifsc_code | string | yes | Ifsc Code Of Account |
|
|
4535
4538
|
| branch_name | string | no | Branch Name Of Account |
|
|
4536
|
-
| subtitle | string | yes | SHort Title Of Account |
|
|
4537
|
-
| delights_user_name | string | no | User Id Who filled the Beneficiary |
|
|
4538
|
-
| id | number | yes | |
|
|
4539
4539
|
| account_no | string | yes | Account Number |
|
|
4540
4540
|
|
|
4541
4541
|
---
|
|
@@ -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
|
-
| description | string | yes | Not Found |
|
|
4563
4562
|
| success | boolean | yes | Response is successful or not |
|
|
4564
4563
|
| code | string | yes | Bad Request Data |
|
|
4564
|
+
| description | string | yes | Not Found |
|
|
4565
4565
|
|
|
4566
4566
|
---
|
|
4567
4567
|
|
|
@@ -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
|
+
| branch_name | string | yes | Branch Name Of Account |
|
|
4575
4576
|
| bank_name | string | yes | Bank Name Of Account |
|
|
4576
4577
|
| success | boolean | no | Response is successful or not |
|
|
4577
|
-
| branch_name | string | yes | Branch 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
|
-
| description | string | yes | Error human understandable description. |
|
|
4589
4588
|
| success | boolean | yes | Response is successful or not |
|
|
4590
4589
|
| code | string | yes | Error descrption code. |
|
|
4590
|
+
| description | string | yes | Error human understandable description. |
|
|
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 |
|
|
4602
4601
|
| hash_key | string | yes | Hash key of the beneficiary Id |
|
|
4603
4602
|
| 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
|
-
| success | boolean | no | Response is successful or not |
|
|
4615
4614
|
| message | string | yes | Aggregator Response of beneficicary |
|
|
4615
|
+
| success | boolean | no | Response is successful or not |
|
|
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 |
|
|
4627
|
-
| success | string | yes | Response is successful or not |
|
|
4628
4626
|
| is_verified_flag | boolean | yes | Vefified flag. |
|
|
4627
|
+
| 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
|
-
|
|
|
4639
|
+
| vpa | string | no | |
|
|
4640
4640
|
| address | string | no | Address of the User |
|
|
4641
|
-
| account_no | string | yes | Account NUmber of the Account Holder |
|
|
4642
|
-
| ifsc_code | string | yes | Ifsc Code of the Account |
|
|
4643
|
-
| comment | string | no | Remarks added by The user |
|
|
4644
4641
|
| bank_name | string | yes | Bank Name of the Account |
|
|
4645
|
-
|
|
|
4642
|
+
| email | string | yes | Email of the Account Holder |
|
|
4646
4643
|
| account_holder | string | yes | Name of the Account Holder |
|
|
4647
|
-
| branch_name | string | yes | Branch Name of the Account |
|
|
4648
4644
|
| mobile | string | yes | Moblie Number of the User |
|
|
4645
|
+
| ifsc_code | string | yes | Ifsc Code of the Account |
|
|
4649
4646
|
| wallet | string | no | |
|
|
4647
|
+
| comment | string | no | Remarks added by The user |
|
|
4648
|
+
| branch_name | string | yes | Branch Name of the Account |
|
|
4649
|
+
| account_no | string | yes | Account NUmber of the Account Holder |
|
|
4650
4650
|
|
|
4651
4651
|
---
|
|
4652
4652
|
|
|
@@ -4657,13 +4657,13 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4657
4657
|
|
|
4658
4658
|
| Properties | Type | Nullable | Description |
|
|
4659
4659
|
| ---------- | ---- | -------- | ----------- |
|
|
4660
|
-
| otp | string | no | |
|
|
4661
4660
|
| shipment_id | string | yes | Shipment Id of the respective Merchant Order Id |
|
|
4661
|
+
| request_id | string | no | |
|
|
4662
4662
|
| order_id | string | yes | Merchant Order Id |
|
|
4663
|
+
| delights | boolean | yes | True if beneficiary to be added by delights or False if by User |
|
|
4663
4664
|
| details | [BeneficiaryModeDetails](#BeneficiaryModeDetails) | yes | Beneficiary bank details |
|
|
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
|
+
| otp | string | no | |
|
|
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
|
-
| data | string | no | Refund account data. |
|
|
4678
|
-
| success | boolean | yes | Success or failure flag. |
|
|
4679
4677
|
| is_verified_flag | boolean | no | |
|
|
4678
|
+
| data | string | no | Refund account data. |
|
|
4680
4679
|
| message | string | yes | Response message |
|
|
4680
|
+
| success | boolean | yes | Success or failure flag. |
|
|
4681
4681
|
|
|
4682
4682
|
---
|
|
4683
4683
|
|
|
@@ -4688,11 +4688,11 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4688
4688
|
|
|
4689
4689
|
| Properties | Type | Nullable | Description |
|
|
4690
4690
|
| ---------- | ---- | -------- | ----------- |
|
|
4691
|
-
| account_no | string | yes | |
|
|
4692
|
-
| branch_name | string | yes | |
|
|
4693
4691
|
| bank_name | string | yes | |
|
|
4694
4692
|
| account_holder | string | yes | |
|
|
4695
4693
|
| ifsc_code | string | yes | |
|
|
4694
|
+
| branch_name | string | yes | |
|
|
4695
|
+
| account_no | string | yes | |
|
|
4696
4696
|
|
|
4697
4697
|
---
|
|
4698
4698
|
|
|
@@ -4703,8 +4703,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4703
4703
|
|
|
4704
4704
|
| Properties | Type | Nullable | Description |
|
|
4705
4705
|
| ---------- | ---- | -------- | ----------- |
|
|
4706
|
-
| details | [BankDetailsForOTP](#BankDetailsForOTP) | yes | |
|
|
4707
4706
|
| order_id | string | yes | |
|
|
4707
|
+
| details | [BankDetailsForOTP](#BankDetailsForOTP) | yes | |
|
|
4708
4708
|
|
|
4709
4709
|
---
|
|
4710
4710
|
|
|
@@ -4715,8 +4715,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4715
4715
|
|
|
4716
4716
|
| Properties | Type | Nullable | Description |
|
|
4717
4717
|
| ---------- | ---- | -------- | ----------- |
|
|
4718
|
-
| mobile | string | yes | Wallet Moblie Number of the User |
|
|
4719
4718
|
| country_code | string | yes | Country Code of the Mobile Number |
|
|
4719
|
+
| mobile | string | yes | Wallet Moblie Number of the User |
|
|
4720
4720
|
|
|
4721
4721
|
---
|
|
4722
4722
|
|
|
@@ -4727,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
|
-
| request_id | string | yes | request id |
|
|
4731
|
-
| success | boolean | no | Response is successful or not |
|
|
4732
4730
|
| is_verified_flag | string | yes | Boolean Flag whether OTP Validation is already done or not |
|
|
4731
|
+
| success | boolean | no | Response is successful or not |
|
|
4732
|
+
| request_id | string | yes | request id |
|
|
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
|
-
| beneficiary_id | string | yes | Beneficiary Hash Id of the beneficiary added |
|
|
4744
4743
|
| order_id | string | yes | Merchant Order Id |
|
|
4744
|
+
| beneficiary_id | string | yes | Beneficiary Hash Id of the beneficiary added |
|
|
4745
4745
|
|
|
4746
4746
|
---
|
|
4747
4747
|
|
|
@@ -4764,15 +4764,15 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4764
4764
|
|
|
4765
4765
|
| Properties | Type | Nullable | Description |
|
|
4766
4766
|
| ---------- | ---- | -------- | ----------- |
|
|
4767
|
+
| payment_link_url | string | no | Url of payment link |
|
|
4767
4768
|
| success | boolean | yes | Successful or failure |
|
|
4769
|
+
| amount | number | no | Total value of order |
|
|
4768
4770
|
| payment_link_current_status | string | no | Status of payment link |
|
|
4769
|
-
| merchant_name | string | no | Merchant name |
|
|
4770
4771
|
| message | string | yes | Message |
|
|
4772
|
+
| merchant_name | string | no | Merchant name |
|
|
4773
|
+
| external_order_id | string | no | Merchant order id |
|
|
4771
4774
|
| status_code | number | yes | HTTP status code |
|
|
4772
4775
|
| polling_timeout | number | no | Polling request timeout |
|
|
4773
|
-
| payment_link_url | string | no | Url of payment link |
|
|
4774
|
-
| external_order_id | string | no | Merchant order id |
|
|
4775
|
-
| amount | number | no | Total value of order |
|
|
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
|
-
|
|
|
4787
|
-
| merchant_name | string | no | Name of merchant that created payment link |
|
|
4788
|
-
| msg | string | no | Message |
|
|
4786
|
+
| payment_transaction_id | string | no | Payment transaction id |
|
|
4789
4787
|
| expired | boolean | no | Payment link expired or not |
|
|
4790
|
-
| cancelled | boolean | no | Payment link is cancelled or not |
|
|
4791
4788
|
| merchant_order_id | string | no | Order id |
|
|
4792
|
-
| payment_transaction_id | string | no | Payment transaction id |
|
|
4793
4789
|
| amount | number | no | Amount paid |
|
|
4790
|
+
| msg | string | no | Message |
|
|
4791
|
+
| merchant_name | string | no | Name of merchant that created payment link |
|
|
4792
|
+
| cancelled | boolean | no | Payment link is cancelled or not |
|
|
4793
|
+
| invalid_id | boolean | no | Payment link id is valid or not |
|
|
4794
4794
|
|
|
4795
4795
|
---
|
|
4796
4796
|
|
|
@@ -4802,9 +4802,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4802
4802
|
| Properties | Type | Nullable | Description |
|
|
4803
4803
|
| ---------- | ---- | -------- | ----------- |
|
|
4804
4804
|
| error | [ErrorDescription](#ErrorDescription) | no | |
|
|
4805
|
-
| success | boolean | yes | Successful or failure |
|
|
4806
4805
|
| status_code | number | yes | HTTP status code |
|
|
4807
4806
|
| message | string | yes | Message |
|
|
4807
|
+
| success | boolean | yes | Successful or failure |
|
|
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 | |
|
|
4818
4820
|
| checkout_mode | string | yes | |
|
|
4819
4821
|
| cart_id | string | yes | |
|
|
4820
4822
|
| assign_card_id | string | no | |
|
|
4821
|
-
| pincode | string | yes | |
|
|
4822
|
-
| amount | string | yes | |
|
|
4823
4823
|
|
|
4824
4824
|
---
|
|
4825
4825
|
|
|
@@ -4830,12 +4830,12 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4830
4830
|
|
|
4831
4831
|
| Properties | Type | Nullable | Description |
|
|
4832
4832
|
| ---------- | ---- | -------- | ----------- |
|
|
4833
|
-
|
|
|
4833
|
+
| mobile_number | string | yes | Mobile number to which the payment link is to be sent |
|
|
4834
|
+
| amount | number | yes | Total value of order |
|
|
4834
4835
|
| email | string | yes | Email to which the payment link is to be sent |
|
|
4835
4836
|
| meta | [CreatePaymentLinkMeta](#CreatePaymentLinkMeta) | yes | Meta |
|
|
4836
|
-
| mobile_number | string | yes | Mobile number to which the payment link is to be sent |
|
|
4837
4837
|
| external_order_id | string | yes | Merchant order id |
|
|
4838
|
-
|
|
|
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 |
|
|
4849
4850
|
| success | boolean | yes | Successful or failure |
|
|
4850
|
-
| payment_link_id | string | no | Unique id of payment link |
|
|
4851
4851
|
| message | string | yes | Message |
|
|
4852
4852
|
| status_code | number | yes | HTTP status code |
|
|
4853
4853
|
| polling_timeout | number | no | Polling request timeout |
|
|
4854
|
-
|
|
|
4854
|
+
| payment_link_id | string | no | Unique id of payment link |
|
|
4855
4855
|
|
|
4856
4856
|
---
|
|
4857
4857
|
|
|
@@ -4874,9 +4874,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4874
4874
|
| Properties | Type | Nullable | Description |
|
|
4875
4875
|
| ---------- | ---- | -------- | ----------- |
|
|
4876
4876
|
| polling_timeout | number | no | Polling request timeout |
|
|
4877
|
-
| success | boolean | yes | Successful or failure |
|
|
4878
4877
|
| status_code | number | yes | HTTP status code |
|
|
4879
4878
|
| message | string | yes | Message |
|
|
4879
|
+
| success | boolean | yes | Successful or failure |
|
|
4880
4880
|
|
|
4881
4881
|
---
|
|
4882
4882
|
|
|
@@ -4887,9 +4887,9 @@ 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 |
|
|
4892
4891
|
| message | string | yes | Message |
|
|
4892
|
+
| success | boolean | yes | Successful or failure |
|
|
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 |
|
|
4904
|
-
| success | boolean | no | Successful or failure |
|
|
4905
|
-
| redirect_url | string | no | Url to redirect to |
|
|
4906
4903
|
| status | string | no | Status of payment link |
|
|
4907
|
-
|
|
|
4908
|
-
|
|
|
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 |
|
|
4909
4908
|
| message | string | no | Message |
|
|
4909
|
+
| http_status | number | no | HTTP status code |
|
|
4910
|
+
| order_id | string | no | Fynd order id |
|
|
4910
4911
|
| status_code | number | no | HTTP status code |
|
|
4911
|
-
|
|
|
4912
|
-
| amount | number | no | Amount |
|
|
4912
|
+
| payment_link_id | string | no | Payment link id |
|
|
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
|
+
| merchant_code | string | yes | Merchant code |
|
|
4923
4924
|
| payment_identifier | string | yes | Payment identifier |
|
|
4924
4925
|
| payment_gateway | string | yes | Payment gateway name |
|
|
4925
|
-
| merchant_code | string | yes | Merchant code |
|
|
4926
4926
|
|
|
4927
4927
|
---
|
|
4928
4928
|
|
|
@@ -4934,8 +4934,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4934
4934
|
| Properties | Type | Nullable | Description |
|
|
4935
4935
|
| ---------- | ---- | -------- | ----------- |
|
|
4936
4936
|
| name | string | yes | Payment mode name |
|
|
4937
|
-
| mode | string | yes | Payment mode |
|
|
4938
4937
|
| meta | [PaymentMethodsMeta](#PaymentMethodsMeta) | yes | Meta |
|
|
4938
|
+
| mode | string | yes | Payment mode |
|
|
4939
4939
|
|
|
4940
4940
|
---
|
|
4941
4941
|
|
|
@@ -4946,12 +4946,12 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4946
4946
|
|
|
4947
4947
|
| Properties | Type | Nullable | Description |
|
|
4948
4948
|
| ---------- | ---- | -------- | ----------- |
|
|
4949
|
-
| currency | string | yes | Currency |
|
|
4950
4949
|
| failure_callback_url | string | yes | Failure page url |
|
|
4950
|
+
| success_callback_url | string | yes | Success page url |
|
|
4951
|
+
| currency | string | yes | Currency |
|
|
4952
|
+
| meta | string | no | Meta |
|
|
4951
4953
|
| payment_methods | [CreateOrderUserPaymentMethods](#CreateOrderUserPaymentMethods) | yes | Payment method details |
|
|
4952
4954
|
| payment_link_id | string | yes | Unique id of payment link |
|
|
4953
|
-
| meta | string | no | Meta |
|
|
4954
|
-
| success_callback_url | string | yes | Success page url |
|
|
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
|
-
|
|
|
4965
|
+
| customer_id | string | no | Aggregator customer id |
|
|
4966
|
+
| method | string | no | Method |
|
|
4967
|
+
| merchant_order_id | string | no | Merchant order id |
|
|
4968
|
+
| amount | number | no | Amount |
|
|
4966
4969
|
| email | string | no | Email |
|
|
4967
4970
|
| callback_url | string | no | Callback url for aggregator |
|
|
4971
|
+
| currency | string | no | Currency |
|
|
4968
4972
|
| order_id | string | no | Aggregator order id |
|
|
4969
|
-
| customer_id | string | no | Aggregator customer id |
|
|
4970
|
-
| contact | string | no | Mobile number |
|
|
4971
4973
|
| aggregator | string | no | Aggregator name |
|
|
4972
|
-
|
|
|
4973
|
-
| amount | number | no | Amount |
|
|
4974
|
-
| method | string | no | Method |
|
|
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
|
-
|
|
|
4985
|
+
| payment_confirm_url | string | no | Payment confirm url for aggregator |
|
|
4986
4986
|
| success | boolean | yes | Successful or failure |
|
|
4987
|
+
| data | [CreateOrderUserData](#CreateOrderUserData) | no | |
|
|
4988
|
+
| message | string | yes | Message |
|
|
4987
4989
|
| callback_url | string | no | Callback url for aggregator |
|
|
4988
4990
|
| order_id | string | no | Merchant order id |
|
|
4989
|
-
| message | string | yes | Message |
|
|
4990
4991
|
| status_code | number | yes | HTTP status code |
|
|
4991
|
-
| payment_confirm_url | string | no | Payment confirm url for aggregator |
|
|
4992
4992
|
|
|
4993
4993
|
---
|
|
4994
4994
|
|
|
@@ -4999,9 +4999,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
4999
4999
|
|
|
5000
5000
|
| Properties | Type | Nullable | Description |
|
|
5001
5001
|
| ---------- | ---- | -------- | ----------- |
|
|
5002
|
+
| currency | string | yes | Currency Code |
|
|
5002
5003
|
| value | number | yes | Payment amount |
|
|
5003
5004
|
| formatted_value | string | yes | Formated Amount with currency symbol |
|
|
5004
|
-
| currency | string | yes | Currency Code |
|
|
5005
5005
|
|
|
5006
5006
|
---
|
|
5007
5007
|
|
|
@@ -5013,9 +5013,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
5013
5013
|
| Properties | Type | Nullable | Description |
|
|
5014
5014
|
| ---------- | ---- | -------- | ----------- |
|
|
5015
5015
|
| status | string | yes | Customer Credit status |
|
|
5016
|
+
| merchant_customer_ref_id | string | yes | Unique aggregator customer id |
|
|
5016
5017
|
| status_message | string | yes | message to customer |
|
|
5017
5018
|
| balance | [BalanceDetails](#BalanceDetails) | no | Credit summary of user. |
|
|
5018
|
-
| merchant_customer_ref_id | string | yes | Unique aggregator customer id |
|
|
5019
5019
|
|
|
5020
5020
|
---
|
|
5021
5021
|
|
|
@@ -5063,8 +5063,8 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
5063
5063
|
| Properties | Type | Nullable | Description |
|
|
5064
5064
|
| ---------- | ---- | -------- | ----------- |
|
|
5065
5065
|
| status | boolean | yes | Operation is successful or not. |
|
|
5066
|
-
| is_registered | boolean | yes | User is registered with aggregator or not. |
|
|
5067
5066
|
| signup_url | string | yes | URL to which the user may redirect. |
|
|
5067
|
+
| is_registered | boolean | yes | User is registered with aggregator or not. |
|
|
5068
5068
|
|
|
5069
5069
|
---
|
|
5070
5070
|
|
|
@@ -5083,94 +5083,94 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
5083
5083
|
|
|
5084
5084
|
|
|
5085
5085
|
|
|
5086
|
-
#### [
|
|
5086
|
+
#### [KYCAddress](#KYCAddress)
|
|
5087
5087
|
|
|
5088
5088
|
| Properties | Type | Nullable | Description |
|
|
5089
5089
|
| ---------- | ---- | -------- | ----------- |
|
|
5090
|
-
|
|
|
5091
|
-
|
|
|
5092
|
-
|
|
|
5090
|
+
| addressline1 | string | yes | Address Line 1 |
|
|
5091
|
+
| addressline2 | string | no | Address Line 2 |
|
|
5092
|
+
| ownership_type | string | no | Address Owner Type |
|
|
5093
|
+
| city | string | yes | City |
|
|
5094
|
+
| pincode | string | yes | Pincode |
|
|
5095
|
+
| land_mark | string | no | Land Mark |
|
|
5096
|
+
| state | string | yes | State |
|
|
5093
5097
|
|
|
5094
5098
|
---
|
|
5095
5099
|
|
|
5096
5100
|
|
|
5097
5101
|
|
|
5098
5102
|
|
|
5099
|
-
#### [
|
|
5103
|
+
#### [BusinessDetails](#BusinessDetails)
|
|
5100
5104
|
|
|
5101
5105
|
| Properties | Type | Nullable | Description |
|
|
5102
5106
|
| ---------- | ---- | -------- | ----------- |
|
|
5103
|
-
|
|
|
5104
|
-
|
|
|
5105
|
-
|
|
|
5106
|
-
|
|
|
5107
|
-
|
|
|
5108
|
-
|
|
|
5109
|
-
|
|
|
5107
|
+
| fda | string | no | Driver License |
|
|
5108
|
+
| address | [KYCAddress](#KYCAddress) | no | Address details |
|
|
5109
|
+
| fssai | string | no | FDA License Number |
|
|
5110
|
+
| business_type | string | no | Business Type |
|
|
5111
|
+
| vintage | string | no | Vintage |
|
|
5112
|
+
| pan | string | no | Pan Number |
|
|
5113
|
+
| gstin | string | no | GSTIN Number |
|
|
5114
|
+
| shop_and_establishment | string | no | Shop Establishment |
|
|
5115
|
+
| name | string | no | Business Name |
|
|
5116
|
+
| business_ownership_type | string | no | business Ownershipp type(e.g Rented) |
|
|
5117
|
+
| entity_type | string | no | Busineess Entity Type |
|
|
5110
5118
|
|
|
5111
5119
|
---
|
|
5112
5120
|
|
|
5113
5121
|
|
|
5114
5122
|
|
|
5115
5123
|
|
|
5116
|
-
#### [
|
|
5124
|
+
#### [UserPersonalInfoInDetails](#UserPersonalInfoInDetails)
|
|
5117
5125
|
|
|
5118
5126
|
| Properties | Type | Nullable | Description |
|
|
5119
5127
|
| ---------- | ---- | -------- | ----------- |
|
|
5120
|
-
|
|
|
5121
|
-
|
|
|
5122
|
-
|
|
|
5123
|
-
|
|
|
5124
|
-
|
|
|
5125
|
-
|
|
|
5126
|
-
|
|
|
5128
|
+
| phone | string | yes | Email |
|
|
5129
|
+
| mothers_name | string | no | Mother's Name |
|
|
5130
|
+
| email_verified | boolean | yes | Is Email Verified or not |
|
|
5131
|
+
| fathers_name | string | no | Father's Name |
|
|
5132
|
+
| mobile_verified | boolean | yes | Is Mobile Verified or not |
|
|
5133
|
+
| last_name | string | no | Last Name |
|
|
5134
|
+
| email | string | no | Email |
|
|
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 |
|
|
5127
5144
|
|
|
5128
5145
|
---
|
|
5129
5146
|
|
|
5130
5147
|
|
|
5131
5148
|
|
|
5132
5149
|
|
|
5133
|
-
#### [
|
|
5150
|
+
#### [MarketplaceInfo](#MarketplaceInfo)
|
|
5134
5151
|
|
|
5135
5152
|
| Properties | Type | Nullable | Description |
|
|
5136
5153
|
| ---------- | ---- | -------- | ----------- |
|
|
5137
|
-
|
|
|
5138
|
-
|
|
|
5139
|
-
|
|
|
5140
|
-
| voter_id | string | no | Voter ID Number |
|
|
5141
|
-
| last_name | string | no | Last Name |
|
|
5142
|
-
| phone | string | yes | Email |
|
|
5143
|
-
| dob | string | yes | DOB |
|
|
5144
|
-
| fathers_name | string | no | Father's Name |
|
|
5145
|
-
| middle_name | string | no | middle Name |
|
|
5146
|
-
| mobile_verified | boolean | yes | Is Mobile Verified or not |
|
|
5147
|
-
| first_name | string | yes | First Name |
|
|
5148
|
-
| driving_license | string | no | Driver License |
|
|
5149
|
-
| gender | string | no | Gender |
|
|
5150
|
-
| pan | string | no | Pan Number |
|
|
5151
|
-
| passport | string | no | Passport |
|
|
5152
|
-
| mothers_name | string | no | Mother's Name |
|
|
5154
|
+
| name | string | yes | Name of store |
|
|
5155
|
+
| date_of_joining | string | no | Date of joining |
|
|
5156
|
+
| membership_id | string | yes | merchant id |
|
|
5153
5157
|
|
|
5154
5158
|
---
|
|
5155
5159
|
|
|
5156
5160
|
|
|
5157
5161
|
|
|
5158
5162
|
|
|
5159
|
-
#### [
|
|
5163
|
+
#### [DeviceDetails](#DeviceDetails)
|
|
5160
5164
|
|
|
5161
5165
|
| Properties | Type | Nullable | Description |
|
|
5162
5166
|
| ---------- | ---- | -------- | ----------- |
|
|
5163
|
-
|
|
|
5164
|
-
|
|
|
5165
|
-
|
|
|
5166
|
-
|
|
|
5167
|
-
|
|
|
5168
|
-
|
|
|
5169
|
-
|
|
|
5170
|
-
| name | string | no | Business Name |
|
|
5171
|
-
| business_ownership_type | string | no | business Ownershipp type(e.g Rented) |
|
|
5172
|
-
| gstin | string | no | GSTIN Number |
|
|
5173
|
-
| pan | string | no | Pan Number |
|
|
5167
|
+
| device_make | string | no | Device maker |
|
|
5168
|
+
| os_version | string | no | OS Version |
|
|
5169
|
+
| device_type | string | no | Device Type(E.g. Mobile) |
|
|
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 |
|
|
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
|
-
|
|
|
5184
|
+
| business_info | [BusinessDetails](#BusinessDetails) | no | Business summary. |
|
|
5185
|
+
| personal_info | [UserPersonalInfoInDetails](#UserPersonalInfoInDetails) | yes | Credit summary of user. |
|
|
5185
5186
|
| marketplace_info | [MarketplaceInfo](#MarketplaceInfo) | no | Market Place info. |
|
|
5187
|
+
| mcc | string | no | Mcc |
|
|
5186
5188
|
| source | string | yes | callbackURL |
|
|
5187
5189
|
| device | [DeviceDetails](#DeviceDetails) | no | Device Details. |
|
|
5188
|
-
| personal_info | [UserPersonalInfoInDetails](#UserPersonalInfoInDetails) | yes | Credit summary of user. |
|
|
5189
5190
|
| aggregator | string | yes | Aggregator Name |
|
|
5190
|
-
| business_info | [BusinessDetails](#BusinessDetails) | no | Business summary. |
|
|
5191
5191
|
|
|
5192
5192
|
---
|
|
5193
5193
|
|
|
@@ -5198,9 +5198,9 @@ Success. Returns the status of payment. Check the example shown below or refer `
|
|
|
5198
5198
|
|
|
5199
5199
|
| Properties | Type | Nullable | Description |
|
|
5200
5200
|
| ---------- | ---- | -------- | ----------- |
|
|
5201
|
-
| status | boolean | yes | Operation Status |
|
|
5202
5201
|
| session | string | yes | User Session |
|
|
5203
5202
|
| redirect_url | string | yes | URL to which the user may redirect. |
|
|
5203
|
+
| status | boolean | yes | Operation Status |
|
|
5204
5204
|
|
|
5205
5205
|
---
|
|
5206
5206
|
|