@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
|
@@ -6765,46 +6765,36 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
6765
6765
|
|
|
6766
6766
|
|
|
6767
6767
|
|
|
6768
|
-
#### [
|
|
6768
|
+
#### [PromiseFormatted](#PromiseFormatted)
|
|
6769
6769
|
|
|
6770
6770
|
| Properties | Type | Nullable | Description |
|
|
6771
6771
|
| ---------- | ---- | -------- | ----------- |
|
|
6772
|
-
|
|
|
6773
|
-
|
|
|
6774
|
-
| message | string | no | |
|
|
6775
|
-
| uid | string | no | |
|
|
6776
|
-
| value | number | no | |
|
|
6777
|
-
| is_applied | boolean | no | |
|
|
6772
|
+
| min | string | no | |
|
|
6773
|
+
| max | string | no | |
|
|
6778
6774
|
|
|
6779
6775
|
---
|
|
6780
6776
|
|
|
6781
6777
|
|
|
6782
6778
|
|
|
6783
6779
|
|
|
6784
|
-
#### [
|
|
6780
|
+
#### [PromiseTimestamp](#PromiseTimestamp)
|
|
6785
6781
|
|
|
6786
6782
|
| Properties | Type | Nullable | Description |
|
|
6787
6783
|
| ---------- | ---- | -------- | ----------- |
|
|
6788
|
-
|
|
|
6789
|
-
|
|
|
6790
|
-
| key | string | no | |
|
|
6791
|
-
| currency_symbol | string | no | |
|
|
6792
|
-
| value | number | no | |
|
|
6793
|
-
| display | string | no | |
|
|
6784
|
+
| min | number | no | |
|
|
6785
|
+
| max | number | no | |
|
|
6794
6786
|
|
|
6795
6787
|
---
|
|
6796
6788
|
|
|
6797
6789
|
|
|
6798
6790
|
|
|
6799
6791
|
|
|
6800
|
-
#### [
|
|
6792
|
+
#### [ShipmentPromise](#ShipmentPromise)
|
|
6801
6793
|
|
|
6802
6794
|
| Properties | Type | Nullable | Description |
|
|
6803
6795
|
| ---------- | ---- | -------- | ----------- |
|
|
6804
|
-
|
|
|
6805
|
-
|
|
|
6806
|
-
| total | number | no | |
|
|
6807
|
-
| description | string | no | |
|
|
6796
|
+
| formatted | [PromiseFormatted](#PromiseFormatted) | no | |
|
|
6797
|
+
| timestamp | [PromiseTimestamp](#PromiseTimestamp) | no | |
|
|
6808
6798
|
|
|
6809
6799
|
---
|
|
6810
6800
|
|
|
@@ -6815,301 +6805,310 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
6815
6805
|
|
|
6816
6806
|
| Properties | Type | Nullable | Description |
|
|
6817
6807
|
| ---------- | ---- | -------- | ----------- |
|
|
6818
|
-
| subtotal | number | no | |
|
|
6819
|
-
| gst_charges | number | no | |
|
|
6820
6808
|
| coupon | number | no | |
|
|
6809
|
+
| total | number | no | |
|
|
6810
|
+
| convenience_fee | number | no | |
|
|
6821
6811
|
| you_saved | number | no | |
|
|
6822
|
-
|
|
|
6812
|
+
| mrp_total | number | no | |
|
|
6823
6813
|
| cod_charge | number | no | |
|
|
6814
|
+
| discount | number | no | |
|
|
6815
|
+
| gst_charges | number | no | |
|
|
6816
|
+
| subtotal | number | no | |
|
|
6824
6817
|
| vog | number | no | |
|
|
6818
|
+
| delivery_charge | number | no | |
|
|
6825
6819
|
| fynd_cash | number | no | |
|
|
6826
|
-
| mrp_total | number | no | |
|
|
6827
|
-
| total | number | no | |
|
|
6828
|
-
| convenience_fee | number | no | |
|
|
6829
|
-
| discount | number | no | |
|
|
6830
6820
|
|
|
6831
6821
|
---
|
|
6832
6822
|
|
|
6833
6823
|
|
|
6834
6824
|
|
|
6835
6825
|
|
|
6836
|
-
#### [
|
|
6826
|
+
#### [CouponBreakup](#CouponBreakup)
|
|
6837
6827
|
|
|
6838
6828
|
| Properties | Type | Nullable | Description |
|
|
6839
6829
|
| ---------- | ---- | -------- | ----------- |
|
|
6840
|
-
|
|
|
6841
|
-
|
|
|
6842
|
-
|
|
|
6843
|
-
|
|
|
6830
|
+
| is_applied | boolean | no | |
|
|
6831
|
+
| code | string | no | |
|
|
6832
|
+
| value | number | no | |
|
|
6833
|
+
| uid | string | no | |
|
|
6834
|
+
| type | string | no | |
|
|
6835
|
+
| message | string | no | |
|
|
6844
6836
|
|
|
6845
6837
|
---
|
|
6846
6838
|
|
|
6847
6839
|
|
|
6848
6840
|
|
|
6849
6841
|
|
|
6850
|
-
#### [
|
|
6842
|
+
#### [DisplayBreakup](#DisplayBreakup)
|
|
6851
6843
|
|
|
6852
6844
|
| Properties | Type | Nullable | Description |
|
|
6853
6845
|
| ---------- | ---- | -------- | ----------- |
|
|
6854
|
-
|
|
|
6855
|
-
|
|
|
6856
|
-
|
|
|
6846
|
+
| value | number | no | |
|
|
6847
|
+
| display | string | no | |
|
|
6848
|
+
| key | string | no | |
|
|
6849
|
+
| currency_symbol | string | no | |
|
|
6850
|
+
| currency_code | string | no | |
|
|
6851
|
+
| message | [string] | no | |
|
|
6857
6852
|
|
|
6858
6853
|
---
|
|
6859
6854
|
|
|
6860
6855
|
|
|
6861
6856
|
|
|
6862
6857
|
|
|
6863
|
-
#### [
|
|
6858
|
+
#### [LoyaltyPoints](#LoyaltyPoints)
|
|
6864
6859
|
|
|
6865
6860
|
| Properties | Type | Nullable | Description |
|
|
6866
6861
|
| ---------- | ---- | -------- | ----------- |
|
|
6867
|
-
|
|
|
6868
|
-
|
|
|
6862
|
+
| is_applied | boolean | no | |
|
|
6863
|
+
| applicable | number | no | |
|
|
6864
|
+
| description | string | no | |
|
|
6865
|
+
| total | number | no | |
|
|
6869
6866
|
|
|
6870
6867
|
---
|
|
6871
6868
|
|
|
6872
6869
|
|
|
6873
6870
|
|
|
6874
6871
|
|
|
6875
|
-
#### [
|
|
6872
|
+
#### [CartBreakup](#CartBreakup)
|
|
6876
6873
|
|
|
6877
6874
|
| Properties | Type | Nullable | Description |
|
|
6878
6875
|
| ---------- | ---- | -------- | ----------- |
|
|
6879
|
-
|
|
|
6880
|
-
|
|
|
6876
|
+
| raw | [RawBreakup](#RawBreakup) | no | |
|
|
6877
|
+
| coupon | [CouponBreakup](#CouponBreakup) | no | |
|
|
6878
|
+
| display | [[DisplayBreakup](#DisplayBreakup)] | no | |
|
|
6879
|
+
| loyalty_points | [LoyaltyPoints](#LoyaltyPoints) | no | |
|
|
6881
6880
|
|
|
6882
6881
|
---
|
|
6883
6882
|
|
|
6884
6883
|
|
|
6885
6884
|
|
|
6886
6885
|
|
|
6887
|
-
#### [
|
|
6886
|
+
#### [CartCurrency](#CartCurrency)
|
|
6888
6887
|
|
|
6889
6888
|
| Properties | Type | Nullable | Description |
|
|
6890
6889
|
| ---------- | ---- | -------- | ----------- |
|
|
6891
|
-
|
|
|
6892
|
-
|
|
|
6890
|
+
| code | string | no | Currency code defined by ISO 4217:2015 |
|
|
6891
|
+
| symbol | string | no | |
|
|
6893
6892
|
|
|
6894
6893
|
---
|
|
6895
6894
|
|
|
6896
6895
|
|
|
6897
6896
|
|
|
6898
6897
|
|
|
6899
|
-
#### [
|
|
6898
|
+
#### [PromoMeta](#PromoMeta)
|
|
6900
6899
|
|
|
6901
6900
|
| Properties | Type | Nullable | Description |
|
|
6902
6901
|
| ---------- | ---- | -------- | ----------- |
|
|
6903
|
-
|
|
|
6904
|
-
| out_of_stock | boolean | no | |
|
|
6905
|
-
| sizes | [string] | no | |
|
|
6906
|
-
| is_valid | boolean | no | |
|
|
6907
|
-
| deliverable | boolean | no | |
|
|
6902
|
+
| message | string | no | |
|
|
6908
6903
|
|
|
6909
6904
|
---
|
|
6910
6905
|
|
|
6911
6906
|
|
|
6912
6907
|
|
|
6913
6908
|
|
|
6914
|
-
#### [
|
|
6909
|
+
#### [BasePrice](#BasePrice)
|
|
6915
6910
|
|
|
6916
6911
|
| Properties | Type | Nullable | Description |
|
|
6917
6912
|
| ---------- | ---- | -------- | ----------- |
|
|
6918
|
-
|
|
|
6913
|
+
| effective | number | no | |
|
|
6919
6914
|
| currency_code | string | no | |
|
|
6920
|
-
| add_on | number | no | |
|
|
6921
6915
|
| currency_symbol | string | no | |
|
|
6922
|
-
|
|
|
6923
|
-
| effective | number | no | |
|
|
6916
|
+
| marked | number | no | |
|
|
6924
6917
|
|
|
6925
6918
|
---
|
|
6926
6919
|
|
|
6927
6920
|
|
|
6928
6921
|
|
|
6929
6922
|
|
|
6930
|
-
#### [
|
|
6923
|
+
#### [ArticlePriceInfo](#ArticlePriceInfo)
|
|
6931
6924
|
|
|
6932
6925
|
| Properties | Type | Nullable | Description |
|
|
6933
6926
|
| ---------- | ---- | -------- | ----------- |
|
|
6934
|
-
| base | [
|
|
6935
|
-
| converted | [
|
|
6927
|
+
| base | [BasePrice](#BasePrice) | no | |
|
|
6928
|
+
| converted | [BasePrice](#BasePrice) | no | |
|
|
6936
6929
|
|
|
6937
6930
|
---
|
|
6938
6931
|
|
|
6939
6932
|
|
|
6940
6933
|
|
|
6941
6934
|
|
|
6942
|
-
#### [
|
|
6935
|
+
#### [BaseInfo](#BaseInfo)
|
|
6943
6936
|
|
|
6944
6937
|
| Properties | Type | Nullable | Description |
|
|
6945
6938
|
| ---------- | ---- | -------- | ----------- |
|
|
6946
|
-
|
|
|
6939
|
+
| name | string | no | |
|
|
6940
|
+
| uid | number | no | |
|
|
6947
6941
|
|
|
6948
6942
|
---
|
|
6949
6943
|
|
|
6950
6944
|
|
|
6951
6945
|
|
|
6952
6946
|
|
|
6953
|
-
#### [
|
|
6947
|
+
#### [ProductArticle](#ProductArticle)
|
|
6954
6948
|
|
|
6955
6949
|
| Properties | Type | Nullable | Description |
|
|
6956
6950
|
| ---------- | ---- | -------- | ----------- |
|
|
6957
|
-
|
|
|
6958
|
-
|
|
|
6951
|
+
| size | string | no | |
|
|
6952
|
+
| parent_item_identifiers | string | no | |
|
|
6953
|
+
| _custom_json | string | no | |
|
|
6954
|
+
| product_group_tags | [string] | no | |
|
|
6955
|
+
| extra_meta | string | no | |
|
|
6956
|
+
| uid | string | no | |
|
|
6957
|
+
| price | [ArticlePriceInfo](#ArticlePriceInfo) | no | |
|
|
6958
|
+
| seller | [BaseInfo](#BaseInfo) | no | |
|
|
6959
6959
|
| type | string | no | |
|
|
6960
|
+
| quantity | number | no | |
|
|
6961
|
+
| store | [BaseInfo](#BaseInfo) | no | |
|
|
6960
6962
|
|
|
6961
6963
|
---
|
|
6962
6964
|
|
|
6963
6965
|
|
|
6964
6966
|
|
|
6965
6967
|
|
|
6966
|
-
#### [
|
|
6968
|
+
#### [ProductAvailability](#ProductAvailability)
|
|
6967
6969
|
|
|
6968
6970
|
| Properties | Type | Nullable | Description |
|
|
6969
6971
|
| ---------- | ---- | -------- | ----------- |
|
|
6970
|
-
|
|
|
6971
|
-
|
|
|
6972
|
+
| other_store_quantity | number | no | |
|
|
6973
|
+
| is_valid | boolean | no | |
|
|
6974
|
+
| deliverable | boolean | no | |
|
|
6975
|
+
| sizes | [string] | no | |
|
|
6976
|
+
| out_of_stock | boolean | no | |
|
|
6972
6977
|
|
|
6973
6978
|
---
|
|
6974
6979
|
|
|
6975
6980
|
|
|
6976
6981
|
|
|
6977
6982
|
|
|
6978
|
-
#### [
|
|
6983
|
+
#### [CartProductIdentifer](#CartProductIdentifer)
|
|
6979
6984
|
|
|
6980
6985
|
| Properties | Type | Nullable | Description |
|
|
6981
6986
|
| ---------- | ---- | -------- | ----------- |
|
|
6982
|
-
|
|
|
6983
|
-
| uid | number | no | Product Category Id |
|
|
6987
|
+
| identifier | string | no | Article idenfier generated by cart |
|
|
6984
6988
|
|
|
6985
6989
|
---
|
|
6986
6990
|
|
|
6987
6991
|
|
|
6988
6992
|
|
|
6989
6993
|
|
|
6990
|
-
#### [
|
|
6994
|
+
#### [ProductPrice](#ProductPrice)
|
|
6991
6995
|
|
|
6992
6996
|
| Properties | Type | Nullable | Description |
|
|
6993
6997
|
| ---------- | ---- | -------- | ----------- |
|
|
6994
|
-
|
|
|
6995
|
-
|
|
|
6996
|
-
|
|
|
6998
|
+
| add_on | number | no | |
|
|
6999
|
+
| effective | number | no | |
|
|
7000
|
+
| selling | number | no | |
|
|
7001
|
+
| currency_symbol | string | no | |
|
|
7002
|
+
| currency_code | string | no | |
|
|
7003
|
+
| marked | number | no | |
|
|
6997
7004
|
|
|
6998
7005
|
---
|
|
6999
7006
|
|
|
7000
7007
|
|
|
7001
7008
|
|
|
7002
7009
|
|
|
7003
|
-
#### [
|
|
7010
|
+
#### [ProductPriceInfo](#ProductPriceInfo)
|
|
7004
7011
|
|
|
7005
7012
|
| Properties | Type | Nullable | Description |
|
|
7006
7013
|
| ---------- | ---- | -------- | ----------- |
|
|
7007
|
-
|
|
|
7008
|
-
|
|
|
7009
|
-
| brand | [BaseInfo](#BaseInfo) | no | |
|
|
7010
|
-
| name | string | no | |
|
|
7011
|
-
| type | string | no | |
|
|
7012
|
-
| categories | [[CategoryInfo](#CategoryInfo)] | no | |
|
|
7013
|
-
| uid | number | no | |
|
|
7014
|
-
| images | [[ProductImage](#ProductImage)] | no | |
|
|
7014
|
+
| base | [ProductPrice](#ProductPrice) | no | |
|
|
7015
|
+
| converted | [ProductPrice](#ProductPrice) | no | |
|
|
7015
7016
|
|
|
7016
7017
|
---
|
|
7017
7018
|
|
|
7018
7019
|
|
|
7019
7020
|
|
|
7020
7021
|
|
|
7021
|
-
#### [
|
|
7022
|
+
#### [ProductImage](#ProductImage)
|
|
7022
7023
|
|
|
7023
7024
|
| Properties | Type | Nullable | Description |
|
|
7024
7025
|
| ---------- | ---- | -------- | ----------- |
|
|
7025
|
-
|
|
|
7026
|
+
| aspect_ratio | string | no | |
|
|
7027
|
+
| secure_url | string | no | |
|
|
7028
|
+
| url | string | no | |
|
|
7026
7029
|
|
|
7027
7030
|
---
|
|
7028
7031
|
|
|
7029
7032
|
|
|
7030
7033
|
|
|
7031
7034
|
|
|
7032
|
-
#### [
|
|
7035
|
+
#### [CategoryInfo](#CategoryInfo)
|
|
7033
7036
|
|
|
7034
7037
|
| Properties | Type | Nullable | Description |
|
|
7035
7038
|
| ---------- | ---- | -------- | ----------- |
|
|
7036
|
-
|
|
|
7037
|
-
|
|
|
7039
|
+
| name | string | no | |
|
|
7040
|
+
| uid | number | no | Product Category Id |
|
|
7038
7041
|
|
|
7039
7042
|
---
|
|
7040
7043
|
|
|
7041
7044
|
|
|
7042
7045
|
|
|
7043
7046
|
|
|
7044
|
-
#### [
|
|
7047
|
+
#### [ActionQuery](#ActionQuery)
|
|
7045
7048
|
|
|
7046
7049
|
| Properties | Type | Nullable | Description |
|
|
7047
7050
|
| ---------- | ---- | -------- | ----------- |
|
|
7048
|
-
|
|
|
7049
|
-
| article_quantity | number | no | Quantity of article on which promotion is applicable |
|
|
7050
|
-
| promotion_type | string | no | Promotion type of current promotion |
|
|
7051
|
-
| amount | number | no | Per unit discount amount applied with current promotion |
|
|
7052
|
-
| promo_id | string | no | Promotion id |
|
|
7053
|
-
| ownership | [Ownership](#Ownership) | no | Ownership of promotion |
|
|
7054
|
-
| mrp_promotion | boolean | no | If applied promotion is applied on product MRP or ESP |
|
|
7051
|
+
| product_slug | [string] | no | Contains list of product slug |
|
|
7055
7052
|
|
|
7056
7053
|
---
|
|
7057
7054
|
|
|
7058
7055
|
|
|
7059
7056
|
|
|
7060
7057
|
|
|
7061
|
-
#### [
|
|
7058
|
+
#### [ProductAction](#ProductAction)
|
|
7062
7059
|
|
|
7063
7060
|
| Properties | Type | Nullable | Description |
|
|
7064
7061
|
| ---------- | ---- | -------- | ----------- |
|
|
7065
|
-
|
|
|
7066
|
-
|
|
|
7067
|
-
|
|
|
7068
|
-
| currency_code | string | no | |
|
|
7062
|
+
| query | [ActionQuery](#ActionQuery) | no | |
|
|
7063
|
+
| type | string | no | |
|
|
7064
|
+
| url | string | no | |
|
|
7069
7065
|
|
|
7070
7066
|
---
|
|
7071
7067
|
|
|
7072
7068
|
|
|
7073
7069
|
|
|
7074
7070
|
|
|
7075
|
-
#### [
|
|
7071
|
+
#### [CartProduct](#CartProduct)
|
|
7076
7072
|
|
|
7077
7073
|
| Properties | Type | Nullable | Description |
|
|
7078
7074
|
| ---------- | ---- | -------- | ----------- |
|
|
7079
|
-
|
|
|
7080
|
-
|
|
|
7075
|
+
| brand | [BaseInfo](#BaseInfo) | no | |
|
|
7076
|
+
| name | string | no | |
|
|
7077
|
+
| images | [[ProductImage](#ProductImage)] | no | |
|
|
7078
|
+
| uid | number | no | |
|
|
7079
|
+
| type | string | no | |
|
|
7080
|
+
| slug | string | no | Unique product url name generated via product name and other meta data |
|
|
7081
|
+
| categories | [[CategoryInfo](#CategoryInfo)] | no | |
|
|
7082
|
+
| action | [ProductAction](#ProductAction) | no | |
|
|
7081
7083
|
|
|
7082
7084
|
---
|
|
7083
7085
|
|
|
7084
7086
|
|
|
7085
7087
|
|
|
7086
7088
|
|
|
7087
|
-
#### [
|
|
7089
|
+
#### [Ownership](#Ownership)
|
|
7088
7090
|
|
|
7089
7091
|
| Properties | Type | Nullable | Description |
|
|
7090
7092
|
| ---------- | ---- | -------- | ----------- |
|
|
7091
|
-
|
|
|
7092
|
-
|
|
|
7093
|
-
| seller | [BaseInfo](#BaseInfo) | no | |
|
|
7094
|
-
| extra_meta | string | no | |
|
|
7095
|
-
| _custom_json | string | no | |
|
|
7096
|
-
| store | [BaseInfo](#BaseInfo) | no | |
|
|
7097
|
-
| price | [ArticlePriceInfo](#ArticlePriceInfo) | no | |
|
|
7098
|
-
| uid | string | no | |
|
|
7099
|
-
| product_group_tags | [string] | no | |
|
|
7100
|
-
| size | string | no | |
|
|
7101
|
-
| quantity | number | no | |
|
|
7093
|
+
| payable_by | string | no | promo amount bearable party |
|
|
7094
|
+
| payable_category | string | no | promo amount payable category |
|
|
7102
7095
|
|
|
7103
7096
|
---
|
|
7104
7097
|
|
|
7105
7098
|
|
|
7106
7099
|
|
|
7107
7100
|
|
|
7108
|
-
#### [
|
|
7101
|
+
#### [AppliedPromotion](#AppliedPromotion)
|
|
7109
7102
|
|
|
7110
7103
|
| Properties | Type | Nullable | Description |
|
|
7111
7104
|
| ---------- | ---- | -------- | ----------- |
|
|
7112
|
-
|
|
|
7105
|
+
| amount | number | no | Per unit discount amount applied with current promotion |
|
|
7106
|
+
| ownership | [Ownership](#Ownership) | no | Ownership of promotion |
|
|
7107
|
+
| mrp_promotion | boolean | no | If applied promotion is applied on product MRP or ESP |
|
|
7108
|
+
| offer_text | string | no | Offer text of current promotion |
|
|
7109
|
+
| article_quantity | number | no | Quantity of article on which promotion is applicable |
|
|
7110
|
+
| promo_id | string | no | Promotion id |
|
|
7111
|
+
| promotion_type | string | no | Promotion type of current promotion |
|
|
7113
7112
|
|
|
7114
7113
|
---
|
|
7115
7114
|
|
|
@@ -7120,34 +7119,35 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7120
7119
|
|
|
7121
7120
|
| Properties | Type | Nullable | Description |
|
|
7122
7121
|
| ---------- | ---- | -------- | ----------- |
|
|
7122
|
+
| promo_meta | [PromoMeta](#PromoMeta) | no | |
|
|
7123
|
+
| article | [ProductArticle](#ProductArticle) | no | |
|
|
7123
7124
|
| coupon_message | string | no | |
|
|
7124
|
-
| is_set | boolean | no | |
|
|
7125
7125
|
| availability | [ProductAvailability](#ProductAvailability) | no | |
|
|
7126
7126
|
| parent_item_identifiers | string | no | |
|
|
7127
|
-
| message | string | no | |
|
|
7128
|
-
| price_per_unit | [ProductPriceInfo](#ProductPriceInfo) | no | |
|
|
7129
|
-
| key | string | no | |
|
|
7130
|
-
| product | [CartProduct](#CartProduct) | no | |
|
|
7131
|
-
| discount | string | no | |
|
|
7132
7127
|
| identifiers | [CartProductIdentifer](#CartProductIdentifer) | yes | |
|
|
7133
7128
|
| price | [ProductPriceInfo](#ProductPriceInfo) | no | |
|
|
7129
|
+
| is_set | boolean | no | |
|
|
7130
|
+
| discount | string | no | |
|
|
7131
|
+
| price_per_unit | [ProductPriceInfo](#ProductPriceInfo) | no | |
|
|
7132
|
+
| key | string | no | |
|
|
7134
7133
|
| bulk_offer | string | no | |
|
|
7135
|
-
| promotions_applied | [[AppliedPromotion](#AppliedPromotion)] | no | |
|
|
7136
|
-
| article | [ProductArticle](#ProductArticle) | no | |
|
|
7137
|
-
| promo_meta | [PromoMeta](#PromoMeta) | no | |
|
|
7138
7134
|
| quantity | number | no | |
|
|
7135
|
+
| product | [CartProduct](#CartProduct) | no | |
|
|
7136
|
+
| message | string | no | |
|
|
7137
|
+
| promotions_applied | [[AppliedPromotion](#AppliedPromotion)] | no | |
|
|
7139
7138
|
|
|
7140
7139
|
---
|
|
7141
7140
|
|
|
7142
7141
|
|
|
7143
7142
|
|
|
7144
7143
|
|
|
7145
|
-
#### [
|
|
7144
|
+
#### [PaymentSelectionLock](#PaymentSelectionLock)
|
|
7146
7145
|
|
|
7147
7146
|
| Properties | Type | Nullable | Description |
|
|
7148
7147
|
| ---------- | ---- | -------- | ----------- |
|
|
7149
|
-
|
|
|
7150
|
-
|
|
|
7148
|
+
| payment_identifier | string | no | |
|
|
7149
|
+
| default_options | string | no | |
|
|
7150
|
+
| enabled | boolean | no | |
|
|
7151
7151
|
|
|
7152
7152
|
---
|
|
7153
7153
|
|
|
@@ -7158,22 +7158,22 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7158
7158
|
|
|
7159
7159
|
| Properties | Type | Nullable | Description |
|
|
7160
7160
|
| ---------- | ---- | -------- | ----------- |
|
|
7161
|
-
| breakup_values | [CartBreakup](#CartBreakup) | no | |
|
|
7162
|
-
| message | string | no | |
|
|
7163
|
-
| restrict_checkout | boolean | no | |
|
|
7164
|
-
| payment_selection_lock | [PaymentSelectionLock](#PaymentSelectionLock) | no | |
|
|
7165
|
-
| id | string | no | |
|
|
7166
|
-
| coupon_text | string | no | |
|
|
7167
|
-
| gstin | string | no | |
|
|
7168
7161
|
| checkout_mode | string | no | |
|
|
7169
7162
|
| delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
|
|
7170
|
-
|
|
|
7171
|
-
| is_valid | boolean | no | |
|
|
7163
|
+
| gstin | string | no | |
|
|
7172
7164
|
| last_modified | string | no | |
|
|
7173
|
-
|
|
|
7174
|
-
|
|
|
7165
|
+
| is_valid | boolean | no | |
|
|
7166
|
+
| id | string | no | |
|
|
7167
|
+
| breakup_values | [CartBreakup](#CartBreakup) | no | |
|
|
7175
7168
|
| currency | [CartCurrency](#CartCurrency) | no | |
|
|
7176
7169
|
| comment | string | no | |
|
|
7170
|
+
| coupon_text | string | no | |
|
|
7171
|
+
| delivery_charge_info | string | no | |
|
|
7172
|
+
| items | [[CartProductInfo](#CartProductInfo)] | no | |
|
|
7173
|
+
| payment_selection_lock | [PaymentSelectionLock](#PaymentSelectionLock) | no | |
|
|
7174
|
+
| restrict_checkout | boolean | no | |
|
|
7175
|
+
| buy_now | boolean | no | |
|
|
7176
|
+
| message | string | no | |
|
|
7177
7177
|
|
|
7178
7178
|
---
|
|
7179
7179
|
|
|
@@ -7185,18 +7185,18 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7185
7185
|
| Properties | Type | Nullable | Description |
|
|
7186
7186
|
| ---------- | ---- | -------- | ----------- |
|
|
7187
7187
|
| seller_id | number | no | |
|
|
7188
|
-
|
|
|
7189
|
-
| store_id | number | no | |
|
|
7188
|
+
| article_assignment | string | no | |
|
|
7190
7189
|
| parent_item_identifiers | string | no | |
|
|
7190
|
+
| _custom_json | string | no | |
|
|
7191
7191
|
| item_id | number | no | |
|
|
7192
|
-
| article_assignment | string | no | |
|
|
7193
7192
|
| product_group_tags | [string] | no | |
|
|
7194
7193
|
| extra_meta | string | no | |
|
|
7195
|
-
| _custom_json | string | no | |
|
|
7196
|
-
| article_id | string | no | |
|
|
7197
7194
|
| item_size | string | no | |
|
|
7198
7195
|
| display | string | no | |
|
|
7196
|
+
| article_id | string | no | |
|
|
7197
|
+
| pos | boolean | no | |
|
|
7199
7198
|
| quantity | number | no | |
|
|
7199
|
+
| store_id | number | no | |
|
|
7200
7200
|
|
|
7201
7201
|
---
|
|
7202
7202
|
|
|
@@ -7218,10 +7218,10 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7218
7218
|
|
|
7219
7219
|
| Properties | Type | Nullable | Description |
|
|
7220
7220
|
| ---------- | ---- | -------- | ----------- |
|
|
7221
|
-
| success | boolean | no | True if all items are added successfully. False if partially added or not added. |
|
|
7222
7221
|
| partial | boolean | no | When adding multiple items check if all added. True if only few are added. |
|
|
7223
7222
|
| cart | [CartDetailResponse](#CartDetailResponse) | no | |
|
|
7224
7223
|
| message | string | no | |
|
|
7224
|
+
| success | boolean | no | True if all items are added successfully. False if partially added or not added. |
|
|
7225
7225
|
|
|
7226
7226
|
---
|
|
7227
7227
|
|
|
@@ -7234,12 +7234,12 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7234
7234
|
| ---------- | ---- | -------- | ----------- |
|
|
7235
7235
|
| item_index | number | no | |
|
|
7236
7236
|
| parent_item_identifiers | string | no | |
|
|
7237
|
+
| _custom_json | string | no | |
|
|
7237
7238
|
| item_id | number | no | |
|
|
7238
7239
|
| extra_meta | string | no | |
|
|
7239
|
-
| _custom_json | string | no | |
|
|
7240
7240
|
| identifiers | [CartProductIdentifer](#CartProductIdentifer) | yes | |
|
|
7241
|
-
| article_id | string | no | |
|
|
7242
7241
|
| item_size | string | no | |
|
|
7242
|
+
| article_id | string | no | |
|
|
7243
7243
|
| quantity | number | no | |
|
|
7244
7244
|
|
|
7245
7245
|
---
|
|
@@ -7251,8 +7251,8 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7251
7251
|
|
|
7252
7252
|
| Properties | Type | Nullable | Description |
|
|
7253
7253
|
| ---------- | ---- | -------- | ----------- |
|
|
7254
|
-
| items | [[UpdateProductCart](#UpdateProductCart)] | no | |
|
|
7255
7254
|
| operation | string | yes | |
|
|
7255
|
+
| items | [[UpdateProductCart](#UpdateProductCart)] | no | |
|
|
7256
7256
|
|
|
7257
7257
|
---
|
|
7258
7258
|
|
|
@@ -7263,9 +7263,9 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7263
7263
|
|
|
7264
7264
|
| Properties | Type | Nullable | Description |
|
|
7265
7265
|
| ---------- | ---- | -------- | ----------- |
|
|
7266
|
-
| success | boolean | no | True if all items are added successfully. False if partially added or not added. |
|
|
7267
7266
|
| cart | [CartDetailResponse](#CartDetailResponse) | no | |
|
|
7268
7267
|
| message | string | no | |
|
|
7268
|
+
| success | boolean | no | True if all items are added successfully. False if partially added or not added. |
|
|
7269
7269
|
|
|
7270
7270
|
---
|
|
7271
7271
|
|
|
@@ -7287,16 +7287,16 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7287
7287
|
|
|
7288
7288
|
| Properties | Type | Nullable | Description |
|
|
7289
7289
|
| ---------- | ---- | -------- | ----------- |
|
|
7290
|
-
| title | string | no | |
|
|
7291
|
-
| coupon_value | number | no | |
|
|
7292
|
-
| message | string | no | |
|
|
7293
|
-
| expires_on | string | no | |
|
|
7294
|
-
| max_discount_value | number | no | |
|
|
7295
7290
|
| is_applicable | boolean | no | |
|
|
7296
|
-
| sub_title | string | no | |
|
|
7297
7291
|
| coupon_code | string | no | |
|
|
7292
|
+
| max_discount_value | number | no | |
|
|
7293
|
+
| coupon_value | number | no | |
|
|
7298
7294
|
| minimum_cart_value | number | no | |
|
|
7299
7295
|
| is_applied | boolean | no | |
|
|
7296
|
+
| sub_title | string | no | |
|
|
7297
|
+
| title | string | no | |
|
|
7298
|
+
| expires_on | string | no | |
|
|
7299
|
+
| message | string | no | |
|
|
7300
7300
|
|
|
7301
7301
|
---
|
|
7302
7302
|
|
|
@@ -7307,10 +7307,10 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7307
7307
|
|
|
7308
7308
|
| Properties | Type | Nullable | Description |
|
|
7309
7309
|
| ---------- | ---- | -------- | ----------- |
|
|
7310
|
+
| total_item_count | number | no | |
|
|
7310
7311
|
| has_next | boolean | no | |
|
|
7311
|
-
| has_previous | boolean | no | |
|
|
7312
7312
|
| total | number | no | |
|
|
7313
|
-
|
|
|
7313
|
+
| has_previous | boolean | no | |
|
|
7314
7314
|
| current | number | no | |
|
|
7315
7315
|
|
|
7316
7316
|
---
|
|
@@ -7341,44 +7341,44 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7341
7341
|
|
|
7342
7342
|
|
|
7343
7343
|
|
|
7344
|
-
#### [
|
|
7344
|
+
#### [OfferSeller](#OfferSeller)
|
|
7345
7345
|
|
|
7346
7346
|
| Properties | Type | Nullable | Description |
|
|
7347
7347
|
| ---------- | ---- | -------- | ----------- |
|
|
7348
|
-
|
|
|
7349
|
-
|
|
|
7350
|
-
| currency_code | string | no | Currency code for all amounts |
|
|
7351
|
-
| currency_symbol | string | no | Currency symbol for currency |
|
|
7352
|
-
| effective | number | no | Current per unit price of product after existing deductions |
|
|
7348
|
+
| name | string | no | |
|
|
7349
|
+
| uid | number | no | Seller id |
|
|
7353
7350
|
|
|
7354
7351
|
---
|
|
7355
7352
|
|
|
7356
7353
|
|
|
7357
7354
|
|
|
7358
7355
|
|
|
7359
|
-
#### [
|
|
7356
|
+
#### [OfferPrice](#OfferPrice)
|
|
7360
7357
|
|
|
7361
7358
|
| Properties | Type | Nullable | Description |
|
|
7362
7359
|
| ---------- | ---- | -------- | ----------- |
|
|
7363
|
-
|
|
|
7364
|
-
|
|
|
7365
|
-
|
|
|
7366
|
-
|
|
|
7367
|
-
|
|
|
7368
|
-
| best | boolean | no | Is true for best offer from all offers present for all sellers |
|
|
7369
|
-
| quantity | number | no | Quantity on which offer is applicable |
|
|
7360
|
+
| bulk_effective | number | no | Discounted per unit price for current offer object |
|
|
7361
|
+
| effective | number | no | Current per unit price of product after existing deductions |
|
|
7362
|
+
| currency_symbol | string | no | Currency symbol for currency |
|
|
7363
|
+
| currency_code | string | no | Currency code for all amounts |
|
|
7364
|
+
| marked | number | no | Original price of product |
|
|
7370
7365
|
|
|
7371
7366
|
---
|
|
7372
7367
|
|
|
7373
7368
|
|
|
7374
7369
|
|
|
7375
7370
|
|
|
7376
|
-
#### [
|
|
7371
|
+
#### [OfferItem](#OfferItem)
|
|
7377
7372
|
|
|
7378
7373
|
| Properties | Type | Nullable | Description |
|
|
7379
7374
|
| ---------- | ---- | -------- | ----------- |
|
|
7380
|
-
|
|
|
7381
|
-
|
|
|
7375
|
+
| total | number | no | Total price of offer quantity with discount |
|
|
7376
|
+
| price | [OfferPrice](#OfferPrice) | no | |
|
|
7377
|
+
| margin | number | no | Percentage value of discount |
|
|
7378
|
+
| type | string | no | Offer type |
|
|
7379
|
+
| quantity | number | no | Quantity on which offer is applicable |
|
|
7380
|
+
| auto_applied | boolean | no | Whether offer discount is auto applied in cart |
|
|
7381
|
+
| best | boolean | no | Is true for best offer from all offers present for all sellers |
|
|
7382
7382
|
|
|
7383
7383
|
---
|
|
7384
7384
|
|
|
@@ -7389,8 +7389,8 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7389
7389
|
|
|
7390
7390
|
| Properties | Type | Nullable | Description |
|
|
7391
7391
|
| ---------- | ---- | -------- | ----------- |
|
|
7392
|
-
| offers | [[OfferItem](#OfferItem)] | no | |
|
|
7393
7392
|
| seller | [OfferSeller](#OfferSeller) | no | |
|
|
7393
|
+
| offers | [[OfferItem](#OfferItem)] | no | |
|
|
7394
7394
|
|
|
7395
7395
|
---
|
|
7396
7396
|
|
|
@@ -7435,30 +7435,30 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7435
7435
|
|
|
7436
7436
|
| Properties | Type | Nullable | Description |
|
|
7437
7437
|
| ---------- | ---- | -------- | ----------- |
|
|
7438
|
-
|
|
|
7438
|
+
| checkout_mode | string | no | |
|
|
7439
|
+
| google_map_point | string | no | |
|
|
7439
7440
|
| area_code | string | no | |
|
|
7441
|
+
| email | string | no | |
|
|
7440
7442
|
| country_iso_code | string | no | |
|
|
7441
7443
|
| landmark | string | no | |
|
|
7442
|
-
|
|
|
7443
|
-
|
|
|
7444
|
-
|
|
|
7445
|
-
| area_code_slug | string | no | |
|
|
7446
|
-
| city | string | no | |
|
|
7447
|
-
| email | string | no | |
|
|
7444
|
+
| state | string | no | |
|
|
7445
|
+
| tags | [string] | no | |
|
|
7446
|
+
| address | string | no | |
|
|
7448
7447
|
| is_default_address | boolean | no | |
|
|
7448
|
+
| country_code | string | no | |
|
|
7449
7449
|
| phone | string | no | |
|
|
7450
|
-
|
|
|
7450
|
+
| city | string | no | |
|
|
7451
7451
|
| country_phone_code | string | no | |
|
|
7452
|
-
|
|
|
7453
|
-
| checkout_mode | string | no | |
|
|
7452
|
+
| area | string | no | |
|
|
7454
7453
|
| address_type | string | no | |
|
|
7455
|
-
|
|
|
7456
|
-
|
|
|
7457
|
-
| state | string | no | |
|
|
7454
|
+
| country | string | no | |
|
|
7455
|
+
| meta | string | no | |
|
|
7458
7456
|
| name | string | no | |
|
|
7457
|
+
| geo_location | [GeoLocation](#GeoLocation) | no | |
|
|
7459
7458
|
| is_active | boolean | no | |
|
|
7460
|
-
|
|
|
7461
|
-
|
|
|
7459
|
+
| id | string | no | |
|
|
7460
|
+
| area_code_slug | string | no | |
|
|
7461
|
+
| user_id | string | no | |
|
|
7462
7462
|
|
|
7463
7463
|
---
|
|
7464
7464
|
|
|
@@ -7480,9 +7480,9 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7480
7480
|
|
|
7481
7481
|
| Properties | Type | Nullable | Description |
|
|
7482
7482
|
| ---------- | ---- | -------- | ----------- |
|
|
7483
|
-
| success | boolean | no | |
|
|
7484
|
-
| id | string | no | |
|
|
7485
7483
|
| is_default_address | boolean | no | |
|
|
7484
|
+
| id | string | no | |
|
|
7485
|
+
| success | boolean | no | |
|
|
7486
7486
|
|
|
7487
7487
|
---
|
|
7488
7488
|
|
|
@@ -7493,10 +7493,10 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7493
7493
|
|
|
7494
7494
|
| Properties | Type | Nullable | Description |
|
|
7495
7495
|
| ---------- | ---- | -------- | ----------- |
|
|
7496
|
+
| is_default_address | boolean | no | |
|
|
7496
7497
|
| success | boolean | no | |
|
|
7497
7498
|
| id | string | no | |
|
|
7498
7499
|
| is_updated | boolean | no | |
|
|
7499
|
-
| is_default_address | boolean | no | |
|
|
7500
7500
|
|
|
7501
7501
|
---
|
|
7502
7502
|
|
|
@@ -7507,8 +7507,8 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7507
7507
|
|
|
7508
7508
|
| Properties | Type | Nullable | Description |
|
|
7509
7509
|
| ---------- | ---- | -------- | ----------- |
|
|
7510
|
-
| id | string | no | |
|
|
7511
7510
|
| is_deleted | boolean | no | |
|
|
7511
|
+
| id | string | no | |
|
|
7512
7512
|
|
|
7513
7513
|
---
|
|
7514
7514
|
|
|
@@ -7519,8 +7519,8 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7519
7519
|
|
|
7520
7520
|
| Properties | Type | Nullable | Description |
|
|
7521
7521
|
| ---------- | ---- | -------- | ----------- |
|
|
7522
|
-
| id | string | no | |
|
|
7523
7522
|
| cart_id | string | no | |
|
|
7523
|
+
| id | string | no | |
|
|
7524
7524
|
| billing_address_id | string | no | |
|
|
7525
7525
|
|
|
7526
7526
|
---
|
|
@@ -7534,10 +7534,10 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7534
7534
|
| ---------- | ---- | -------- | ----------- |
|
|
7535
7535
|
| aggregator_name | string | no | |
|
|
7536
7536
|
| id | string | no | |
|
|
7537
|
+
| merchant_code | string | no | |
|
|
7537
7538
|
| address_id | string | no | |
|
|
7538
|
-
| payment_identifier | string | no | |
|
|
7539
7539
|
| payment_mode | string | no | |
|
|
7540
|
-
|
|
|
7540
|
+
| payment_identifier | string | no | |
|
|
7541
7541
|
|
|
7542
7542
|
---
|
|
7543
7543
|
|
|
@@ -7548,11 +7548,11 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7548
7548
|
|
|
7549
7549
|
| Properties | Type | Nullable | Description |
|
|
7550
7550
|
| ---------- | ---- | -------- | ----------- |
|
|
7551
|
+
| display_message_en | string | no | |
|
|
7551
7552
|
| code | string | no | |
|
|
7552
|
-
| title | string | no | |
|
|
7553
7553
|
| valid | boolean | no | |
|
|
7554
|
-
| display_message_en | string | no | |
|
|
7555
7554
|
| discount | number | no | |
|
|
7555
|
+
| title | string | no | |
|
|
7556
7556
|
|
|
7557
7557
|
---
|
|
7558
7558
|
|
|
@@ -7563,9 +7563,9 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7563
7563
|
|
|
7564
7564
|
| Properties | Type | Nullable | Description |
|
|
7565
7565
|
| ---------- | ---- | -------- | ----------- |
|
|
7566
|
+
| message | string | no | |
|
|
7566
7567
|
| success | boolean | yes | |
|
|
7567
7568
|
| coupon_validity | [CouponValidity](#CouponValidity) | no | |
|
|
7568
|
-
| message | string | no | |
|
|
7569
7569
|
|
|
7570
7570
|
---
|
|
7571
7571
|
|
|
@@ -7576,16 +7576,16 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7576
7576
|
|
|
7577
7577
|
| Properties | Type | Nullable | Description |
|
|
7578
7578
|
| ---------- | ---- | -------- | ----------- |
|
|
7579
|
+
| fulfillment_id | number | no | |
|
|
7579
7580
|
| dp_options | string | no | |
|
|
7580
|
-
| shipments | number | no | |
|
|
7581
|
-
| order_type | string | no | |
|
|
7582
|
-
| dp_id | string | no | |
|
|
7583
7581
|
| fulfillment_type | string | no | |
|
|
7584
|
-
|
|
|
7585
|
-
| box_type | string | no | |
|
|
7586
|
-
| fulfillment_id | number | no | |
|
|
7582
|
+
| shipments | number | no | |
|
|
7587
7583
|
| shipment_type | string | no | |
|
|
7584
|
+
| order_type | string | no | |
|
|
7588
7585
|
| items | [[CartProductInfo](#CartProductInfo)] | no | |
|
|
7586
|
+
| box_type | string | no | |
|
|
7587
|
+
| promise | [ShipmentPromise](#ShipmentPromise) | no | |
|
|
7588
|
+
| dp_id | string | no | |
|
|
7589
7589
|
|
|
7590
7590
|
---
|
|
7591
7591
|
|
|
@@ -7596,25 +7596,25 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7596
7596
|
|
|
7597
7597
|
| Properties | Type | Nullable | Description |
|
|
7598
7598
|
| ---------- | ---- | -------- | ----------- |
|
|
7599
|
-
| message | string | no | |
|
|
7600
|
-
| restrict_checkout | boolean | no | |
|
|
7601
|
-
| id | string | no | |
|
|
7602
7599
|
| checkout_mode | string | no | |
|
|
7603
|
-
| uid | string | no | |
|
|
7604
|
-
| currency | [CartCurrency](#CartCurrency) | no | |
|
|
7605
|
-
| comment | string | no | |
|
|
7606
|
-
| breakup_values | [CartBreakup](#CartBreakup) | no | |
|
|
7607
|
-
| shipments | [[ShipmentResponse](#ShipmentResponse)] | no | |
|
|
7608
|
-
| error | boolean | no | |
|
|
7609
|
-
| payment_selection_lock | [PaymentSelectionLock](#PaymentSelectionLock) | no | |
|
|
7610
|
-
| coupon_text | string | no | |
|
|
7611
7600
|
| gstin | string | no | |
|
|
7612
|
-
| buy_now | boolean | no | |
|
|
7613
7601
|
| is_valid | boolean | no | |
|
|
7602
|
+
| currency | [CartCurrency](#CartCurrency) | no | |
|
|
7603
|
+
| uid | string | no | |
|
|
7614
7604
|
| cart_id | number | no | |
|
|
7615
|
-
|
|
|
7605
|
+
| comment | string | no | |
|
|
7616
7606
|
| delivery_charge_info | string | no | |
|
|
7607
|
+
| error | boolean | no | |
|
|
7608
|
+
| restrict_checkout | boolean | no | |
|
|
7609
|
+
| buy_now | boolean | no | |
|
|
7617
7610
|
| delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
|
|
7611
|
+
| message | string | no | |
|
|
7612
|
+
| last_modified | string | no | |
|
|
7613
|
+
| shipments | [[ShipmentResponse](#ShipmentResponse)] | no | |
|
|
7614
|
+
| id | string | no | |
|
|
7615
|
+
| breakup_values | [CartBreakup](#CartBreakup) | no | |
|
|
7616
|
+
| coupon_text | string | no | |
|
|
7617
|
+
| payment_selection_lock | [PaymentSelectionLock](#PaymentSelectionLock) | no | |
|
|
7618
7618
|
|
|
7619
7619
|
---
|
|
7620
7620
|
|
|
@@ -7625,9 +7625,9 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7625
7625
|
|
|
7626
7626
|
| Properties | Type | Nullable | Description |
|
|
7627
7627
|
| ---------- | ---- | -------- | ----------- |
|
|
7628
|
-
| shipment_type | string | yes | Shipment delivery type |
|
|
7629
|
-
| quantity | number | no | Quantity of product in shipment |
|
|
7630
7628
|
| article_uid | string | yes | Article mongo id |
|
|
7629
|
+
| quantity | number | no | Quantity of product in shipment |
|
|
7630
|
+
| shipment_type | string | yes | Shipment delivery type |
|
|
7631
7631
|
|
|
7632
7632
|
---
|
|
7633
7633
|
|
|
@@ -7650,9 +7650,9 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7650
7650
|
| Properties | Type | Nullable | Description |
|
|
7651
7651
|
| ---------- | ---- | -------- | ----------- |
|
|
7652
7652
|
| user | string | yes | |
|
|
7653
|
-
| last_name | string | yes | |
|
|
7654
7653
|
| employee_code | string | no | |
|
|
7655
7654
|
| _id | string | yes | |
|
|
7655
|
+
| last_name | string | yes | |
|
|
7656
7656
|
| first_name | string | yes | |
|
|
7657
7657
|
|
|
7658
7658
|
---
|
|
@@ -7664,8 +7664,8 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7664
7664
|
|
|
7665
7665
|
| Properties | Type | Nullable | Description |
|
|
7666
7666
|
| ---------- | ---- | -------- | ----------- |
|
|
7667
|
-
| value | string | yes | |
|
|
7668
7667
|
| key | string | yes | |
|
|
7668
|
+
| value | string | yes | |
|
|
7669
7669
|
|
|
7670
7670
|
---
|
|
7671
7671
|
|
|
@@ -7688,26 +7688,26 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7688
7688
|
|
|
7689
7689
|
| Properties | Type | Nullable | Description |
|
|
7690
7690
|
| ---------- | ---- | -------- | ----------- |
|
|
7691
|
-
| billing_address_id | string | no | |
|
|
7692
|
-
| extra_meta | string | no | |
|
|
7693
|
-
| billing_address | string | no | |
|
|
7694
7691
|
| delivery_address | string | no | |
|
|
7695
|
-
|
|
|
7696
|
-
| address_id | string | no | |
|
|
7692
|
+
| payment_auto_confirm | boolean | no | |
|
|
7697
7693
|
| staff | [StaffCheckout](#StaffCheckout) | no | |
|
|
7698
|
-
| payment_mode | string | yes | |
|
|
7699
7694
|
| payment_identifier | string | no | |
|
|
7700
|
-
| payment_params | string | no | |
|
|
7701
|
-
| pos | boolean | no | |
|
|
7702
|
-
| aggregator | string | no | |
|
|
7703
|
-
| pick_at_store_uid | number | no | |
|
|
7704
|
-
| payment_auto_confirm | boolean | no | |
|
|
7705
7695
|
| custom_meta | [[CartCheckoutCustomMeta](#CartCheckoutCustomMeta)] | no | |
|
|
7706
7696
|
| order_type | string | yes | |
|
|
7707
|
-
|
|
|
7697
|
+
| billing_address_id | string | no | |
|
|
7708
7698
|
| files | [[Files](#Files)] | no | List of file url |
|
|
7709
|
-
|
|
|
7699
|
+
| pos | boolean | no | |
|
|
7700
|
+
| ordering_store | number | no | |
|
|
7710
7701
|
| callback_url | string | no | |
|
|
7702
|
+
| pick_at_store_uid | number | no | |
|
|
7703
|
+
| extra_meta | string | no | |
|
|
7704
|
+
| billing_address | string | no | |
|
|
7705
|
+
| payment_params | string | no | |
|
|
7706
|
+
| meta | string | no | |
|
|
7707
|
+
| aggregator | string | no | |
|
|
7708
|
+
| merchant_code | string | no | |
|
|
7709
|
+
| address_id | string | no | |
|
|
7710
|
+
| payment_mode | string | yes | |
|
|
7711
7711
|
|
|
7712
7712
|
---
|
|
7713
7713
|
|
|
@@ -7718,35 +7718,35 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7718
7718
|
|
|
7719
7719
|
| Properties | Type | Nullable | Description |
|
|
7720
7720
|
| ---------- | ---- | -------- | ----------- |
|
|
7721
|
+
| checkout_mode | string | no | |
|
|
7722
|
+
| currency | [CartCurrency](#CartCurrency) | no | |
|
|
7723
|
+
| cart_id | number | no | |
|
|
7721
7724
|
| delivery_charges | number | no | |
|
|
7722
|
-
| message | string | no | |
|
|
7723
|
-
| restrict_checkout | boolean | no | |
|
|
7724
|
-
| id | string | no | |
|
|
7725
|
-
| error_message | string | no | |
|
|
7726
|
-
| items | [[CartProductInfo](#CartProductInfo)] | no | |
|
|
7727
|
-
| comment | string | no | |
|
|
7728
|
-
| breakup_values | [CartBreakup](#CartBreakup) | no | |
|
|
7729
|
-
| gstin | string | no | |
|
|
7730
|
-
| buy_now | boolean | no | |
|
|
7731
|
-
| is_valid | boolean | no | |
|
|
7732
|
-
| last_modified | string | no | |
|
|
7733
|
-
| delivery_charge_order_value | number | no | |
|
|
7734
7725
|
| order_id | string | no | |
|
|
7735
|
-
|
|
|
7736
|
-
|
|
|
7726
|
+
| buy_now | boolean | no | |
|
|
7727
|
+
| delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
|
|
7737
7728
|
| cod_message | string | no | |
|
|
7738
|
-
| store_code | string | no | |
|
|
7739
|
-
| currency | [CartCurrency](#CartCurrency) | no | |
|
|
7740
7729
|
| user_type | string | no | |
|
|
7741
|
-
|
|
|
7730
|
+
| last_modified | string | no | |
|
|
7731
|
+
| breakup_values | [CartBreakup](#CartBreakup) | no | |
|
|
7732
|
+
| coupon_text | string | no | |
|
|
7742
7733
|
| payment_selection_lock | [PaymentSelectionLock](#PaymentSelectionLock) | no | |
|
|
7743
|
-
|
|
|
7734
|
+
| store_code | string | no | |
|
|
7735
|
+
| delivery_charge_order_value | number | no | |
|
|
7736
|
+
| gstin | string | no | |
|
|
7737
|
+
| is_valid | boolean | no | |
|
|
7738
|
+
| uid | string | no | |
|
|
7739
|
+
| comment | string | no | |
|
|
7740
|
+
| delivery_charge_info | string | no | |
|
|
7741
|
+
| restrict_checkout | boolean | no | |
|
|
7742
|
+
| error_message | string | no | |
|
|
7743
|
+
| message | string | no | |
|
|
7744
7744
|
| store_emps | [string] | no | |
|
|
7745
|
+
| id | string | no | |
|
|
7746
|
+
| success | boolean | no | |
|
|
7745
7747
|
| cod_charges | number | no | |
|
|
7746
|
-
|
|
|
7747
|
-
|
|
|
7748
|
-
| delivery_charge_info | string | no | |
|
|
7749
|
-
| delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
|
|
7748
|
+
| items | [[CartProductInfo](#CartProductInfo)] | no | |
|
|
7749
|
+
| cod_available | boolean | no | |
|
|
7750
7750
|
|
|
7751
7751
|
---
|
|
7752
7752
|
|
|
@@ -7758,13 +7758,13 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7758
7758
|
| Properties | Type | Nullable | Description |
|
|
7759
7759
|
| ---------- | ---- | -------- | ----------- |
|
|
7760
7760
|
| payment_confirm_url | string | no | |
|
|
7761
|
-
| order_id | string | no | |
|
|
7762
|
-
| message | string | no | |
|
|
7763
|
-
| success | boolean | no | |
|
|
7764
|
-
| cart | [CheckCart](#CheckCart) | no | |
|
|
7765
|
-
| app_intercept_url | string | no | |
|
|
7766
7761
|
| callback_url | string | no | |
|
|
7762
|
+
| success | boolean | no | |
|
|
7767
7763
|
| data | string | no | |
|
|
7764
|
+
| app_intercept_url | string | no | |
|
|
7765
|
+
| order_id | string | no | |
|
|
7766
|
+
| cart | [CheckCart](#CheckCart) | no | |
|
|
7767
|
+
| message | string | no | |
|
|
7768
7768
|
|
|
7769
7769
|
---
|
|
7770
7770
|
|
|
@@ -7775,10 +7775,10 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7775
7775
|
|
|
7776
7776
|
| Properties | Type | Nullable | Description |
|
|
7777
7777
|
| ---------- | ---- | -------- | ----------- |
|
|
7778
|
+
| comment | string | no | |
|
|
7778
7779
|
| checkout_mode | string | no | |
|
|
7779
7780
|
| pick_up_customer_details | string | no | Customer contact details for customer pickup at store |
|
|
7780
7781
|
| gstin | string | no | |
|
|
7781
|
-
| comment | string | no | |
|
|
7782
7782
|
|
|
7783
7783
|
---
|
|
7784
7784
|
|
|
@@ -7811,8 +7811,8 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7811
7811
|
|
|
7812
7812
|
| Properties | Type | Nullable | Description |
|
|
7813
7813
|
| ---------- | ---- | -------- | ----------- |
|
|
7814
|
-
| pickup_stores | [number] | no | Store pick up available store uids |
|
|
7815
7814
|
| available_modes | [string] | no | Available delivery modes |
|
|
7815
|
+
| pickup_stores | [number] | no | Store pick up available store uids |
|
|
7816
7816
|
|
|
7817
7817
|
---
|
|
7818
7818
|
|
|
@@ -7823,22 +7823,22 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7823
7823
|
|
|
7824
7824
|
| Properties | Type | Nullable | Description |
|
|
7825
7825
|
| ---------- | ---- | -------- | ----------- |
|
|
7826
|
-
|
|
|
7826
|
+
| store_code | string | no | |
|
|
7827
7827
|
| pincode | number | no | |
|
|
7828
|
-
| area_code | string | no | |
|
|
7829
|
-
| area_code_slug | string | no | |
|
|
7830
7828
|
| name | string | no | |
|
|
7831
|
-
|
|
|
7832
|
-
|
|
|
7833
|
-
|
|
|
7829
|
+
| state | string | no | |
|
|
7830
|
+
| address | string | no | |
|
|
7831
|
+
| area_code | string | no | |
|
|
7834
7832
|
| id | number | no | |
|
|
7835
|
-
|
|
|
7836
|
-
|
|
|
7833
|
+
| email | string | no | |
|
|
7834
|
+
| area | string | no | |
|
|
7835
|
+
| area_code_slug | string | no | |
|
|
7836
|
+
| uid | number | no | |
|
|
7837
7837
|
| address_type | string | no | |
|
|
7838
7838
|
| country | string | no | |
|
|
7839
|
-
|
|
|
7840
|
-
|
|
|
7841
|
-
|
|
|
7839
|
+
| phone | string | no | |
|
|
7840
|
+
| city | string | no | |
|
|
7841
|
+
| landmark | string | no | |
|
|
7842
7842
|
|
|
7843
7843
|
---
|
|
7844
7844
|
|
|
@@ -7860,8 +7860,8 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7860
7860
|
|
|
7861
7861
|
| Properties | Type | Nullable | Description |
|
|
7862
7862
|
| ---------- | ---- | -------- | ----------- |
|
|
7863
|
-
| id | string | no | Cart uid for generating sharing |
|
|
7864
7863
|
| meta | string | no | Staff, Ordering store or any other data. This data will be used to generate link as well as sent as shared details. |
|
|
7864
|
+
| id | string | no | Cart uid for generating sharing |
|
|
7865
7865
|
|
|
7866
7866
|
---
|
|
7867
7867
|
|
|
@@ -7872,8 +7872,8 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7872
7872
|
|
|
7873
7873
|
| Properties | Type | Nullable | Description |
|
|
7874
7874
|
| ---------- | ---- | -------- | ----------- |
|
|
7875
|
-
| share_url | string | no | Short shareable final url |
|
|
7876
7875
|
| token | string | no | Short url unique id |
|
|
7876
|
+
| share_url | string | no | Short shareable final url |
|
|
7877
7877
|
|
|
7878
7878
|
---
|
|
7879
7879
|
|
|
@@ -7884,11 +7884,11 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7884
7884
|
|
|
7885
7885
|
| Properties | Type | Nullable | Description |
|
|
7886
7886
|
| ---------- | ---- | -------- | ----------- |
|
|
7887
|
-
| user | string | no | User details of who generated share link |
|
|
7888
|
-
| source | string | no | Share link device and other source information |
|
|
7889
|
-
| created_on | string | no | |
|
|
7890
7887
|
| meta | string | no | Meta data sent while generating share cart link |
|
|
7888
|
+
| user | string | no | User details of who generated share link |
|
|
7891
7889
|
| token | string | no | Short link id |
|
|
7890
|
+
| created_on | string | no | |
|
|
7891
|
+
| source | string | no | Share link device and other source information |
|
|
7892
7892
|
|
|
7893
7893
|
---
|
|
7894
7894
|
|
|
@@ -7899,25 +7899,25 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7899
7899
|
|
|
7900
7900
|
| Properties | Type | Nullable | Description |
|
|
7901
7901
|
| ---------- | ---- | -------- | ----------- |
|
|
7902
|
-
|
|
|
7903
|
-
|
|
|
7904
|
-
|
|
|
7905
|
-
|
|
|
7906
|
-
|
|
|
7907
|
-
|
|
|
7902
|
+
| checkout_mode | string | no | |
|
|
7903
|
+
| currency | [CartCurrency](#CartCurrency) | no | |
|
|
7904
|
+
| cart_id | number | no | |
|
|
7905
|
+
| buy_now | boolean | no | |
|
|
7906
|
+
| delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
|
|
7907
|
+
| last_modified | string | no | |
|
|
7908
7908
|
| breakup_values | [CartBreakup](#CartBreakup) | no | |
|
|
7909
|
+
| shared_cart_details | [SharedCartDetails](#SharedCartDetails) | no | |
|
|
7910
|
+
| coupon_text | string | no | |
|
|
7911
|
+
| payment_selection_lock | [PaymentSelectionLock](#PaymentSelectionLock) | no | |
|
|
7909
7912
|
| gstin | string | no | |
|
|
7910
|
-
| buy_now | boolean | no | |
|
|
7911
7913
|
| is_valid | boolean | no | |
|
|
7912
|
-
| last_modified | string | no | |
|
|
7913
|
-
| checkout_mode | string | no | |
|
|
7914
7914
|
| uid | string | no | |
|
|
7915
|
-
|
|
|
7916
|
-
| payment_selection_lock | [PaymentSelectionLock](#PaymentSelectionLock) | no | |
|
|
7917
|
-
| coupon_text | string | no | |
|
|
7918
|
-
| cart_id | number | no | |
|
|
7915
|
+
| comment | string | no | |
|
|
7919
7916
|
| delivery_charge_info | string | no | |
|
|
7920
|
-
|
|
|
7917
|
+
| restrict_checkout | boolean | no | |
|
|
7918
|
+
| message | string | no | |
|
|
7919
|
+
| id | string | no | |
|
|
7920
|
+
| items | [[CartProductInfo](#CartProductInfo)] | no | |
|
|
7921
7921
|
|
|
7922
7922
|
---
|
|
7923
7923
|
|
|
@@ -7928,8 +7928,8 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7928
7928
|
|
|
7929
7929
|
| Properties | Type | Nullable | Description |
|
|
7930
7930
|
| ---------- | ---- | -------- | ----------- |
|
|
7931
|
-
| error | string | no | |
|
|
7932
7931
|
| cart | [SharedCart](#SharedCart) | no | |
|
|
7932
|
+
| error | string | no | |
|
|
7933
7933
|
|
|
7934
7934
|
---
|
|
7935
7935
|
|