@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
|
@@ -6147,12 +6147,24 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
6147
6147
|
|
|
6148
6148
|
|
|
6149
6149
|
|
|
6150
|
+
#### [CartCurrency](#CartCurrency)
|
|
6151
|
+
|
|
6152
|
+
| Properties | Type | Nullable | Description |
|
|
6153
|
+
| ---------- | ---- | -------- | ----------- |
|
|
6154
|
+
| code | string | no | Currency code defined by ISO 4217:2015 |
|
|
6155
|
+
| symbol | string | no | |
|
|
6156
|
+
|
|
6157
|
+
---
|
|
6158
|
+
|
|
6159
|
+
|
|
6160
|
+
|
|
6161
|
+
|
|
6150
6162
|
#### [PaymentSelectionLock](#PaymentSelectionLock)
|
|
6151
6163
|
|
|
6152
6164
|
| Properties | Type | Nullable | Description |
|
|
6153
6165
|
| ---------- | ---- | -------- | ----------- |
|
|
6154
|
-
| enabled | boolean | no | |
|
|
6155
6166
|
| payment_identifier | string | no | |
|
|
6167
|
+
| enabled | boolean | no | |
|
|
6156
6168
|
| default_options | string | no | |
|
|
6157
6169
|
|
|
6158
6170
|
---
|
|
@@ -6160,12 +6172,15 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
6160
6172
|
|
|
6161
6173
|
|
|
6162
6174
|
|
|
6163
|
-
#### [
|
|
6175
|
+
#### [ProductAvailability](#ProductAvailability)
|
|
6164
6176
|
|
|
6165
6177
|
| Properties | Type | Nullable | Description |
|
|
6166
6178
|
| ---------- | ---- | -------- | ----------- |
|
|
6167
|
-
|
|
|
6168
|
-
|
|
|
6179
|
+
| sizes | [string] | no | |
|
|
6180
|
+
| is_valid | boolean | no | |
|
|
6181
|
+
| deliverable | boolean | no | |
|
|
6182
|
+
| other_store_quantity | number | no | |
|
|
6183
|
+
| out_of_stock | boolean | no | |
|
|
6169
6184
|
|
|
6170
6185
|
---
|
|
6171
6186
|
|
|
@@ -6177,56 +6192,56 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
6177
6192
|
| Properties | Type | Nullable | Description |
|
|
6178
6193
|
| ---------- | ---- | -------- | ----------- |
|
|
6179
6194
|
| aspect_ratio | string | no | |
|
|
6180
|
-
| secure_url | string | no | |
|
|
6181
6195
|
| url | string | no | |
|
|
6196
|
+
| secure_url | string | no | |
|
|
6182
6197
|
|
|
6183
6198
|
---
|
|
6184
6199
|
|
|
6185
6200
|
|
|
6186
6201
|
|
|
6187
6202
|
|
|
6188
|
-
#### [
|
|
6203
|
+
#### [BaseInfo](#BaseInfo)
|
|
6189
6204
|
|
|
6190
6205
|
| Properties | Type | Nullable | Description |
|
|
6191
6206
|
| ---------- | ---- | -------- | ----------- |
|
|
6192
|
-
|
|
|
6207
|
+
| name | string | no | |
|
|
6208
|
+
| uid | number | no | |
|
|
6193
6209
|
|
|
6194
6210
|
---
|
|
6195
6211
|
|
|
6196
6212
|
|
|
6197
6213
|
|
|
6198
6214
|
|
|
6199
|
-
#### [
|
|
6215
|
+
#### [CategoryInfo](#CategoryInfo)
|
|
6200
6216
|
|
|
6201
6217
|
| Properties | Type | Nullable | Description |
|
|
6202
6218
|
| ---------- | ---- | -------- | ----------- |
|
|
6203
|
-
|
|
|
6204
|
-
|
|
|
6205
|
-
| query | [ActionQuery](#ActionQuery) | no | |
|
|
6219
|
+
| name | string | no | |
|
|
6220
|
+
| uid | number | no | Product Category Id |
|
|
6206
6221
|
|
|
6207
6222
|
---
|
|
6208
6223
|
|
|
6209
6224
|
|
|
6210
6225
|
|
|
6211
6226
|
|
|
6212
|
-
#### [
|
|
6227
|
+
#### [ActionQuery](#ActionQuery)
|
|
6213
6228
|
|
|
6214
6229
|
| Properties | Type | Nullable | Description |
|
|
6215
6230
|
| ---------- | ---- | -------- | ----------- |
|
|
6216
|
-
|
|
|
6217
|
-
| name | string | no | |
|
|
6231
|
+
| product_slug | [string] | no | Contains list of product slug |
|
|
6218
6232
|
|
|
6219
6233
|
---
|
|
6220
6234
|
|
|
6221
6235
|
|
|
6222
6236
|
|
|
6223
6237
|
|
|
6224
|
-
#### [
|
|
6238
|
+
#### [ProductAction](#ProductAction)
|
|
6225
6239
|
|
|
6226
6240
|
| Properties | Type | Nullable | Description |
|
|
6227
6241
|
| ---------- | ---- | -------- | ----------- |
|
|
6228
|
-
|
|
|
6229
|
-
|
|
|
6242
|
+
| url | string | no | |
|
|
6243
|
+
| query | [ActionQuery](#ActionQuery) | no | |
|
|
6244
|
+
| type | string | no | |
|
|
6230
6245
|
|
|
6231
6246
|
---
|
|
6232
6247
|
|
|
@@ -6237,14 +6252,14 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
6237
6252
|
|
|
6238
6253
|
| Properties | Type | Nullable | Description |
|
|
6239
6254
|
| ---------- | ---- | -------- | ----------- |
|
|
6255
|
+
| name | string | no | |
|
|
6240
6256
|
| images | [[ProductImage](#ProductImage)] | no | |
|
|
6241
6257
|
| uid | number | no | |
|
|
6242
|
-
| action | [ProductAction](#ProductAction) | no | |
|
|
6243
|
-
| type | string | no | |
|
|
6244
|
-
| name | string | no | |
|
|
6245
6258
|
| brand | [BaseInfo](#BaseInfo) | no | |
|
|
6246
|
-
| slug | string | no | Unique product url name generated via product name and other meta data |
|
|
6247
6259
|
| categories | [[CategoryInfo](#CategoryInfo)] | no | |
|
|
6260
|
+
| action | [ProductAction](#ProductAction) | no | |
|
|
6261
|
+
| slug | string | no | Unique product url name generated via product name and other meta data |
|
|
6262
|
+
| type | string | no | |
|
|
6248
6263
|
|
|
6249
6264
|
---
|
|
6250
6265
|
|
|
@@ -6256,10 +6271,10 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
6256
6271
|
| Properties | Type | Nullable | Description |
|
|
6257
6272
|
| ---------- | ---- | -------- | ----------- |
|
|
6258
6273
|
| currency_code | string | no | |
|
|
6274
|
+
| effective | number | no | |
|
|
6259
6275
|
| marked | number | no | |
|
|
6260
|
-
| currency_symbol | string | no | |
|
|
6261
6276
|
| selling | number | no | |
|
|
6262
|
-
|
|
|
6277
|
+
| currency_symbol | string | no | |
|
|
6263
6278
|
| add_on | number | no | |
|
|
6264
6279
|
|
|
6265
6280
|
---
|
|
@@ -6279,29 +6294,14 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
6279
6294
|
|
|
6280
6295
|
|
|
6281
6296
|
|
|
6282
|
-
#### [ProductAvailability](#ProductAvailability)
|
|
6283
|
-
|
|
6284
|
-
| Properties | Type | Nullable | Description |
|
|
6285
|
-
| ---------- | ---- | -------- | ----------- |
|
|
6286
|
-
| is_valid | boolean | no | |
|
|
6287
|
-
| sizes | [string] | no | |
|
|
6288
|
-
| deliverable | boolean | no | |
|
|
6289
|
-
| other_store_quantity | number | no | |
|
|
6290
|
-
| out_of_stock | boolean | no | |
|
|
6291
|
-
|
|
6292
|
-
---
|
|
6293
|
-
|
|
6294
|
-
|
|
6295
|
-
|
|
6296
|
-
|
|
6297
6297
|
#### [BasePrice](#BasePrice)
|
|
6298
6298
|
|
|
6299
6299
|
| Properties | Type | Nullable | Description |
|
|
6300
6300
|
| ---------- | ---- | -------- | ----------- |
|
|
6301
6301
|
| marked | number | no | |
|
|
6302
|
-
| effective | number | no | |
|
|
6303
|
-
| currency_symbol | string | no | |
|
|
6304
6302
|
| currency_code | string | no | |
|
|
6303
|
+
| currency_symbol | string | no | |
|
|
6304
|
+
| effective | number | no | |
|
|
6305
6305
|
|
|
6306
6306
|
---
|
|
6307
6307
|
|
|
@@ -6324,17 +6324,17 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
6324
6324
|
|
|
6325
6325
|
| Properties | Type | Nullable | Description |
|
|
6326
6326
|
| ---------- | ---- | -------- | ----------- |
|
|
6327
|
-
|
|
|
6328
|
-
|
|
|
6327
|
+
| store | [BaseInfo](#BaseInfo) | no | |
|
|
6328
|
+
| product_group_tags | [string] | no | |
|
|
6329
6329
|
| extra_meta | string | no | |
|
|
6330
|
-
| uid | string | no | |
|
|
6331
6330
|
| size | string | no | |
|
|
6332
|
-
|
|
|
6331
|
+
| price | [ArticlePriceInfo](#ArticlePriceInfo) | no | |
|
|
6332
|
+
| uid | string | no | |
|
|
6333
6333
|
| _custom_json | string | no | |
|
|
6334
|
-
| product_group_tags | [string] | no | |
|
|
6335
|
-
| quantity | number | no | |
|
|
6336
6334
|
| seller | [BaseInfo](#BaseInfo) | no | |
|
|
6337
|
-
|
|
|
6335
|
+
| quantity | number | no | |
|
|
6336
|
+
| parent_item_identifiers | string | no | |
|
|
6337
|
+
| type | string | no | |
|
|
6338
6338
|
|
|
6339
6339
|
---
|
|
6340
6340
|
|
|
@@ -6379,13 +6379,13 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
6379
6379
|
|
|
6380
6380
|
| Properties | Type | Nullable | Description |
|
|
6381
6381
|
| ---------- | ---- | -------- | ----------- |
|
|
6382
|
+
| amount | number | no | Per unit discount amount applied with current promotion |
|
|
6383
|
+
| mrp_promotion | boolean | no | If applied promotion is applied on product MRP or ESP |
|
|
6384
|
+
| promo_id | string | no | Promotion id |
|
|
6382
6385
|
| offer_text | string | no | Offer text of current promotion |
|
|
6383
|
-
| article_quantity | number | no | Quantity of article on which promotion is applicable |
|
|
6384
6386
|
| promotion_type | string | no | Promotion type of current promotion |
|
|
6385
6387
|
| ownership | [Ownership](#Ownership) | no | Ownership of promotion |
|
|
6386
|
-
|
|
|
6387
|
-
| amount | number | no | Per unit discount amount applied with current promotion |
|
|
6388
|
-
| promo_id | string | no | Promotion id |
|
|
6388
|
+
| article_quantity | number | no | Quantity of article on which promotion is applicable |
|
|
6389
6389
|
|
|
6390
6390
|
---
|
|
6391
6391
|
|
|
@@ -6396,46 +6396,46 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
6396
6396
|
|
|
6397
6397
|
| Properties | Type | Nullable | Description |
|
|
6398
6398
|
| ---------- | ---- | -------- | ----------- |
|
|
6399
|
-
|
|
|
6400
|
-
| product | [CartProduct](#CartProduct) | no | |
|
|
6401
|
-
| parent_item_identifiers | string | no | |
|
|
6402
|
-
| price | [ProductPriceInfo](#ProductPriceInfo) | no | |
|
|
6403
|
-
| key | string | no | |
|
|
6404
|
-
| message | string | no | |
|
|
6399
|
+
| discount | string | no | |
|
|
6405
6400
|
| coupon_message | string | no | |
|
|
6406
6401
|
| availability | [ProductAvailability](#ProductAvailability) | no | |
|
|
6407
|
-
|
|
|
6402
|
+
| product | [CartProduct](#CartProduct) | no | |
|
|
6408
6403
|
| price_per_unit | [ProductPriceInfo](#ProductPriceInfo) | no | |
|
|
6409
6404
|
| article | [ProductArticle](#ProductArticle) | no | |
|
|
6405
|
+
| price | [ProductPriceInfo](#ProductPriceInfo) | no | |
|
|
6406
|
+
| is_set | boolean | no | |
|
|
6407
|
+
| bulk_offer | string | no | |
|
|
6410
6408
|
| identifiers | [CartProductIdentifer](#CartProductIdentifer) | yes | |
|
|
6411
6409
|
| promo_meta | [PromoMeta](#PromoMeta) | no | |
|
|
6412
|
-
|
|
|
6410
|
+
| message | string | no | |
|
|
6413
6411
|
| quantity | number | no | |
|
|
6414
6412
|
| promotions_applied | [[AppliedPromotion](#AppliedPromotion)] | no | |
|
|
6413
|
+
| parent_item_identifiers | string | no | |
|
|
6414
|
+
| key | string | no | |
|
|
6415
6415
|
|
|
6416
6416
|
---
|
|
6417
6417
|
|
|
6418
6418
|
|
|
6419
6419
|
|
|
6420
6420
|
|
|
6421
|
-
#### [
|
|
6421
|
+
#### [PromiseFormatted](#PromiseFormatted)
|
|
6422
6422
|
|
|
6423
6423
|
| Properties | Type | Nullable | Description |
|
|
6424
6424
|
| ---------- | ---- | -------- | ----------- |
|
|
6425
|
-
| max |
|
|
6426
|
-
| min |
|
|
6425
|
+
| max | string | no | |
|
|
6426
|
+
| min | string | no | |
|
|
6427
6427
|
|
|
6428
6428
|
---
|
|
6429
6429
|
|
|
6430
6430
|
|
|
6431
6431
|
|
|
6432
6432
|
|
|
6433
|
-
#### [
|
|
6433
|
+
#### [PromiseTimestamp](#PromiseTimestamp)
|
|
6434
6434
|
|
|
6435
6435
|
| Properties | Type | Nullable | Description |
|
|
6436
6436
|
| ---------- | ---- | -------- | ----------- |
|
|
6437
|
-
| max |
|
|
6438
|
-
| min |
|
|
6437
|
+
| max | number | no | |
|
|
6438
|
+
| min | number | no | |
|
|
6439
6439
|
|
|
6440
6440
|
---
|
|
6441
6441
|
|
|
@@ -6446,8 +6446,8 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
6446
6446
|
|
|
6447
6447
|
| Properties | Type | Nullable | Description |
|
|
6448
6448
|
| ---------- | ---- | -------- | ----------- |
|
|
6449
|
-
| timestamp | [PromiseTimestamp](#PromiseTimestamp) | no | |
|
|
6450
6449
|
| formatted | [PromiseFormatted](#PromiseFormatted) | no | |
|
|
6450
|
+
| timestamp | [PromiseTimestamp](#PromiseTimestamp) | no | |
|
|
6451
6451
|
|
|
6452
6452
|
---
|
|
6453
6453
|
|
|
@@ -6459,17 +6459,17 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
6459
6459
|
| Properties | Type | Nullable | Description |
|
|
6460
6460
|
| ---------- | ---- | -------- | ----------- |
|
|
6461
6461
|
| convenience_fee | number | no | |
|
|
6462
|
-
| fynd_cash | number | no | |
|
|
6463
6462
|
| coupon | number | no | |
|
|
6464
|
-
| subtotal | number | no | |
|
|
6465
|
-
| gst_charges | number | no | |
|
|
6466
|
-
| vog | number | no | |
|
|
6467
|
-
| cod_charge | number | no | |
|
|
6468
|
-
| you_saved | number | no | |
|
|
6469
6463
|
| discount | number | no | |
|
|
6464
|
+
| cod_charge | number | no | |
|
|
6465
|
+
| mrp_total | number | no | |
|
|
6466
|
+
| gst_charges | number | no | |
|
|
6470
6467
|
| delivery_charge | number | no | |
|
|
6468
|
+
| you_saved | number | no | |
|
|
6469
|
+
| vog | number | no | |
|
|
6470
|
+
| subtotal | number | no | |
|
|
6471
6471
|
| total | number | no | |
|
|
6472
|
-
|
|
|
6472
|
+
| fynd_cash | number | no | |
|
|
6473
6473
|
|
|
6474
6474
|
---
|
|
6475
6475
|
|
|
@@ -6480,10 +6480,10 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
6480
6480
|
|
|
6481
6481
|
| Properties | Type | Nullable | Description |
|
|
6482
6482
|
| ---------- | ---- | -------- | ----------- |
|
|
6483
|
-
| is_applied | boolean | no | |
|
|
6484
|
-
| description | string | no | |
|
|
6485
|
-
| applicable | number | no | |
|
|
6486
6483
|
| total | number | no | |
|
|
6484
|
+
| applicable | number | no | |
|
|
6485
|
+
| description | string | no | |
|
|
6486
|
+
| is_applied | boolean | no | |
|
|
6487
6487
|
|
|
6488
6488
|
---
|
|
6489
6489
|
|
|
@@ -6495,11 +6495,11 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
6495
6495
|
| Properties | Type | Nullable | Description |
|
|
6496
6496
|
| ---------- | ---- | -------- | ----------- |
|
|
6497
6497
|
| currency_code | string | no | |
|
|
6498
|
-
| message | [string] | no | |
|
|
6499
|
-
| key | string | no | |
|
|
6500
|
-
| currency_symbol | string | no | |
|
|
6501
6498
|
| value | number | no | |
|
|
6499
|
+
| currency_symbol | string | no | |
|
|
6500
|
+
| message | [string] | no | |
|
|
6502
6501
|
| display | string | no | |
|
|
6502
|
+
| key | string | no | |
|
|
6503
6503
|
|
|
6504
6504
|
---
|
|
6505
6505
|
|
|
@@ -6510,10 +6510,10 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
6510
6510
|
|
|
6511
6511
|
| Properties | Type | Nullable | Description |
|
|
6512
6512
|
| ---------- | ---- | -------- | ----------- |
|
|
6513
|
-
| is_applied | boolean | no | |
|
|
6514
|
-
| message | string | no | |
|
|
6515
6513
|
| uid | string | no | |
|
|
6514
|
+
| is_applied | boolean | no | |
|
|
6516
6515
|
| value | number | no | |
|
|
6516
|
+
| message | string | no | |
|
|
6517
6517
|
| code | string | no | |
|
|
6518
6518
|
| type | string | no | |
|
|
6519
6519
|
|
|
@@ -6540,22 +6540,22 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
6540
6540
|
|
|
6541
6541
|
| Properties | Type | Nullable | Description |
|
|
6542
6542
|
| ---------- | ---- | -------- | ----------- |
|
|
6543
|
-
| is_valid | boolean | no | |
|
|
6544
|
-
| message | string | no | |
|
|
6545
6543
|
| id | string | no | |
|
|
6546
|
-
|
|
|
6544
|
+
| checkout_mode | string | no | |
|
|
6545
|
+
| is_valid | boolean | no | |
|
|
6546
|
+
| comment | string | no | |
|
|
6547
6547
|
| restrict_checkout | boolean | no | |
|
|
6548
|
-
| last_modified | string | no | |
|
|
6549
6548
|
| currency | [CartCurrency](#CartCurrency) | no | |
|
|
6550
|
-
|
|
|
6551
|
-
| comment | string | no | |
|
|
6552
|
-
| delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
|
|
6549
|
+
| payment_selection_lock | [PaymentSelectionLock](#PaymentSelectionLock) | no | |
|
|
6553
6550
|
| delivery_charge_info | string | no | |
|
|
6554
|
-
|
|
|
6551
|
+
| items | [[CartProductInfo](#CartProductInfo)] | no | |
|
|
6552
|
+
| last_modified | string | no | |
|
|
6555
6553
|
| buy_now | boolean | no | |
|
|
6556
|
-
|
|
|
6557
|
-
|
|
|
6554
|
+
| message | string | no | |
|
|
6555
|
+
| delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
|
|
6558
6556
|
| coupon_text | string | no | |
|
|
6557
|
+
| gstin | string | no | |
|
|
6558
|
+
| breakup_values | [CartBreakup](#CartBreakup) | no | |
|
|
6559
6559
|
|
|
6560
6560
|
---
|
|
6561
6561
|
|
|
@@ -6566,19 +6566,19 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
6566
6566
|
|
|
6567
6567
|
| Properties | Type | Nullable | Description |
|
|
6568
6568
|
| ---------- | ---- | -------- | ----------- |
|
|
6569
|
-
|
|
|
6569
|
+
| product_group_tags | [string] | no | |
|
|
6570
6570
|
| store_id | number | no | |
|
|
6571
|
-
| item_size | string | no | |
|
|
6572
6571
|
| extra_meta | string | no | |
|
|
6573
|
-
| article_assignment | string | no | |
|
|
6574
|
-
| item_id | number | no | |
|
|
6575
6572
|
| seller_id | number | no | |
|
|
6576
|
-
|
|
|
6573
|
+
| article_assignment | string | no | |
|
|
6574
|
+
| item_size | string | no | |
|
|
6577
6575
|
| _custom_json | string | no | |
|
|
6578
|
-
|
|
|
6576
|
+
| item_id | number | no | |
|
|
6577
|
+
| pos | boolean | no | |
|
|
6579
6578
|
| article_id | string | no | |
|
|
6580
6579
|
| quantity | number | no | |
|
|
6581
|
-
|
|
|
6580
|
+
| display | string | no | |
|
|
6581
|
+
| parent_item_identifiers | string | no | |
|
|
6582
6582
|
|
|
6583
6583
|
---
|
|
6584
6584
|
|
|
@@ -6600,9 +6600,9 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
6600
6600
|
|
|
6601
6601
|
| Properties | Type | Nullable | Description |
|
|
6602
6602
|
| ---------- | ---- | -------- | ----------- |
|
|
6603
|
-
| success | boolean | no | True if all items are added successfully. False if partially added or not added. |
|
|
6604
|
-
| partial | boolean | no | When adding multiple items check if all added. True if only few are added. |
|
|
6605
6603
|
| message | string | no | |
|
|
6604
|
+
| partial | boolean | no | When adding multiple items check if all added. True if only few are added. |
|
|
6605
|
+
| success | boolean | no | True if all items are added successfully. False if partially added or not added. |
|
|
6606
6606
|
| cart | [CartDetailResponse](#CartDetailResponse) | no | |
|
|
6607
6607
|
|
|
6608
6608
|
---
|
|
@@ -6614,15 +6614,15 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
6614
6614
|
|
|
6615
6615
|
| Properties | Type | Nullable | Description |
|
|
6616
6616
|
| ---------- | ---- | -------- | ----------- |
|
|
6617
|
-
| parent_item_identifiers | string | no | |
|
|
6618
|
-
| item_size | string | no | |
|
|
6619
6617
|
| extra_meta | string | no | |
|
|
6618
|
+
| item_size | string | no | |
|
|
6619
|
+
| _custom_json | string | no | |
|
|
6620
6620
|
| item_id | number | no | |
|
|
6621
6621
|
| identifiers | [CartProductIdentifer](#CartProductIdentifer) | yes | |
|
|
6622
|
-
| _custom_json | string | no | |
|
|
6623
|
-
| item_index | number | no | |
|
|
6624
6622
|
| article_id | string | no | |
|
|
6625
6623
|
| quantity | number | no | |
|
|
6624
|
+
| item_index | number | no | |
|
|
6625
|
+
| parent_item_identifiers | string | no | |
|
|
6626
6626
|
|
|
6627
6627
|
---
|
|
6628
6628
|
|
|
@@ -6633,8 +6633,8 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
6633
6633
|
|
|
6634
6634
|
| Properties | Type | Nullable | Description |
|
|
6635
6635
|
| ---------- | ---- | -------- | ----------- |
|
|
6636
|
-
| operation | string | yes | |
|
|
6637
6636
|
| items | [[UpdateProductCart](#UpdateProductCart)] | no | |
|
|
6637
|
+
| operation | string | yes | |
|
|
6638
6638
|
|
|
6639
6639
|
---
|
|
6640
6640
|
|
|
@@ -6645,8 +6645,8 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
6645
6645
|
|
|
6646
6646
|
| Properties | Type | Nullable | Description |
|
|
6647
6647
|
| ---------- | ---- | -------- | ----------- |
|
|
6648
|
-
| success | boolean | no | True if all items are added successfully. False if partially added or not added. |
|
|
6649
6648
|
| message | string | no | |
|
|
6649
|
+
| success | boolean | no | True if all items are added successfully. False if partially added or not added. |
|
|
6650
6650
|
| cart | [CartDetailResponse](#CartDetailResponse) | no | |
|
|
6651
6651
|
|
|
6652
6652
|
---
|
|
@@ -6670,10 +6670,10 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
6670
6670
|
| Properties | Type | Nullable | Description |
|
|
6671
6671
|
| ---------- | ---- | -------- | ----------- |
|
|
6672
6672
|
| has_previous | boolean | no | |
|
|
6673
|
+
| has_next | boolean | no | |
|
|
6674
|
+
| total_item_count | number | no | |
|
|
6673
6675
|
| current | number | no | |
|
|
6674
6676
|
| total | number | no | |
|
|
6675
|
-
| total_item_count | number | no | |
|
|
6676
|
-
| has_next | boolean | no | |
|
|
6677
6677
|
|
|
6678
6678
|
---
|
|
6679
6679
|
|
|
@@ -6684,16 +6684,16 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
6684
6684
|
|
|
6685
6685
|
| Properties | Type | Nullable | Description |
|
|
6686
6686
|
| ---------- | ---- | -------- | ----------- |
|
|
6687
|
-
| is_applied | boolean | no | |
|
|
6688
|
-
| message | string | no | |
|
|
6689
6687
|
| max_discount_value | number | no | |
|
|
6688
|
+
| minimum_cart_value | number | no | |
|
|
6689
|
+
| is_applied | boolean | no | |
|
|
6690
|
+
| title | string | no | |
|
|
6691
|
+
| coupon_code | string | no | |
|
|
6690
6692
|
| sub_title | string | no | |
|
|
6693
|
+
| message | string | no | |
|
|
6694
|
+
| expires_on | string | no | |
|
|
6691
6695
|
| is_applicable | boolean | no | |
|
|
6692
|
-
| coupon_code | string | no | |
|
|
6693
|
-
| minimum_cart_value | number | no | |
|
|
6694
6696
|
| coupon_value | number | no | |
|
|
6695
|
-
| expires_on | string | no | |
|
|
6696
|
-
| title | string | no | |
|
|
6697
6697
|
|
|
6698
6698
|
---
|
|
6699
6699
|
|
|
@@ -6723,27 +6723,15 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
6723
6723
|
|
|
6724
6724
|
|
|
6725
6725
|
|
|
6726
|
-
#### [OfferSeller](#OfferSeller)
|
|
6727
|
-
|
|
6728
|
-
| Properties | Type | Nullable | Description |
|
|
6729
|
-
| ---------- | ---- | -------- | ----------- |
|
|
6730
|
-
| uid | number | no | Seller id |
|
|
6731
|
-
| name | string | no | |
|
|
6732
|
-
|
|
6733
|
-
---
|
|
6734
|
-
|
|
6735
|
-
|
|
6736
|
-
|
|
6737
|
-
|
|
6738
6726
|
#### [OfferPrice](#OfferPrice)
|
|
6739
6727
|
|
|
6740
6728
|
| Properties | Type | Nullable | Description |
|
|
6741
6729
|
| ---------- | ---- | -------- | ----------- |
|
|
6742
6730
|
| currency_code | string | no | Currency code for all amounts |
|
|
6743
|
-
| marked | number | no | Original price of product |
|
|
6744
|
-
| currency_symbol | string | no | Currency symbol for currency |
|
|
6745
6731
|
| effective | number | no | Current per unit price of product after existing deductions |
|
|
6732
|
+
| marked | number | no | Original price of product |
|
|
6746
6733
|
| bulk_effective | number | no | Discounted per unit price for current offer object |
|
|
6734
|
+
| currency_symbol | string | no | Currency symbol for currency |
|
|
6747
6735
|
|
|
6748
6736
|
---
|
|
6749
6737
|
|
|
@@ -6754,13 +6742,25 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
6754
6742
|
|
|
6755
6743
|
| Properties | Type | Nullable | Description |
|
|
6756
6744
|
| ---------- | ---- | -------- | ----------- |
|
|
6745
|
+
| best | boolean | no | Is true for best offer from all offers present for all sellers |
|
|
6757
6746
|
| price | [OfferPrice](#OfferPrice) | no | |
|
|
6758
|
-
| type | string | no | Offer type |
|
|
6759
6747
|
| margin | number | no | Percentage value of discount |
|
|
6760
|
-
| best | boolean | no | Is true for best offer from all offers present for all sellers |
|
|
6761
|
-
| total | number | no | Total price of offer quantity with discount |
|
|
6762
6748
|
| quantity | number | no | Quantity on which offer is applicable |
|
|
6749
|
+
| total | number | no | Total price of offer quantity with discount |
|
|
6763
6750
|
| auto_applied | boolean | no | Whether offer discount is auto applied in cart |
|
|
6751
|
+
| type | string | no | Offer type |
|
|
6752
|
+
|
|
6753
|
+
---
|
|
6754
|
+
|
|
6755
|
+
|
|
6756
|
+
|
|
6757
|
+
|
|
6758
|
+
#### [OfferSeller](#OfferSeller)
|
|
6759
|
+
|
|
6760
|
+
| Properties | Type | Nullable | Description |
|
|
6761
|
+
| ---------- | ---- | -------- | ----------- |
|
|
6762
|
+
| name | string | no | |
|
|
6763
|
+
| uid | number | no | Seller id |
|
|
6764
6764
|
|
|
6765
6765
|
---
|
|
6766
6766
|
|
|
@@ -6771,8 +6771,8 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
6771
6771
|
|
|
6772
6772
|
| Properties | Type | Nullable | Description |
|
|
6773
6773
|
| ---------- | ---- | -------- | ----------- |
|
|
6774
|
-
| seller | [OfferSeller](#OfferSeller) | no | |
|
|
6775
6774
|
| offers | [[OfferItem](#OfferItem)] | no | |
|
|
6775
|
+
| seller | [OfferSeller](#OfferSeller) | no | |
|
|
6776
6776
|
|
|
6777
6777
|
---
|
|
6778
6778
|
|
|
@@ -6805,8 +6805,8 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
6805
6805
|
|
|
6806
6806
|
| Properties | Type | Nullable | Description |
|
|
6807
6807
|
| ---------- | ---- | -------- | ----------- |
|
|
6808
|
-
| latitude | number | no | |
|
|
6809
6808
|
| longitude | number | no | |
|
|
6809
|
+
| latitude | number | no | |
|
|
6810
6810
|
|
|
6811
6811
|
---
|
|
6812
6812
|
|
|
@@ -6817,30 +6817,30 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
6817
6817
|
|
|
6818
6818
|
| Properties | Type | Nullable | Description |
|
|
6819
6819
|
| ---------- | ---- | -------- | ----------- |
|
|
6820
|
-
| country_phone_code | string | no | |
|
|
6821
|
-
| google_map_point | string | no | |
|
|
6822
|
-
| area | string | no | |
|
|
6823
|
-
| area_code_slug | string | no | |
|
|
6824
|
-
| address | string | no | |
|
|
6825
|
-
| city | string | no | |
|
|
6826
|
-
| id | string | no | |
|
|
6827
|
-
| is_active | boolean | no | |
|
|
6828
|
-
| country_iso_code | string | no | |
|
|
6829
|
-
| area_code | string | no | |
|
|
6830
|
-
| user_id | string | no | |
|
|
6831
6820
|
| name | string | no | |
|
|
6832
|
-
|
|
|
6821
|
+
| is_default_address | boolean | no | |
|
|
6822
|
+
| country_code | string | no | |
|
|
6833
6823
|
| geo_location | [GeoLocation](#GeoLocation) | no | |
|
|
6824
|
+
| user_id | string | no | |
|
|
6825
|
+
| area_code | string | no | |
|
|
6826
|
+
| tags | [string] | no | |
|
|
6827
|
+
| area | string | no | |
|
|
6828
|
+
| meta | string | no | |
|
|
6834
6829
|
| country | string | no | |
|
|
6835
|
-
|
|
|
6836
|
-
| email | string | no | |
|
|
6830
|
+
| address | string | no | |
|
|
6837
6831
|
| state | string | no | |
|
|
6838
|
-
| meta | string | no | |
|
|
6839
|
-
| is_default_address | boolean | no | |
|
|
6840
|
-
| phone | string | no | |
|
|
6841
6832
|
| checkout_mode | string | no | |
|
|
6842
|
-
|
|
|
6833
|
+
| is_active | boolean | no | |
|
|
6834
|
+
| phone | string | no | |
|
|
6835
|
+
| google_map_point | string | no | |
|
|
6836
|
+
| id | string | no | |
|
|
6843
6837
|
| address_type | string | no | |
|
|
6838
|
+
| area_code_slug | string | no | |
|
|
6839
|
+
| country_iso_code | string | no | |
|
|
6840
|
+
| city | string | no | |
|
|
6841
|
+
| country_phone_code | string | no | |
|
|
6842
|
+
| email | string | no | |
|
|
6843
|
+
| landmark | string | no | |
|
|
6844
6844
|
|
|
6845
6845
|
---
|
|
6846
6846
|
|
|
@@ -6876,9 +6876,9 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
6876
6876
|
| Properties | Type | Nullable | Description |
|
|
6877
6877
|
| ---------- | ---- | -------- | ----------- |
|
|
6878
6878
|
| id | string | no | |
|
|
6879
|
-
| is_updated | boolean | no | |
|
|
6880
6879
|
| is_default_address | boolean | no | |
|
|
6881
6880
|
| success | boolean | no | |
|
|
6881
|
+
| is_updated | boolean | no | |
|
|
6882
6882
|
|
|
6883
6883
|
---
|
|
6884
6884
|
|
|
@@ -6901,8 +6901,8 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
6901
6901
|
|
|
6902
6902
|
| Properties | Type | Nullable | Description |
|
|
6903
6903
|
| ---------- | ---- | -------- | ----------- |
|
|
6904
|
-
| billing_address_id | string | no | |
|
|
6905
6904
|
| id | string | no | |
|
|
6905
|
+
| billing_address_id | string | no | |
|
|
6906
6906
|
| cart_id | string | no | |
|
|
6907
6907
|
|
|
6908
6908
|
---
|
|
@@ -6915,11 +6915,11 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
6915
6915
|
| Properties | Type | Nullable | Description |
|
|
6916
6916
|
| ---------- | ---- | -------- | ----------- |
|
|
6917
6917
|
| id | string | no | |
|
|
6918
|
-
| aggregator_name | string | no | |
|
|
6919
|
-
| merchant_code | string | no | |
|
|
6920
|
-
| payment_identifier | string | no | |
|
|
6921
6918
|
| payment_mode | string | no | |
|
|
6919
|
+
| payment_identifier | string | no | |
|
|
6920
|
+
| aggregator_name | string | no | |
|
|
6922
6921
|
| address_id | string | no | |
|
|
6922
|
+
| merchant_code | string | no | |
|
|
6923
6923
|
|
|
6924
6924
|
---
|
|
6925
6925
|
|
|
@@ -6930,11 +6930,11 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
6930
6930
|
|
|
6931
6931
|
| Properties | Type | Nullable | Description |
|
|
6932
6932
|
| ---------- | ---- | -------- | ----------- |
|
|
6933
|
-
| display_message_en | string | no | |
|
|
6934
|
-
| discount | number | no | |
|
|
6935
6933
|
| valid | boolean | no | |
|
|
6936
|
-
|
|
|
6934
|
+
| discount | number | no | |
|
|
6937
6935
|
| title | string | no | |
|
|
6936
|
+
| display_message_en | string | no | |
|
|
6937
|
+
| code | string | no | |
|
|
6938
6938
|
|
|
6939
6939
|
---
|
|
6940
6940
|
|
|
@@ -6945,9 +6945,9 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
6945
6945
|
|
|
6946
6946
|
| Properties | Type | Nullable | Description |
|
|
6947
6947
|
| ---------- | ---- | -------- | ----------- |
|
|
6948
|
+
| message | string | no | |
|
|
6948
6949
|
| coupon_validity | [CouponValidity](#CouponValidity) | no | |
|
|
6949
6950
|
| success | boolean | yes | |
|
|
6950
|
-
| message | string | no | |
|
|
6951
6951
|
|
|
6952
6952
|
---
|
|
6953
6953
|
|
|
@@ -6958,16 +6958,16 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
6958
6958
|
|
|
6959
6959
|
| Properties | Type | Nullable | Description |
|
|
6960
6960
|
| ---------- | ---- | -------- | ----------- |
|
|
6961
|
-
|
|
|
6962
|
-
| promise | [ShipmentPromise](#ShipmentPromise) | no | |
|
|
6961
|
+
| fulfillment_type | string | no | |
|
|
6963
6962
|
| dp_options | string | no | |
|
|
6964
|
-
| dp_id | string | no | |
|
|
6965
|
-
| items | [[CartProductInfo](#CartProductInfo)] | no | |
|
|
6966
6963
|
| shipment_type | string | no | |
|
|
6967
|
-
| fulfillment_type | string | no | |
|
|
6968
|
-
| fulfillment_id | number | no | |
|
|
6969
6964
|
| order_type | string | no | |
|
|
6965
|
+
| promise | [ShipmentPromise](#ShipmentPromise) | no | |
|
|
6966
|
+
| items | [[CartProductInfo](#CartProductInfo)] | no | |
|
|
6967
|
+
| box_type | string | no | |
|
|
6968
|
+
| dp_id | string | no | |
|
|
6970
6969
|
| shipments | number | no | |
|
|
6970
|
+
| fulfillment_id | number | no | |
|
|
6971
6971
|
|
|
6972
6972
|
---
|
|
6973
6973
|
|
|
@@ -6978,52 +6978,52 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
6978
6978
|
|
|
6979
6979
|
| Properties | Type | Nullable | Description |
|
|
6980
6980
|
| ---------- | ---- | -------- | ----------- |
|
|
6981
|
+
| checkout_mode | string | no | |
|
|
6981
6982
|
| is_valid | boolean | no | |
|
|
6982
|
-
| message | string | no | |
|
|
6983
|
-
| payment_selection_lock | [PaymentSelectionLock](#PaymentSelectionLock) | no | |
|
|
6984
|
-
| uid | string | no | |
|
|
6985
|
-
| restrict_checkout | boolean | no | |
|
|
6986
|
-
| last_modified | string | no | |
|
|
6987
6983
|
| comment | string | no | |
|
|
6988
|
-
|
|
|
6989
|
-
| buy_now | boolean | no | |
|
|
6990
|
-
| breakup_values | [CartBreakup](#CartBreakup) | no | |
|
|
6991
|
-
| gstin | string | no | |
|
|
6992
|
-
| id | string | no | |
|
|
6993
|
-
| cart_id | number | no | |
|
|
6984
|
+
| restrict_checkout | boolean | no | |
|
|
6994
6985
|
| currency | [CartCurrency](#CartCurrency) | no | |
|
|
6995
|
-
|
|
|
6986
|
+
| uid | string | no | |
|
|
6987
|
+
| buy_now | boolean | no | |
|
|
6988
|
+
| payment_selection_lock | [PaymentSelectionLock](#PaymentSelectionLock) | no | |
|
|
6989
|
+
| message | string | no | |
|
|
6996
6990
|
| delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
|
|
6997
|
-
| checkout_mode | string | no | |
|
|
6998
6991
|
| shipments | [[ShipmentResponse](#ShipmentResponse)] | no | |
|
|
6992
|
+
| id | string | no | |
|
|
6993
|
+
| error | boolean | no | |
|
|
6994
|
+
| delivery_charge_info | string | no | |
|
|
6995
|
+
| last_modified | string | no | |
|
|
6996
|
+
| cart_id | number | no | |
|
|
6999
6997
|
| coupon_text | string | no | |
|
|
6998
|
+
| gstin | string | no | |
|
|
6999
|
+
| breakup_values | [CartBreakup](#CartBreakup) | no | |
|
|
7000
7000
|
|
|
7001
7001
|
---
|
|
7002
7002
|
|
|
7003
7003
|
|
|
7004
7004
|
|
|
7005
7005
|
|
|
7006
|
-
#### [
|
|
7006
|
+
#### [StaffCheckout](#StaffCheckout)
|
|
7007
7007
|
|
|
7008
7008
|
| Properties | Type | Nullable | Description |
|
|
7009
7009
|
| ---------- | ---- | -------- | ----------- |
|
|
7010
|
-
|
|
|
7011
|
-
|
|
|
7010
|
+
| last_name | string | yes | |
|
|
7011
|
+
| employee_code | string | no | |
|
|
7012
|
+
| user | string | yes | |
|
|
7013
|
+
| _id | string | yes | |
|
|
7014
|
+
| first_name | string | yes | |
|
|
7012
7015
|
|
|
7013
7016
|
---
|
|
7014
7017
|
|
|
7015
7018
|
|
|
7016
7019
|
|
|
7017
7020
|
|
|
7018
|
-
#### [
|
|
7021
|
+
#### [CartCheckoutCustomMeta](#CartCheckoutCustomMeta)
|
|
7019
7022
|
|
|
7020
7023
|
| Properties | Type | Nullable | Description |
|
|
7021
7024
|
| ---------- | ---- | -------- | ----------- |
|
|
7022
|
-
|
|
|
7023
|
-
|
|
|
7024
|
-
| employee_code | string | no | |
|
|
7025
|
-
| last_name | string | yes | |
|
|
7026
|
-
| user | string | yes | |
|
|
7025
|
+
| value | string | yes | |
|
|
7026
|
+
| key | string | yes | |
|
|
7027
7027
|
|
|
7028
7028
|
---
|
|
7029
7029
|
|
|
@@ -7034,22 +7034,22 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
7034
7034
|
|
|
7035
7035
|
| Properties | Type | Nullable | Description |
|
|
7036
7036
|
| ---------- | ---- | -------- | ----------- |
|
|
7037
|
-
|
|
|
7038
|
-
|
|
|
7039
|
-
| aggregator | string | no | |
|
|
7040
|
-
| extra_meta | string | no | |
|
|
7037
|
+
| delivery_address | string | no | |
|
|
7038
|
+
| payment_mode | string | yes | |
|
|
7041
7039
|
| meta | string | no | |
|
|
7042
|
-
|
|
|
7040
|
+
| extra_meta | string | no | |
|
|
7041
|
+
| staff | [StaffCheckout](#StaffCheckout) | no | |
|
|
7042
|
+
| aggregator | string | no | |
|
|
7043
|
+
| payment_identifier | string | no | |
|
|
7044
|
+
| ordering_store | number | no | |
|
|
7043
7045
|
| payment_params | string | no | |
|
|
7044
|
-
| delivery_address | string | no | |
|
|
7045
7046
|
| callback_url | string | no | |
|
|
7046
|
-
|
|
|
7047
|
-
|
|
|
7047
|
+
| address_id | string | no | |
|
|
7048
|
+
| billing_address_id | string | no | |
|
|
7049
|
+
| custom_meta | [[CartCheckoutCustomMeta](#CartCheckoutCustomMeta)] | no | |
|
|
7048
7050
|
| billing_address | string | no | |
|
|
7049
|
-
|
|
|
7050
|
-
| staff | [StaffCheckout](#StaffCheckout) | no | |
|
|
7051
|
+
| merchant_code | string | no | |
|
|
7051
7052
|
| payment_auto_confirm | boolean | no | |
|
|
7052
|
-
| address_id | string | no | |
|
|
7053
7053
|
|
|
7054
7054
|
---
|
|
7055
7055
|
|
|
@@ -7060,35 +7060,35 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
7060
7060
|
|
|
7061
7061
|
| Properties | Type | Nullable | Description |
|
|
7062
7062
|
| ---------- | ---- | -------- | ----------- |
|
|
7063
|
-
|
|
|
7064
|
-
| uid | string | no | |
|
|
7065
|
-
| items | [[CartProductInfo](#CartProductInfo)] | no | |
|
|
7066
|
-
| delivery_charge_info | string | no | |
|
|
7067
|
-
| delivery_charge_order_value | number | no | |
|
|
7068
|
-
| breakup_values | [CartBreakup](#CartBreakup) | no | |
|
|
7069
|
-
| cod_charges | number | no | |
|
|
7070
|
-
| id | string | no | |
|
|
7071
|
-
| cart_id | number | no | |
|
|
7072
|
-
| cod_message | string | no | |
|
|
7063
|
+
| is_valid | boolean | no | |
|
|
7073
7064
|
| error_message | string | no | |
|
|
7065
|
+
| restrict_checkout | boolean | no | |
|
|
7074
7066
|
| currency | [CartCurrency](#CartCurrency) | no | |
|
|
7067
|
+
| payment_selection_lock | [PaymentSelectionLock](#PaymentSelectionLock) | no | |
|
|
7068
|
+
| cod_available | boolean | no | |
|
|
7069
|
+
| cod_charges | number | no | |
|
|
7075
7070
|
| store_emps | [string] | no | |
|
|
7076
|
-
|
|
|
7077
|
-
|
|
|
7078
|
-
|
|
|
7071
|
+
| cod_message | string | no | |
|
|
7072
|
+
| store_code | string | no | |
|
|
7073
|
+
| delivery_charge_info | string | no | |
|
|
7079
7074
|
| coupon_text | string | no | |
|
|
7080
|
-
|
|
|
7081
|
-
| last_modified | string | no | |
|
|
7075
|
+
| checkout_mode | string | no | |
|
|
7082
7076
|
| comment | string | no | |
|
|
7083
|
-
|
|
|
7077
|
+
| delivery_charges | number | no | |
|
|
7078
|
+
| uid | string | no | |
|
|
7084
7079
|
| buy_now | boolean | no | |
|
|
7085
|
-
|
|
|
7086
|
-
| order_id | string | no | |
|
|
7087
|
-
| cod_available | boolean | no | |
|
|
7088
|
-
| checkout_mode | string | no | |
|
|
7089
|
-
| user_type | string | no | |
|
|
7090
|
-
| store_code | string | no | |
|
|
7080
|
+
| message | string | no | |
|
|
7091
7081
|
| delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
|
|
7082
|
+
| user_type | string | no | |
|
|
7083
|
+
| id | string | no | |
|
|
7084
|
+
| success | boolean | no | |
|
|
7085
|
+
| delivery_charge_order_value | number | no | |
|
|
7086
|
+
| items | [[CartProductInfo](#CartProductInfo)] | no | |
|
|
7087
|
+
| last_modified | string | no | |
|
|
7088
|
+
| order_id | string | no | |
|
|
7089
|
+
| cart_id | number | no | |
|
|
7090
|
+
| gstin | string | no | |
|
|
7091
|
+
| breakup_values | [CartBreakup](#CartBreakup) | no | |
|
|
7092
7092
|
|
|
7093
7093
|
---
|
|
7094
7094
|
|
|
@@ -7099,13 +7099,13 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
7099
7099
|
|
|
7100
7100
|
| Properties | Type | Nullable | Description |
|
|
7101
7101
|
| ---------- | ---- | -------- | ----------- |
|
|
7102
|
-
|
|
|
7103
|
-
| order_id | string | no | |
|
|
7104
|
-
| data | string | no | |
|
|
7102
|
+
| success | boolean | no | |
|
|
7105
7103
|
| callback_url | string | no | |
|
|
7106
7104
|
| app_intercept_url | string | no | |
|
|
7105
|
+
| order_id | string | no | |
|
|
7107
7106
|
| payment_confirm_url | string | no | |
|
|
7108
|
-
|
|
|
7107
|
+
| message | string | no | |
|
|
7108
|
+
| data | string | no | |
|
|
7109
7109
|
| cart | [CheckCart](#CheckCart) | no | |
|
|
7110
7110
|
|
|
7111
7111
|
---
|
|
@@ -7117,10 +7117,10 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
7117
7117
|
|
|
7118
7118
|
| Properties | Type | Nullable | Description |
|
|
7119
7119
|
| ---------- | ---- | -------- | ----------- |
|
|
7120
|
-
| comment | string | no | |
|
|
7121
7120
|
| checkout_mode | string | no | |
|
|
7122
|
-
|
|
|
7121
|
+
| comment | string | no | |
|
|
7123
7122
|
| gstin | string | no | |
|
|
7123
|
+
| pick_up_customer_details | string | no | Customer contact details for customer pickup at store |
|
|
7124
7124
|
|
|
7125
7125
|
---
|
|
7126
7126
|
|
|
@@ -7153,8 +7153,8 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
7153
7153
|
|
|
7154
7154
|
| Properties | Type | Nullable | Description |
|
|
7155
7155
|
| ---------- | ---- | -------- | ----------- |
|
|
7156
|
-
| 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. |
|
|
7157
7156
|
| id | string | no | Cart uid for generating sharing |
|
|
7157
|
+
| 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. |
|
|
7158
7158
|
|
|
7159
7159
|
---
|
|
7160
7160
|
|
|
@@ -7179,9 +7179,9 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
7179
7179
|
| ---------- | ---- | -------- | ----------- |
|
|
7180
7180
|
| meta | string | no | Meta data sent while generating share cart link |
|
|
7181
7181
|
| token | string | no | Short link id |
|
|
7182
|
+
| user | string | no | User details of who generated share link |
|
|
7182
7183
|
| source | string | no | Share link device and other source information |
|
|
7183
7184
|
| created_on | string | no | |
|
|
7184
|
-
| user | string | no | User details of who generated share link |
|
|
7185
7185
|
|
|
7186
7186
|
---
|
|
7187
7187
|
|
|
@@ -7192,25 +7192,25 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
7192
7192
|
|
|
7193
7193
|
| Properties | Type | Nullable | Description |
|
|
7194
7194
|
| ---------- | ---- | -------- | ----------- |
|
|
7195
|
+
| is_valid | boolean | no | |
|
|
7196
|
+
| restrict_checkout | boolean | no | |
|
|
7197
|
+
| currency | [CartCurrency](#CartCurrency) | no | |
|
|
7195
7198
|
| payment_selection_lock | [PaymentSelectionLock](#PaymentSelectionLock) | no | |
|
|
7196
|
-
|
|
|
7197
|
-
| items | [[CartProductInfo](#CartProductInfo)] | no | |
|
|
7199
|
+
| shared_cart_details | [SharedCartDetails](#SharedCartDetails) | no | |
|
|
7198
7200
|
| delivery_charge_info | string | no | |
|
|
7199
|
-
| breakup_values | [CartBreakup](#CartBreakup) | no | |
|
|
7200
|
-
| id | string | no | |
|
|
7201
|
-
| cart_id | number | no | |
|
|
7202
|
-
| currency | [CartCurrency](#CartCurrency) | no | |
|
|
7203
|
-
| is_valid | boolean | no | |
|
|
7204
|
-
| message | string | no | |
|
|
7205
7201
|
| coupon_text | string | no | |
|
|
7206
|
-
|
|
|
7207
|
-
| last_modified | string | no | |
|
|
7202
|
+
| checkout_mode | string | no | |
|
|
7208
7203
|
| comment | string | no | |
|
|
7209
|
-
|
|
|
7204
|
+
| uid | string | no | |
|
|
7210
7205
|
| buy_now | boolean | no | |
|
|
7211
|
-
|
|
|
7212
|
-
| checkout_mode | string | no | |
|
|
7206
|
+
| message | string | no | |
|
|
7213
7207
|
| delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
|
|
7208
|
+
| id | string | no | |
|
|
7209
|
+
| items | [[CartProductInfo](#CartProductInfo)] | no | |
|
|
7210
|
+
| last_modified | string | no | |
|
|
7211
|
+
| cart_id | number | no | |
|
|
7212
|
+
| gstin | string | no | |
|
|
7213
|
+
| breakup_values | [CartBreakup](#CartBreakup) | no | |
|
|
7214
7214
|
|
|
7215
7215
|
---
|
|
7216
7216
|
|
|
@@ -7233,10 +7233,10 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
7233
7233
|
|
|
7234
7234
|
| Properties | Type | Nullable | Description |
|
|
7235
7235
|
| ---------- | ---- | -------- | ----------- |
|
|
7236
|
-
| offer_text | string | no | Offer title |
|
|
7237
|
-
| promotion_group | string | no | Group of promotion belongs to |
|
|
7238
7236
|
| id | string | no | Promotion id |
|
|
7237
|
+
| offer_text | string | no | Offer title |
|
|
7239
7238
|
| description | string | no | Offer details including T&C |
|
|
7239
|
+
| promotion_group | string | no | Group of promotion belongs to |
|
|
7240
7240
|
| valid_till | string | no | Datetime ISOString for promotion end date |
|
|
7241
7241
|
|
|
7242
7242
|
---
|
|
@@ -7259,8 +7259,8 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
7259
7259
|
|
|
7260
7260
|
| Properties | Type | Nullable | Description |
|
|
7261
7261
|
| ---------- | ---- | -------- | ----------- |
|
|
7262
|
-
| success | boolean | no | |
|
|
7263
7262
|
| message | string | no | |
|
|
7263
|
+
| success | boolean | no | |
|
|
7264
7264
|
|
|
7265
7265
|
---
|
|
7266
7266
|
|
|
@@ -7284,10 +7284,10 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
7284
7284
|
| Properties | Type | Nullable | Description |
|
|
7285
7285
|
| ---------- | ---- | -------- | ----------- |
|
|
7286
7286
|
| currency_code | string | no | Currency code for all amounts |
|
|
7287
|
-
|
|
|
7287
|
+
| effective | number | no | Current per unit price of product after existing deductions |
|
|
7288
7288
|
| marked | number | no | Original price of product |
|
|
7289
7289
|
| currency_symbol | string | no | Currency symbol for currency |
|
|
7290
|
-
|
|
|
7290
|
+
| offer_price | number | no | Discounted per unit price for current offer object |
|
|
7291
7291
|
|
|
7292
7292
|
---
|
|
7293
7293
|
|
|
@@ -7298,11 +7298,11 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
7298
7298
|
|
|
7299
7299
|
| Properties | Type | Nullable | Description |
|
|
7300
7300
|
| ---------- | ---- | -------- | ----------- |
|
|
7301
|
+
| max_quantity | number | no | Minimum quantity upto which offer is applicable. If not present that offer is applicable on all quantities |
|
|
7301
7302
|
| price | [LadderPrice](#LadderPrice) | no | |
|
|
7303
|
+
| margin | number | no | Percentage value of discount |
|
|
7302
7304
|
| min_quantity | number | no | Minimum quantity from which offer is applicable |
|
|
7303
|
-
| max_quantity | number | no | Minimum quantity upto which offer is applicable. If not present that offer is applicable on all quantities |
|
|
7304
7305
|
| type | string | no | Offer type |
|
|
7305
|
-
| margin | number | no | Percentage value of discount |
|
|
7306
7306
|
|
|
7307
7307
|
---
|
|
7308
7308
|
|
|
@@ -7313,11 +7313,11 @@ Success. Returns a object containing the applicable ladder price offers (if exis
|
|
|
7313
7313
|
|
|
7314
7314
|
| Properties | Type | Nullable | Description |
|
|
7315
7315
|
| ---------- | ---- | -------- | ----------- |
|
|
7316
|
-
| offer_text | string | no | Offer title |
|
|
7317
|
-
| promotion_group | string | no | Group of promotion belongs to |
|
|
7318
7316
|
| id | string | no | Promotion id |
|
|
7319
7317
|
| offer_prices | [[LadderOfferItem](#LadderOfferItem)] | no | |
|
|
7318
|
+
| offer_text | string | no | Offer title |
|
|
7320
7319
|
| description | string | no | Offer details including T&C |
|
|
7320
|
+
| promotion_group | string | no | Group of promotion belongs to |
|
|
7321
7321
|
| valid_till | string | no | Datetime ISOString for promotion end date |
|
|
7322
7322
|
|
|
7323
7323
|
---
|