@gofynd/fdk-client-javascript 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/documentation/application/CART.md +251 -251
- package/documentation/application/CATALOG.md +393 -393
- package/documentation/application/CONTENT.md +15 -1
- package/documentation/application/ORDER.md +268 -268
- package/documentation/application/PAYMENT.md +249 -249
- package/documentation/application/POSCART.md +297 -297
- package/documentation/platform/CART.md +499 -499
- package/documentation/platform/CATALOG.md +3497 -3097
- package/documentation/platform/COMPANYPROFILE.md +207 -207
- package/documentation/platform/CONTENT.md +123 -1
- package/documentation/platform/ORDER.md +1518 -1324
- package/documentation/platform/PARTNER.md +7 -7
- package/documentation/platform/PAYMENT.md +96 -96
- package/index.js +7 -1
- package/package.json +1 -1
- package/sdk/application/ApplicationConfig.js +1 -1
- package/sdk/application/Cart/CartApplicationClient.js +865 -52
- package/sdk/application/Cart/CartApplicationModel.d.ts +7 -7
- package/sdk/application/Cart/CartApplicationModel.js +335 -335
- package/sdk/application/Cart/CartApplicationValidator.js +1 -0
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +1 -1
- package/sdk/application/Catalog/CatalogApplicationClient.js +1034 -60
- package/sdk/application/Catalog/CatalogApplicationModel.d.ts +19 -19
- package/sdk/application/Catalog/CatalogApplicationModel.js +532 -532
- package/sdk/application/Catalog/CatalogApplicationValidator.js +1 -0
- package/sdk/application/Common/CommonApplicationClient.js +66 -4
- package/sdk/application/Common/CommonApplicationValidator.js +1 -0
- package/sdk/application/Communication/CommunicationApplicationClient.js +108 -6
- package/sdk/application/Communication/CommunicationApplicationValidator.js +1 -0
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +1 -1
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +558 -32
- package/sdk/application/Configuration/ConfigurationApplicationValidator.js +1 -0
- package/sdk/application/Content/ContentApplicationClient.js +621 -38
- package/sdk/application/Content/ContentApplicationModel.d.ts +1 -0
- package/sdk/application/Content/ContentApplicationModel.js +11 -1
- package/sdk/application/Content/ContentApplicationValidator.js +1 -0
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +101 -6
- package/sdk/application/FileStorage/FileStorageApplicationValidator.js +1 -0
- package/sdk/application/Lead/LeadApplicationClient.js +229 -14
- package/sdk/application/Lead/LeadApplicationValidator.js +1 -0
- package/sdk/application/Logistic/LogisticApplicationClient.js +134 -8
- package/sdk/application/Logistic/LogisticApplicationValidator.js +1 -0
- package/sdk/application/Order/OrderApplicationClient.d.ts +1 -1
- package/sdk/application/Order/OrderApplicationClient.js +403 -24
- package/sdk/application/Order/OrderApplicationModel.d.ts +20 -20
- package/sdk/application/Order/OrderApplicationModel.js +334 -334
- package/sdk/application/Order/OrderApplicationValidator.js +1 -0
- package/sdk/application/Payment/PaymentApplicationClient.js +1381 -78
- package/sdk/application/Payment/PaymentApplicationModel.d.ts +2 -2
- package/sdk/application/Payment/PaymentApplicationModel.js +350 -350
- package/sdk/application/Payment/PaymentApplicationValidator.js +1 -0
- package/sdk/application/PosCart/PosCartApplicationClient.js +914 -54
- package/sdk/application/PosCart/PosCartApplicationModel.d.ts +15 -15
- package/sdk/application/PosCart/PosCartApplicationModel.js +389 -389
- package/sdk/application/PosCart/PosCartApplicationValidator.js +1 -0
- package/sdk/application/Rewards/RewardsApplicationClient.js +235 -14
- package/sdk/application/Rewards/RewardsApplicationValidator.js +1 -0
- package/sdk/application/Share/ShareApplicationClient.js +226 -14
- package/sdk/application/Share/ShareApplicationValidator.js +1 -0
- package/sdk/application/Theme/ThemeApplicationClient.js +130 -8
- package/sdk/application/Theme/ThemeApplicationValidator.js +1 -0
- package/sdk/application/User/UserApplicationClient.js +1133 -70
- package/sdk/application/User/UserApplicationValidator.js +1 -0
- package/sdk/common/AxiosHelper.js +1 -1
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +16 -8
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +287 -16
- package/sdk/platform/Analytics/AnalyticsPlatformClient.d.ts +8 -4
- package/sdk/platform/Analytics/AnalyticsPlatformClient.js +153 -8
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +8 -4
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +141 -8
- package/sdk/platform/Billing/BillingPlatformClient.d.ts +24 -12
- package/sdk/platform/Billing/BillingPlatformClient.js +429 -24
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +34 -17
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +617 -34
- package/sdk/platform/Cart/CartPlatformModel.d.ts +35 -35
- package/sdk/platform/Cart/CartPlatformModel.js +617 -617
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +191 -138
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +2202 -302
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +11 -11
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +45 -45
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +344 -226
- package/sdk/platform/Catalog/CatalogPlatformClient.js +3282 -488
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +110 -100
- package/sdk/platform/Catalog/CatalogPlatformModel.js +2073 -1795
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +23 -21
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +103 -84
- package/sdk/platform/Common/CommonPlatformClient.d.ts +4 -2
- package/sdk/platform/Common/CommonPlatformClient.js +73 -4
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +80 -40
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +1499 -80
- package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +2 -1
- package/sdk/platform/Communication/CommunicationPlatformClient.js +41 -2
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +27 -14
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +486 -26
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +9 -9
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +274 -274
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +56 -28
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +1022 -56
- package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +36 -18
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +693 -36
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +148 -67
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +2446 -140
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +1 -0
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +7 -0
- package/sdk/platform/Content/ContentPlatformModel.d.ts +4 -0
- package/sdk/platform/Content/ContentPlatformModel.js +43 -1
- package/sdk/platform/Discount/DiscountPlatformClient.d.ts +21 -10
- package/sdk/platform/Discount/DiscountPlatformClient.js +400 -22
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +8 -4
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +148 -8
- package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +12 -6
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +214 -12
- package/sdk/platform/Inventory/InventoryPlatformClient.d.ts +27 -14
- package/sdk/platform/Inventory/InventoryPlatformClient.js +449 -24
- package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +26 -13
- package/sdk/platform/Lead/LeadPlatformApplicationClient.js +447 -26
- package/sdk/platform/Lead/LeadPlatformClient.d.ts +22 -11
- package/sdk/platform/Lead/LeadPlatformClient.js +384 -22
- package/sdk/platform/OAuthClient.js +8 -8
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +6 -3
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +125 -6
- package/sdk/platform/Order/OrderPlatformClient.d.ts +108 -47
- package/sdk/platform/Order/OrderPlatformClient.js +1641 -100
- package/sdk/platform/Order/OrderPlatformModel.d.ts +69 -58
- package/sdk/platform/Order/OrderPlatformModel.js +1485 -1493
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +2 -1
- package/sdk/platform/Order/OrderPlatformValidator.js +15 -4
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +4 -2
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +74 -4
- package/sdk/platform/Partner/PartnerPlatformModel.d.ts +1 -1
- package/sdk/platform/Partner/PartnerPlatformModel.js +8 -8
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +22 -11
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +418 -22
- package/sdk/platform/Payment/PaymentPlatformClient.d.ts +21 -11
- package/sdk/platform/Payment/PaymentPlatformClient.js +374 -20
- package/sdk/platform/Payment/PaymentPlatformModel.js +139 -139
- package/sdk/platform/PlatformApplicationClient.d.ts +2973 -2827
- package/sdk/platform/PlatformApplicationClient.js +3461 -3263
- package/sdk/platform/PlatformClient.d.ts +2973 -2827
- package/sdk/platform/PlatformClient.js +3461 -3263
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +26 -13
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +449 -26
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +8 -4
- package/sdk/platform/Share/SharePlatformApplicationClient.js +139 -8
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +47 -23
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +816 -48
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +24 -12
- package/sdk/platform/User/UserPlatformApplicationClient.js +417 -24
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +12 -6
- package/sdk/platform/Webhook/WebhookPlatformClient.js +229 -12
- package/sdk/public/Configuration/ConfigurationPublicClient.js +72 -4
- package/sdk/public/Configuration/ConfigurationPublicValidator.js +3 -1
- package/sdk/public/Inventory/InventoryPublicClient.js +210 -12
- package/sdk/public/Inventory/InventoryPublicValidator.js +3 -1
- package/sdk/public/Webhook/WebhookPublicClient.js +74 -4
- package/sdk/public/Webhook/WebhookPublicValidator.js +3 -1
|
@@ -7888,19 +7888,6 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
7888
7888
|
|
|
7889
7889
|
|
|
7890
7890
|
|
|
7891
|
-
#### [ApplicationItemMOQ](#ApplicationItemMOQ)
|
|
7892
|
-
|
|
7893
|
-
| Properties | Type | Nullable | Description |
|
|
7894
|
-
| ---------- | ---- | -------- | ----------- |
|
|
7895
|
-
| increment_unit | number | no | |
|
|
7896
|
-
| maximum | number | no | |
|
|
7897
|
-
| minimum | number | no | |
|
|
7898
|
-
|
|
7899
|
-
---
|
|
7900
|
-
|
|
7901
|
-
|
|
7902
|
-
|
|
7903
|
-
|
|
7904
7891
|
#### [Meta](#Meta)
|
|
7905
7892
|
|
|
7906
7893
|
| Properties | Type | Nullable | Description |
|
|
@@ -7917,9 +7904,9 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
7917
7904
|
| Properties | Type | Nullable | Description |
|
|
7918
7905
|
| ---------- | ---- | -------- | ----------- |
|
|
7919
7906
|
| meta | [Meta](#Meta) | no | |
|
|
7920
|
-
| type | string | no | |
|
|
7921
7907
|
| url | string | no | |
|
|
7922
7908
|
| alt | string | no | |
|
|
7909
|
+
| type | string | no | |
|
|
7923
7910
|
|
|
7924
7911
|
---
|
|
7925
7912
|
|
|
@@ -7931,8 +7918,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
7931
7918
|
| Properties | Type | Nullable | Description |
|
|
7932
7919
|
| ---------- | ---- | -------- | ----------- |
|
|
7933
7920
|
| query | string | no | |
|
|
7934
|
-
| params | string | no | |
|
|
7935
7921
|
| type | string | no | |
|
|
7922
|
+
| params | string | no | |
|
|
7936
7923
|
|
|
7937
7924
|
---
|
|
7938
7925
|
|
|
@@ -7956,9 +7943,9 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
7956
7943
|
| Properties | Type | Nullable | Description |
|
|
7957
7944
|
| ---------- | ---- | -------- | ----------- |
|
|
7958
7945
|
| logo | [Media](#Media) | no | |
|
|
7946
|
+
| action | [ProductListingAction](#ProductListingAction) | no | |
|
|
7959
7947
|
| name | string | no | |
|
|
7960
7948
|
| uid | number | no | |
|
|
7961
|
-
| action | [ProductListingAction](#ProductListingAction) | no | |
|
|
7962
7949
|
| description | string | no | |
|
|
7963
7950
|
|
|
7964
7951
|
---
|
|
@@ -7979,24 +7966,12 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
7979
7966
|
|
|
7980
7967
|
|
|
7981
7968
|
|
|
7982
|
-
#### [CustomMetaFields](#CustomMetaFields)
|
|
7983
|
-
|
|
7984
|
-
| Properties | Type | Nullable | Description |
|
|
7985
|
-
| ---------- | ---- | -------- | ----------- |
|
|
7986
|
-
| key | string | yes | |
|
|
7987
|
-
| value | string | yes | |
|
|
7988
|
-
|
|
7989
|
-
---
|
|
7990
|
-
|
|
7991
|
-
|
|
7992
|
-
|
|
7993
|
-
|
|
7994
7969
|
#### [ProductDetailAttribute](#ProductDetailAttribute)
|
|
7995
7970
|
|
|
7996
7971
|
| Properties | Type | Nullable | Description |
|
|
7997
7972
|
| ---------- | ---- | -------- | ----------- |
|
|
7998
|
-
| type | string | no | |
|
|
7999
7973
|
| key | string | no | |
|
|
7974
|
+
| type | string | no | |
|
|
8000
7975
|
| value | string | no | |
|
|
8001
7976
|
|
|
8002
7977
|
---
|
|
@@ -8008,8 +7983,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
8008
7983
|
|
|
8009
7984
|
| Properties | Type | Nullable | Description |
|
|
8010
7985
|
| ---------- | ---- | -------- | ----------- |
|
|
8011
|
-
| title | string | no | |
|
|
8012
7986
|
| details | [[ProductDetailAttribute](#ProductDetailAttribute)] | no | |
|
|
7987
|
+
| title | string | no | |
|
|
8013
7988
|
|
|
8014
7989
|
---
|
|
8015
7990
|
|
|
@@ -8020,10 +7995,10 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
8020
7995
|
|
|
8021
7996
|
| Properties | Type | Nullable | Description |
|
|
8022
7997
|
| ---------- | ---- | -------- | ----------- |
|
|
8023
|
-
| max | number | no | |
|
|
8024
|
-
| min | number | no | |
|
|
8025
7998
|
| currency_symbol | string | no | |
|
|
7999
|
+
| max | number | no | |
|
|
8026
8000
|
| currency_code | string | no | |
|
|
8001
|
+
| min | number | no | |
|
|
8027
8002
|
|
|
8028
8003
|
---
|
|
8029
8004
|
|
|
@@ -8042,12 +8017,12 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
8042
8017
|
|
|
8043
8018
|
|
|
8044
8019
|
|
|
8045
|
-
#### [
|
|
8020
|
+
#### [CustomMetaFields](#CustomMetaFields)
|
|
8046
8021
|
|
|
8047
8022
|
| Properties | Type | Nullable | Description |
|
|
8048
8023
|
| ---------- | ---- | -------- | ----------- |
|
|
8049
|
-
|
|
|
8050
|
-
| value |
|
|
8024
|
+
| key | string | yes | |
|
|
8025
|
+
| value | string | yes | |
|
|
8051
8026
|
|
|
8052
8027
|
---
|
|
8053
8028
|
|
|
@@ -8066,44 +8041,69 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
8066
8041
|
|
|
8067
8042
|
|
|
8068
8043
|
|
|
8044
|
+
#### [ApplicationItemMOQ](#ApplicationItemMOQ)
|
|
8045
|
+
|
|
8046
|
+
| Properties | Type | Nullable | Description |
|
|
8047
|
+
| ---------- | ---- | -------- | ----------- |
|
|
8048
|
+
| increment_unit | number | no | |
|
|
8049
|
+
| minimum | number | no | |
|
|
8050
|
+
| maximum | number | no | |
|
|
8051
|
+
|
|
8052
|
+
---
|
|
8053
|
+
|
|
8054
|
+
|
|
8055
|
+
|
|
8056
|
+
|
|
8057
|
+
#### [NetQuantity](#NetQuantity)
|
|
8058
|
+
|
|
8059
|
+
| Properties | Type | Nullable | Description |
|
|
8060
|
+
| ---------- | ---- | -------- | ----------- |
|
|
8061
|
+
| unit | any | no | |
|
|
8062
|
+
| value | number | no | |
|
|
8063
|
+
|
|
8064
|
+
---
|
|
8065
|
+
|
|
8066
|
+
|
|
8067
|
+
|
|
8068
|
+
|
|
8069
8069
|
#### [ProductDetail](#ProductDetail)
|
|
8070
8070
|
|
|
8071
8071
|
| Properties | Type | Nullable | Description |
|
|
8072
8072
|
| ---------- | ---- | -------- | ----------- |
|
|
8073
|
-
| discount | string | no | |
|
|
8074
|
-
| type | string | no | |
|
|
8075
|
-
| moq | [ApplicationItemMOQ](#ApplicationItemMOQ) | no | |
|
|
8076
|
-
| image_nature | string | no | |
|
|
8077
|
-
| _custom_json | string | no | |
|
|
8078
|
-
| tags | [string] | no | |
|
|
8079
8073
|
| category_map | [ProductCategoryMap](#ProductCategoryMap) | no | |
|
|
8074
|
+
| type | string | no | |
|
|
8075
|
+
| attributes | string | no | |
|
|
8080
8076
|
| uid | number | no | |
|
|
8081
|
-
| slug | string | yes | |
|
|
8082
|
-
| item_type | string | no | |
|
|
8083
8077
|
| color | string | no | |
|
|
8084
|
-
| medias | [[Media](#Media)] | no | |
|
|
8085
|
-
| highlights | [string] | no | |
|
|
8086
|
-
| name | string | no | |
|
|
8087
|
-
| tryouts | [string] | no | |
|
|
8088
|
-
| rating_count | number | no | |
|
|
8089
|
-
| attributes | string | no | |
|
|
8090
8078
|
| similars | [string] | no | |
|
|
8091
|
-
|
|
|
8092
|
-
|
|
|
8093
|
-
|
|
|
8079
|
+
| short_description | string | no | |
|
|
8080
|
+
| medias | [[Media](#Media)] | no | |
|
|
8081
|
+
| has_variant | boolean | no | |
|
|
8082
|
+
| item_type | string | no | |
|
|
8094
8083
|
| grouped_attributes | [[ProductDetailGroupedAttribute](#ProductDetailGroupedAttribute)] | no | |
|
|
8095
|
-
| price | [ProductListingPrice](#ProductListingPrice) | no | |
|
|
8096
|
-
| brand | [ProductBrand](#ProductBrand) | no | |
|
|
8097
|
-
| product_online_date | string | no | |
|
|
8098
8084
|
| rating | number | no | |
|
|
8099
|
-
| net_quantity | [NetQuantity](#NetQuantity) | no | |
|
|
8100
8085
|
| categories | [[ProductBrand](#ProductBrand)] | no | |
|
|
8101
|
-
| seo | [ApplicationItemSEO](#ApplicationItemSEO) | no | |
|
|
8102
|
-
| short_description | string | no | |
|
|
8103
8086
|
| is_dependent | boolean | no | |
|
|
8104
|
-
|
|
|
8105
|
-
|
|
|
8087
|
+
| image_nature | string | no | |
|
|
8088
|
+
| name | string | no | |
|
|
8089
|
+
| price | [ProductListingPrice](#ProductListingPrice) | no | |
|
|
8090
|
+
| _custom_meta | [[CustomMetaFields](#CustomMetaFields)] | no | |
|
|
8091
|
+
| seo | [ApplicationItemSEO](#ApplicationItemSEO) | no | |
|
|
8106
8092
|
| description | string | no | |
|
|
8093
|
+
| brand | [ProductBrand](#ProductBrand) | no | |
|
|
8094
|
+
| rating_count | number | no | |
|
|
8095
|
+
| _custom_json | string | no | |
|
|
8096
|
+
| moq | [ApplicationItemMOQ](#ApplicationItemMOQ) | no | |
|
|
8097
|
+
| highlights | [string] | no | |
|
|
8098
|
+
| action | [ProductListingAction](#ProductListingAction) | no | |
|
|
8099
|
+
| product_online_date | string | no | |
|
|
8100
|
+
| tryouts | [string] | no | |
|
|
8101
|
+
| item_code | string | no | |
|
|
8102
|
+
| discount | string | no | |
|
|
8103
|
+
| teaser_tag | string | no | |
|
|
8104
|
+
| tags | [string] | no | |
|
|
8105
|
+
| slug | string | yes | |
|
|
8106
|
+
| net_quantity | [NetQuantity](#NetQuantity) | no | |
|
|
8107
8107
|
|
|
8108
8108
|
---
|
|
8109
8109
|
|
|
@@ -8121,117 +8121,117 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
8121
8121
|
|
|
8122
8122
|
|
|
8123
8123
|
|
|
8124
|
-
#### [
|
|
8124
|
+
#### [ColumnHeader](#ColumnHeader)
|
|
8125
8125
|
|
|
8126
8126
|
| Properties | Type | Nullable | Description |
|
|
8127
8127
|
| ---------- | ---- | -------- | ----------- |
|
|
8128
|
-
|
|
|
8128
|
+
| convertable | boolean | no | |
|
|
8129
|
+
| value | string | no | |
|
|
8129
8130
|
|
|
8130
8131
|
---
|
|
8131
8132
|
|
|
8132
8133
|
|
|
8133
8134
|
|
|
8134
8135
|
|
|
8135
|
-
#### [
|
|
8136
|
+
#### [ColumnHeaders](#ColumnHeaders)
|
|
8136
8137
|
|
|
8137
8138
|
| Properties | Type | Nullable | Description |
|
|
8138
8139
|
| ---------- | ---- | -------- | ----------- |
|
|
8139
|
-
|
|
|
8140
|
-
|
|
|
8141
|
-
|
|
|
8142
|
-
|
|
|
8143
|
-
|
|
|
8140
|
+
| col_1 | [ColumnHeader](#ColumnHeader) | no | |
|
|
8141
|
+
| col_2 | [ColumnHeader](#ColumnHeader) | no | |
|
|
8142
|
+
| col_6 | [ColumnHeader](#ColumnHeader) | no | |
|
|
8143
|
+
| col_4 | [ColumnHeader](#ColumnHeader) | no | |
|
|
8144
|
+
| col_3 | [ColumnHeader](#ColumnHeader) | no | |
|
|
8145
|
+
| col_5 | [ColumnHeader](#ColumnHeader) | no | |
|
|
8144
8146
|
|
|
8145
8147
|
---
|
|
8146
8148
|
|
|
8147
8149
|
|
|
8148
8150
|
|
|
8149
8151
|
|
|
8150
|
-
#### [
|
|
8152
|
+
#### [SizeChartValues](#SizeChartValues)
|
|
8151
8153
|
|
|
8152
8154
|
| Properties | Type | Nullable | Description |
|
|
8153
8155
|
| ---------- | ---- | -------- | ----------- |
|
|
8154
|
-
|
|
|
8155
|
-
|
|
|
8156
|
-
|
|
|
8156
|
+
| col_1 | string | no | |
|
|
8157
|
+
| col_2 | string | no | |
|
|
8158
|
+
| col_6 | string | no | |
|
|
8159
|
+
| col_4 | string | no | |
|
|
8160
|
+
| col_3 | string | no | |
|
|
8161
|
+
| col_5 | string | no | |
|
|
8157
8162
|
|
|
8158
8163
|
---
|
|
8159
8164
|
|
|
8160
8165
|
|
|
8161
8166
|
|
|
8162
8167
|
|
|
8163
|
-
#### [
|
|
8168
|
+
#### [SizeChart](#SizeChart)
|
|
8164
8169
|
|
|
8165
8170
|
| Properties | Type | Nullable | Description |
|
|
8166
8171
|
| ---------- | ---- | -------- | ----------- |
|
|
8167
|
-
|
|
|
8168
|
-
|
|
|
8169
|
-
|
|
|
8170
|
-
|
|
|
8171
|
-
|
|
|
8172
|
-
|
|
|
8173
|
-
|
|
|
8172
|
+
| unit | string | no | |
|
|
8173
|
+
| headers | [ColumnHeaders](#ColumnHeaders) | no | |
|
|
8174
|
+
| title | string | no | |
|
|
8175
|
+
| image | string | no | |
|
|
8176
|
+
| sizes | [[SizeChartValues](#SizeChartValues)] | no | |
|
|
8177
|
+
| description | string | no | |
|
|
8178
|
+
| size_tip | string | no | |
|
|
8174
8179
|
|
|
8175
8180
|
---
|
|
8176
8181
|
|
|
8177
8182
|
|
|
8178
8183
|
|
|
8179
8184
|
|
|
8180
|
-
#### [
|
|
8185
|
+
#### [Weight](#Weight)
|
|
8181
8186
|
|
|
8182
8187
|
| Properties | Type | Nullable | Description |
|
|
8183
8188
|
| ---------- | ---- | -------- | ----------- |
|
|
8184
|
-
|
|
|
8185
|
-
|
|
|
8189
|
+
| shipping | number | yes | |
|
|
8190
|
+
| unit | string | yes | |
|
|
8191
|
+
| is_default | boolean | yes | |
|
|
8186
8192
|
|
|
8187
8193
|
---
|
|
8188
8194
|
|
|
8189
8195
|
|
|
8190
8196
|
|
|
8191
8197
|
|
|
8192
|
-
#### [
|
|
8198
|
+
#### [Dimension](#Dimension)
|
|
8193
8199
|
|
|
8194
8200
|
| Properties | Type | Nullable | Description |
|
|
8195
8201
|
| ---------- | ---- | -------- | ----------- |
|
|
8196
|
-
|
|
|
8197
|
-
|
|
|
8198
|
-
|
|
|
8199
|
-
|
|
|
8200
|
-
|
|
|
8201
|
-
| col_3 | [ColumnHeader](#ColumnHeader) | no | |
|
|
8202
|
+
| width | number | yes | |
|
|
8203
|
+
| is_default | boolean | yes | |
|
|
8204
|
+
| length | number | yes | |
|
|
8205
|
+
| unit | string | yes | |
|
|
8206
|
+
| height | number | yes | |
|
|
8202
8207
|
|
|
8203
8208
|
---
|
|
8204
8209
|
|
|
8205
8210
|
|
|
8206
8211
|
|
|
8207
8212
|
|
|
8208
|
-
#### [
|
|
8213
|
+
#### [ProductSize](#ProductSize)
|
|
8209
8214
|
|
|
8210
8215
|
| Properties | Type | Nullable | Description |
|
|
8211
8216
|
| ---------- | ---- | -------- | ----------- |
|
|
8212
|
-
|
|
|
8213
|
-
|
|
|
8214
|
-
|
|
|
8215
|
-
|
|
|
8216
|
-
|
|
|
8217
|
-
|
|
|
8217
|
+
| weight | [Weight](#Weight) | no | |
|
|
8218
|
+
| is_available | boolean | no | |
|
|
8219
|
+
| display | string | no | |
|
|
8220
|
+
| value | string | no | |
|
|
8221
|
+
| seller_identifiers | [string] | no | |
|
|
8222
|
+
| dimension | [Dimension](#Dimension) | no | |
|
|
8223
|
+
| quantity | number | no | |
|
|
8218
8224
|
|
|
8219
8225
|
---
|
|
8220
8226
|
|
|
8221
8227
|
|
|
8222
8228
|
|
|
8223
8229
|
|
|
8224
|
-
#### [
|
|
8230
|
+
#### [ProductSizeStores](#ProductSizeStores)
|
|
8225
8231
|
|
|
8226
8232
|
| Properties | Type | Nullable | Description |
|
|
8227
8233
|
| ---------- | ---- | -------- | ----------- |
|
|
8228
|
-
|
|
|
8229
|
-
| headers | [ColumnHeaders](#ColumnHeaders) | no | |
|
|
8230
|
-
| sizes | [[SizeChartValues](#SizeChartValues)] | no | |
|
|
8231
|
-
| image | string | no | |
|
|
8232
|
-
| size_tip | string | no | |
|
|
8233
|
-
| title | string | no | |
|
|
8234
|
-
| description | string | no | |
|
|
8234
|
+
| count | number | no | |
|
|
8235
8235
|
|
|
8236
8236
|
---
|
|
8237
8237
|
|
|
@@ -8242,13 +8242,13 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
8242
8242
|
|
|
8243
8243
|
| Properties | Type | Nullable | Description |
|
|
8244
8244
|
| ---------- | ---- | -------- | ----------- |
|
|
8245
|
-
| discount | string | no | |
|
|
8246
|
-
| multi_size | boolean | no | |
|
|
8247
|
-
| stores | [ProductSizeStores](#ProductSizeStores) | no | |
|
|
8248
|
-
| sizes | [[ProductSize](#ProductSize)] | no | |
|
|
8249
|
-
| price | [ProductListingPrice](#ProductListingPrice) | no | |
|
|
8250
8245
|
| size_chart | [SizeChart](#SizeChart) | no | |
|
|
8251
8246
|
| sellable | boolean | no | |
|
|
8247
|
+
| price | [ProductListingPrice](#ProductListingPrice) | no | |
|
|
8248
|
+
| multi_size | boolean | no | |
|
|
8249
|
+
| discount | string | no | |
|
|
8250
|
+
| sizes | [[ProductSize](#ProductSize)] | no | |
|
|
8251
|
+
| stores | [ProductSizeStores](#ProductSizeStores) | no | |
|
|
8252
8252
|
|
|
8253
8253
|
---
|
|
8254
8254
|
|
|
@@ -8259,10 +8259,10 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
8259
8259
|
|
|
8260
8260
|
| Properties | Type | Nullable | Description |
|
|
8261
8261
|
| ---------- | ---- | -------- | ----------- |
|
|
8262
|
-
| display | string | no | |
|
|
8263
8262
|
| logo | string | no | |
|
|
8264
8263
|
| key | string | no | |
|
|
8265
8264
|
| description | string | no | |
|
|
8265
|
+
| display | string | no | |
|
|
8266
8266
|
|
|
8267
8267
|
---
|
|
8268
8268
|
|
|
@@ -8273,8 +8273,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
8273
8273
|
|
|
8274
8274
|
| Properties | Type | Nullable | Description |
|
|
8275
8275
|
| ---------- | ---- | -------- | ----------- |
|
|
8276
|
-
| title | string | no | |
|
|
8277
8276
|
| details | [[AttributeDetail](#AttributeDetail)] | no | |
|
|
8277
|
+
| title | string | no | |
|
|
8278
8278
|
|
|
8279
8279
|
---
|
|
8280
8280
|
|
|
@@ -8297,9 +8297,9 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
8297
8297
|
|
|
8298
8298
|
| Properties | Type | Nullable | Description |
|
|
8299
8299
|
| ---------- | ---- | -------- | ----------- |
|
|
8300
|
-
| subtitle | string | no | |
|
|
8301
8300
|
| attributes_metadata | [[AttributeMetadata](#AttributeMetadata)] | no | |
|
|
8302
8301
|
| title | string | no | |
|
|
8302
|
+
| subtitle | string | no | |
|
|
8303
8303
|
| items | [[ProductDetail](#ProductDetail)] | no | |
|
|
8304
8304
|
|
|
8305
8305
|
---
|
|
@@ -8322,16 +8322,16 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
8322
8322
|
|
|
8323
8323
|
| Properties | Type | Nullable | Description |
|
|
8324
8324
|
| ---------- | ---- | -------- | ----------- |
|
|
8325
|
-
| slug | string | no | |
|
|
8326
|
-
| value | string | no | |
|
|
8327
|
-
| _custom_meta | [[CustomMetaFields](#CustomMetaFields)] | no | |
|
|
8328
|
-
| color | string | no | |
|
|
8329
8325
|
| medias | [[Media](#Media)] | no | |
|
|
8330
|
-
| color_name | string | no | |
|
|
8331
8326
|
| is_available | boolean | no | |
|
|
8327
|
+
| value | string | no | |
|
|
8332
8328
|
| name | string | no | |
|
|
8333
|
-
| uid | number | no | |
|
|
8334
8329
|
| action | [ProductListingAction](#ProductListingAction) | no | |
|
|
8330
|
+
| color_name | string | no | |
|
|
8331
|
+
| _custom_meta | [[CustomMetaFields](#CustomMetaFields)] | no | |
|
|
8332
|
+
| color | string | no | |
|
|
8333
|
+
| uid | number | no | |
|
|
8334
|
+
| slug | string | no | |
|
|
8335
8335
|
|
|
8336
8336
|
---
|
|
8337
8337
|
|
|
@@ -8343,9 +8343,9 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
8343
8343
|
| Properties | Type | Nullable | Description |
|
|
8344
8344
|
| ---------- | ---- | -------- | ----------- |
|
|
8345
8345
|
| key | string | no | |
|
|
8346
|
+
| display_type | string | no | |
|
|
8346
8347
|
| header | string | no | |
|
|
8347
8348
|
| items | [[ProductVariantItemResponse](#ProductVariantItemResponse)] | no | |
|
|
8348
|
-
| display_type | string | no | |
|
|
8349
8349
|
|
|
8350
8350
|
---
|
|
8351
8351
|
|
|
@@ -8367,8 +8367,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
8367
8367
|
|
|
8368
8368
|
| Properties | Type | Nullable | Description |
|
|
8369
8369
|
| ---------- | ---- | -------- | ----------- |
|
|
8370
|
-
| name | string | no | |
|
|
8371
8370
|
| id | number | no | |
|
|
8371
|
+
| name | string | no | |
|
|
8372
8372
|
|
|
8373
8373
|
---
|
|
8374
8374
|
|
|
@@ -8392,9 +8392,9 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
8392
8392
|
|
|
8393
8393
|
| Properties | Type | Nullable | Description |
|
|
8394
8394
|
| ---------- | ---- | -------- | ----------- |
|
|
8395
|
-
| name | string | no | |
|
|
8396
|
-
| count | number | no | |
|
|
8397
8395
|
| uid | number | no | |
|
|
8396
|
+
| count | number | no | |
|
|
8397
|
+
| name | string | no | |
|
|
8398
8398
|
|
|
8399
8399
|
---
|
|
8400
8400
|
|
|
@@ -8405,10 +8405,10 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
8405
8405
|
|
|
8406
8406
|
| Properties | Type | Nullable | Description |
|
|
8407
8407
|
| ---------- | ---- | -------- | ----------- |
|
|
8408
|
-
|
|
|
8408
|
+
| id | number | no | |
|
|
8409
8409
|
| code | string | no | |
|
|
8410
8410
|
| city | string | no | |
|
|
8411
|
-
|
|
|
8411
|
+
| name | string | no | |
|
|
8412
8412
|
|
|
8413
8413
|
---
|
|
8414
8414
|
|
|
@@ -8419,15 +8419,15 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
8419
8419
|
|
|
8420
8420
|
| Properties | Type | Nullable | Description |
|
|
8421
8421
|
| ---------- | ---- | -------- | ----------- |
|
|
8422
|
+
| size | string | no | |
|
|
8422
8423
|
| company | [CompanyDetail](#CompanyDetail) | no | |
|
|
8423
8424
|
| price | [ProductStockPrice](#ProductStockPrice) | no | |
|
|
8424
|
-
| identifier | string | no | |
|
|
8425
|
-
| item_id | number | no | |
|
|
8426
|
-
| uid | string | no | |
|
|
8427
8425
|
| seller | [Seller](#Seller) | no | |
|
|
8428
|
-
| quantity | number | no | |
|
|
8429
|
-
| size | string | no | |
|
|
8430
8426
|
| store | [StoreDetail](#StoreDetail) | no | |
|
|
8427
|
+
| uid | string | no | |
|
|
8428
|
+
| item_id | number | no | |
|
|
8429
|
+
| quantity | number | no | |
|
|
8430
|
+
| identifier | string | no | |
|
|
8431
8431
|
|
|
8432
8432
|
---
|
|
8433
8433
|
|
|
@@ -8449,13 +8449,13 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
8449
8449
|
|
|
8450
8450
|
| Properties | Type | Nullable | Description |
|
|
8451
8451
|
| ---------- | ---- | -------- | ----------- |
|
|
8452
|
+
| size | number | no | |
|
|
8453
|
+
| has_previous | boolean | no | |
|
|
8452
8454
|
| item_total | number | no | |
|
|
8455
|
+
| next_id | string | no | |
|
|
8456
|
+
| type | string | yes | |
|
|
8453
8457
|
| current | number | no | |
|
|
8454
|
-
| has_previous | boolean | no | |
|
|
8455
8458
|
| has_next | boolean | no | |
|
|
8456
|
-
| type | string | yes | |
|
|
8457
|
-
| next_id | string | no | |
|
|
8458
|
-
| size | number | no | |
|
|
8459
8459
|
|
|
8460
8460
|
---
|
|
8461
8461
|
|
|
@@ -8474,22 +8474,35 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
8474
8474
|
|
|
8475
8475
|
|
|
8476
8476
|
|
|
8477
|
-
#### [
|
|
8477
|
+
#### [ProductSortOn](#ProductSortOn)
|
|
8478
8478
|
|
|
8479
8479
|
| Properties | Type | Nullable | Description |
|
|
8480
8480
|
| ---------- | ---- | -------- | ----------- |
|
|
8481
|
-
|
|
|
8482
|
-
| count | number | no | |
|
|
8481
|
+
| is_selected | boolean | no | |
|
|
8483
8482
|
| value | string | no | |
|
|
8483
|
+
| name | string | no | |
|
|
8484
|
+
|
|
8485
|
+
---
|
|
8486
|
+
|
|
8487
|
+
|
|
8488
|
+
|
|
8489
|
+
|
|
8490
|
+
#### [ProductFiltersValue](#ProductFiltersValue)
|
|
8491
|
+
|
|
8492
|
+
| Properties | Type | Nullable | Description |
|
|
8493
|
+
| ---------- | ---- | -------- | ----------- |
|
|
8484
8494
|
| selected_min | number | no | |
|
|
8485
|
-
|
|
|
8495
|
+
| selected_max | number | no | |
|
|
8496
|
+
| currency_code | string | no | |
|
|
8486
8497
|
| max | number | no | |
|
|
8498
|
+
| min | number | no | |
|
|
8487
8499
|
| display | string | yes | |
|
|
8500
|
+
| value | string | no | |
|
|
8501
|
+
| count | number | no | |
|
|
8502
|
+
| currency_symbol | string | no | |
|
|
8488
8503
|
| is_selected | boolean | yes | |
|
|
8489
8504
|
| query_format | string | no | |
|
|
8490
|
-
|
|
|
8491
|
-
| currency_code | string | no | |
|
|
8492
|
-
| selected_max | number | no | |
|
|
8505
|
+
| display_format | string | no | |
|
|
8493
8506
|
|
|
8494
8507
|
---
|
|
8495
8508
|
|
|
@@ -8500,10 +8513,10 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
8500
8513
|
|
|
8501
8514
|
| Properties | Type | Nullable | Description |
|
|
8502
8515
|
| ---------- | ---- | -------- | ----------- |
|
|
8516
|
+
| kind | string | no | |
|
|
8503
8517
|
| name | string | yes | |
|
|
8504
|
-
| display | string | yes | |
|
|
8505
8518
|
| logo | string | no | |
|
|
8506
|
-
|
|
|
8519
|
+
| display | string | yes | |
|
|
8507
8520
|
|
|
8508
8521
|
---
|
|
8509
8522
|
|
|
@@ -8522,28 +8535,15 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
8522
8535
|
|
|
8523
8536
|
|
|
8524
8537
|
|
|
8525
|
-
#### [ProductSortOn](#ProductSortOn)
|
|
8526
|
-
|
|
8527
|
-
| Properties | Type | Nullable | Description |
|
|
8528
|
-
| ---------- | ---- | -------- | ----------- |
|
|
8529
|
-
| name | string | no | |
|
|
8530
|
-
| is_selected | boolean | no | |
|
|
8531
|
-
| value | string | no | |
|
|
8532
|
-
|
|
8533
|
-
---
|
|
8534
|
-
|
|
8535
|
-
|
|
8536
|
-
|
|
8537
|
-
|
|
8538
8538
|
#### [ProductVariantListingResponse](#ProductVariantListingResponse)
|
|
8539
8539
|
|
|
8540
8540
|
| Properties | Type | Nullable | Description |
|
|
8541
8541
|
| ---------- | ---- | -------- | ----------- |
|
|
8542
|
-
| header | string | no | |
|
|
8543
8542
|
| key | string | no | |
|
|
8543
|
+
| display_type | string | no | |
|
|
8544
8544
|
| total | number | no | |
|
|
8545
|
+
| header | string | no | |
|
|
8545
8546
|
| items | [[ProductVariantItemResponse](#ProductVariantItemResponse)] | no | |
|
|
8546
|
-
| display_type | string | no | |
|
|
8547
8547
|
|
|
8548
8548
|
---
|
|
8549
8549
|
|
|
@@ -8554,44 +8554,44 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
8554
8554
|
|
|
8555
8555
|
| Properties | Type | Nullable | Description |
|
|
8556
8556
|
| ---------- | ---- | -------- | ----------- |
|
|
8557
|
-
|
|
|
8558
|
-
| type | string | no | |
|
|
8559
|
-
| moq | [ApplicationItemMOQ](#ApplicationItemMOQ) | no | |
|
|
8560
|
-
| image_nature | string | no | |
|
|
8561
|
-
| sizes | [string] | no | |
|
|
8562
|
-
| _custom_json | string | no | |
|
|
8563
|
-
| tags | [string] | no | |
|
|
8557
|
+
| variants | [[ProductVariantListingResponse](#ProductVariantListingResponse)] | no | |
|
|
8564
8558
|
| category_map | [ProductCategoryMap](#ProductCategoryMap) | no | |
|
|
8559
|
+
| type | string | no | |
|
|
8560
|
+
| attributes | string | no | |
|
|
8565
8561
|
| uid | number | no | |
|
|
8566
|
-
| slug | string | yes | |
|
|
8567
|
-
| variants | [[ProductVariantListingResponse](#ProductVariantListingResponse)] | no | |
|
|
8568
|
-
| item_type | string | no | |
|
|
8569
8562
|
| color | string | no | |
|
|
8563
|
+
| similars | [string] | no | |
|
|
8564
|
+
| short_description | string | no | |
|
|
8570
8565
|
| medias | [[Media](#Media)] | no | |
|
|
8571
|
-
|
|
|
8572
|
-
|
|
|
8573
|
-
| tryouts | [string] | no | |
|
|
8574
|
-
| rating_count | number | no | |
|
|
8575
|
-
| attributes | string | no | |
|
|
8566
|
+
| has_variant | boolean | no | |
|
|
8567
|
+
| item_type | string | no | |
|
|
8576
8568
|
| identifiers | [string] | no | |
|
|
8577
|
-
| similars | [string] | no | |
|
|
8578
|
-
| item_code | string | no | |
|
|
8579
|
-
| teaser_tag | string | no | |
|
|
8580
|
-
| _custom_meta | [[CustomMetaFields](#CustomMetaFields)] | no | |
|
|
8581
8569
|
| grouped_attributes | [[ProductDetailGroupedAttribute](#ProductDetailGroupedAttribute)] | no | |
|
|
8582
|
-
| price | [ProductListingPrice](#ProductListingPrice) | no | |
|
|
8583
|
-
| brand | [ProductBrand](#ProductBrand) | no | |
|
|
8584
|
-
| product_online_date | string | no | |
|
|
8585
|
-
| sellable | boolean | no | |
|
|
8586
8570
|
| rating | number | no | |
|
|
8587
|
-
| net_quantity | [NetQuantity](#NetQuantity) | no | |
|
|
8588
8571
|
| categories | [[ProductBrand](#ProductBrand)] | no | |
|
|
8589
|
-
| seo | [ApplicationItemSEO](#ApplicationItemSEO) | no | |
|
|
8590
|
-
| short_description | string | no | |
|
|
8591
8572
|
| is_dependent | boolean | no | |
|
|
8592
|
-
|
|
|
8593
|
-
|
|
|
8573
|
+
| image_nature | string | no | |
|
|
8574
|
+
| name | string | no | |
|
|
8575
|
+
| sellable | boolean | no | |
|
|
8576
|
+
| price | [ProductListingPrice](#ProductListingPrice) | no | |
|
|
8577
|
+
| _custom_meta | [[CustomMetaFields](#CustomMetaFields)] | no | |
|
|
8578
|
+
| seo | [ApplicationItemSEO](#ApplicationItemSEO) | no | |
|
|
8594
8579
|
| description | string | no | |
|
|
8580
|
+
| brand | [ProductBrand](#ProductBrand) | no | |
|
|
8581
|
+
| rating_count | number | no | |
|
|
8582
|
+
| _custom_json | string | no | |
|
|
8583
|
+
| moq | [ApplicationItemMOQ](#ApplicationItemMOQ) | no | |
|
|
8584
|
+
| highlights | [string] | no | |
|
|
8585
|
+
| action | [ProductListingAction](#ProductListingAction) | no | |
|
|
8586
|
+
| product_online_date | string | no | |
|
|
8587
|
+
| tryouts | [string] | no | |
|
|
8588
|
+
| item_code | string | no | |
|
|
8589
|
+
| discount | string | no | |
|
|
8590
|
+
| teaser_tag | string | no | |
|
|
8591
|
+
| sizes | [string] | no | |
|
|
8592
|
+
| tags | [string] | no | |
|
|
8593
|
+
| slug | string | yes | |
|
|
8594
|
+
| net_quantity | [NetQuantity](#NetQuantity) | no | |
|
|
8595
8595
|
|
|
8596
8596
|
---
|
|
8597
8597
|
|
|
@@ -8602,9 +8602,9 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
8602
8602
|
|
|
8603
8603
|
| Properties | Type | Nullable | Description |
|
|
8604
8604
|
| ---------- | ---- | -------- | ----------- |
|
|
8605
|
-
| filters | [[ProductFilters](#ProductFilters)] | no | |
|
|
8606
8605
|
| page | [Page](#Page) | yes | |
|
|
8607
8606
|
| sort_on | [[ProductSortOn](#ProductSortOn)] | no | |
|
|
8607
|
+
| filters | [[ProductFilters](#ProductFilters)] | no | |
|
|
8608
8608
|
| items | [[ProductListingDetail](#ProductListingDetail)] | no | |
|
|
8609
8609
|
|
|
8610
8610
|
---
|
|
@@ -8616,8 +8616,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
8616
8616
|
|
|
8617
8617
|
| Properties | Type | Nullable | Description |
|
|
8618
8618
|
| ---------- | ---- | -------- | ----------- |
|
|
8619
|
-
| landscape | [Media](#Media) | no | |
|
|
8620
8619
|
| portrait | [Media](#Media) | no | |
|
|
8620
|
+
| landscape | [Media](#Media) | no | |
|
|
8621
8621
|
|
|
8622
8622
|
---
|
|
8623
8623
|
|
|
@@ -8628,15 +8628,15 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
8628
8628
|
|
|
8629
8629
|
| Properties | Type | Nullable | Description |
|
|
8630
8630
|
| ---------- | ---- | -------- | ----------- |
|
|
8631
|
-
| slug | string | no | |
|
|
8632
|
-
| discount | string | no | |
|
|
8633
8631
|
| logo | [Media](#Media) | no | |
|
|
8634
|
-
|
|
|
8635
|
-
| departments | [string] | no | |
|
|
8632
|
+
| action | [ProductListingAction](#ProductListingAction) | no | |
|
|
8636
8633
|
| name | string | no | |
|
|
8634
|
+
| banners | [ImageUrls](#ImageUrls) | no | |
|
|
8635
|
+
| discount | string | no | |
|
|
8637
8636
|
| uid | number | no | |
|
|
8638
|
-
| action | [ProductListingAction](#ProductListingAction) | no | |
|
|
8639
8637
|
| description | string | no | |
|
|
8638
|
+
| departments | [string] | no | |
|
|
8639
|
+
| slug | string | no | |
|
|
8640
8640
|
|
|
8641
8641
|
---
|
|
8642
8642
|
|
|
@@ -8660,11 +8660,11 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
8660
8660
|
| Properties | Type | Nullable | Description |
|
|
8661
8661
|
| ---------- | ---- | -------- | ----------- |
|
|
8662
8662
|
| logo | [Media](#Media) | no | |
|
|
8663
|
-
| banners | [ImageUrls](#ImageUrls) | no | |
|
|
8664
8663
|
| name | string | no | |
|
|
8665
|
-
|
|
|
8664
|
+
| banners | [ImageUrls](#ImageUrls) | no | |
|
|
8666
8665
|
| uid | number | no | |
|
|
8667
8666
|
| description | string | no | |
|
|
8667
|
+
| _custom_json | string | no | |
|
|
8668
8668
|
|
|
8669
8669
|
---
|
|
8670
8670
|
|
|
@@ -8687,13 +8687,13 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
8687
8687
|
|
|
8688
8688
|
| Properties | Type | Nullable | Description |
|
|
8689
8689
|
| ---------- | ---- | -------- | ----------- |
|
|
8690
|
-
|
|
|
8690
|
+
| name | string | no | |
|
|
8691
|
+
| action | [ProductListingAction](#ProductListingAction) | no | |
|
|
8691
8692
|
| childs | [string] | no | |
|
|
8692
8693
|
| banners | [ImageUrls](#ImageUrls) | no | |
|
|
8693
|
-
| name | string | no | |
|
|
8694
|
-
| _custom_json | string | no | |
|
|
8695
8694
|
| uid | number | no | |
|
|
8696
|
-
|
|
|
8695
|
+
| slug | string | no | |
|
|
8696
|
+
| _custom_json | string | no | |
|
|
8697
8697
|
|
|
8698
8698
|
---
|
|
8699
8699
|
|
|
@@ -8704,13 +8704,13 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
8704
8704
|
|
|
8705
8705
|
| Properties | Type | Nullable | Description |
|
|
8706
8706
|
| ---------- | ---- | -------- | ----------- |
|
|
8707
|
-
|
|
|
8707
|
+
| name | string | no | |
|
|
8708
|
+
| action | [ProductListingAction](#ProductListingAction) | no | |
|
|
8708
8709
|
| childs | [[ThirdLevelChild](#ThirdLevelChild)] | no | |
|
|
8709
8710
|
| banners | [ImageUrls](#ImageUrls) | no | |
|
|
8710
|
-
| name | string | no | |
|
|
8711
|
-
| _custom_json | string | no | |
|
|
8712
8711
|
| uid | number | no | |
|
|
8713
|
-
|
|
|
8712
|
+
| slug | string | no | |
|
|
8713
|
+
| _custom_json | string | no | |
|
|
8714
8714
|
|
|
8715
8715
|
---
|
|
8716
8716
|
|
|
@@ -8721,13 +8721,13 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
8721
8721
|
|
|
8722
8722
|
| Properties | Type | Nullable | Description |
|
|
8723
8723
|
| ---------- | ---- | -------- | ----------- |
|
|
8724
|
-
|
|
|
8724
|
+
| name | string | no | |
|
|
8725
|
+
| action | [ProductListingAction](#ProductListingAction) | no | |
|
|
8725
8726
|
| childs | [[SecondLevelChild](#SecondLevelChild)] | no | |
|
|
8726
8727
|
| banners | [ImageUrls](#ImageUrls) | no | |
|
|
8727
|
-
| name | string | no | |
|
|
8728
|
-
| _custom_json | string | no | |
|
|
8729
8728
|
| uid | number | no | |
|
|
8730
|
-
|
|
|
8729
|
+
| slug | string | no | |
|
|
8730
|
+
| _custom_json | string | no | |
|
|
8731
8731
|
|
|
8732
8732
|
---
|
|
8733
8733
|
|
|
@@ -8738,8 +8738,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
8738
8738
|
|
|
8739
8739
|
| Properties | Type | Nullable | Description |
|
|
8740
8740
|
| ---------- | ---- | -------- | ----------- |
|
|
8741
|
-
| landscape | [Media](#Media) | yes | |
|
|
8742
8741
|
| portrait | [Media](#Media) | yes | |
|
|
8742
|
+
| landscape | [Media](#Media) | yes | |
|
|
8743
8743
|
|
|
8744
8744
|
---
|
|
8745
8745
|
|
|
@@ -8750,12 +8750,12 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
8750
8750
|
|
|
8751
8751
|
| Properties | Type | Nullable | Description |
|
|
8752
8752
|
| ---------- | ---- | -------- | ----------- |
|
|
8753
|
-
|
|
|
8753
|
+
| action | [ProductListingAction](#ProductListingAction) | yes | |
|
|
8754
|
+
| name | string | yes | |
|
|
8754
8755
|
| childs | [[Child](#Child)] | no | |
|
|
8755
8756
|
| banners | [CategoryBanner](#CategoryBanner) | yes | |
|
|
8756
|
-
| name | string | yes | |
|
|
8757
8757
|
| uid | number | yes | |
|
|
8758
|
-
|
|
|
8758
|
+
| slug | string | yes | |
|
|
8759
8759
|
|
|
8760
8760
|
---
|
|
8761
8761
|
|
|
@@ -8791,10 +8791,10 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
8791
8791
|
| Properties | Type | Nullable | Description |
|
|
8792
8792
|
| ---------- | ---- | -------- | ----------- |
|
|
8793
8793
|
| logo | [Media](#Media) | no | |
|
|
8794
|
-
| banners | [ImageUrls](#ImageUrls) | no | |
|
|
8795
8794
|
| name | string | no | |
|
|
8796
|
-
|
|
|
8795
|
+
| banners | [ImageUrls](#ImageUrls) | no | |
|
|
8797
8796
|
| uid | number | no | |
|
|
8797
|
+
| _custom_json | string | no | |
|
|
8798
8798
|
|
|
8799
8799
|
---
|
|
8800
8800
|
|
|
@@ -8818,11 +8818,11 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
8818
8818
|
|
|
8819
8819
|
| Properties | Type | Nullable | Description |
|
|
8820
8820
|
| ---------- | ---- | -------- | ----------- |
|
|
8821
|
-
| slug | string | no | |
|
|
8822
8821
|
| logo | [Media](#Media) | no | |
|
|
8823
|
-
| priority_order | number | no | |
|
|
8824
8822
|
| name | string | no | |
|
|
8823
|
+
| priority_order | number | no | |
|
|
8825
8824
|
| uid | number | no | |
|
|
8825
|
+
| slug | string | no | |
|
|
8826
8826
|
|
|
8827
8827
|
---
|
|
8828
8828
|
|
|
@@ -8845,10 +8845,10 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
8845
8845
|
| Properties | Type | Nullable | Description |
|
|
8846
8846
|
| ---------- | ---- | -------- | ----------- |
|
|
8847
8847
|
| logo | [Media](#Media) | no | |
|
|
8848
|
-
| type | string | no | |
|
|
8849
8848
|
| display | string | no | |
|
|
8850
|
-
| _custom_json | string | no | |
|
|
8851
8849
|
| action | [ProductListingAction](#ProductListingAction) | no | |
|
|
8850
|
+
| type | string | no | |
|
|
8851
|
+
| _custom_json | string | no | |
|
|
8852
8852
|
|
|
8853
8853
|
---
|
|
8854
8854
|
|
|
@@ -8866,26 +8866,26 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
8866
8866
|
|
|
8867
8867
|
|
|
8868
8868
|
|
|
8869
|
-
#### [
|
|
8869
|
+
#### [CollectionListingFilterTag](#CollectionListingFilterTag)
|
|
8870
8870
|
|
|
8871
8871
|
| Properties | Type | Nullable | Description |
|
|
8872
8872
|
| ---------- | ---- | -------- | ----------- |
|
|
8873
|
-
| name | string | no | |
|
|
8874
8873
|
| display | string | no | |
|
|
8875
8874
|
| is_selected | boolean | no | |
|
|
8875
|
+
| name | string | no | |
|
|
8876
8876
|
|
|
8877
8877
|
---
|
|
8878
8878
|
|
|
8879
8879
|
|
|
8880
8880
|
|
|
8881
8881
|
|
|
8882
|
-
#### [
|
|
8882
|
+
#### [CollectionListingFilterType](#CollectionListingFilterType)
|
|
8883
8883
|
|
|
8884
8884
|
| Properties | Type | Nullable | Description |
|
|
8885
8885
|
| ---------- | ---- | -------- | ----------- |
|
|
8886
|
-
| name | string | no | |
|
|
8887
8886
|
| display | string | no | |
|
|
8888
8887
|
| is_selected | boolean | no | |
|
|
8888
|
+
| name | string | no | |
|
|
8889
8889
|
|
|
8890
8890
|
---
|
|
8891
8891
|
|
|
@@ -8896,8 +8896,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
8896
8896
|
|
|
8897
8897
|
| Properties | Type | Nullable | Description |
|
|
8898
8898
|
| ---------- | ---- | -------- | ----------- |
|
|
8899
|
-
| type | [[CollectionListingFilterType](#CollectionListingFilterType)] | no | |
|
|
8900
8899
|
| tags | [[CollectionListingFilterTag](#CollectionListingFilterTag)] | no | |
|
|
8900
|
+
| type | [[CollectionListingFilterType](#CollectionListingFilterType)] | no | |
|
|
8901
8901
|
|
|
8902
8902
|
---
|
|
8903
8903
|
|
|
@@ -8908,8 +8908,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
8908
8908
|
|
|
8909
8909
|
| Properties | Type | Nullable | Description |
|
|
8910
8910
|
| ---------- | ---- | -------- | ----------- |
|
|
8911
|
-
| op | string | yes | |
|
|
8912
8911
|
| attribute | string | yes | |
|
|
8912
|
+
| op | string | yes | |
|
|
8913
8913
|
| value | [any] | yes | |
|
|
8914
8914
|
|
|
8915
8915
|
---
|
|
@@ -8921,28 +8921,28 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
8921
8921
|
|
|
8922
8922
|
| Properties | Type | Nullable | Description |
|
|
8923
8923
|
| ---------- | ---- | -------- | ----------- |
|
|
8924
|
-
|
|
|
8925
|
-
| priority | number | no | |
|
|
8924
|
+
| query | [[CollectionQuery](#CollectionQuery)] | no | |
|
|
8926
8925
|
| allow_facets | boolean | no | |
|
|
8927
|
-
| _custom_json | string | no | |
|
|
8928
|
-
| uid | string | no | |
|
|
8929
|
-
| slug | string | no | |
|
|
8930
|
-
| meta | string | no | |
|
|
8931
|
-
| tag | [string] | no | |
|
|
8932
8926
|
| logo | [Media](#Media) | no | |
|
|
8933
|
-
| sort_on | string | no | |
|
|
8934
8927
|
| cron | string | no | |
|
|
8935
|
-
|
|
|
8936
|
-
|
|
|
8937
|
-
|
|
|
8928
|
+
| type | string | no | |
|
|
8929
|
+
| uid | string | no | |
|
|
8930
|
+
| meta | string | no | |
|
|
8938
8931
|
| visible_facets_keys | [string] | no | |
|
|
8939
8932
|
| badge | string | no | |
|
|
8940
|
-
|
|
|
8933
|
+
| sort_on | string | no | |
|
|
8941
8934
|
| banners | [ImageUrls](#ImageUrls) | no | |
|
|
8942
8935
|
| is_active | boolean | no | |
|
|
8943
|
-
|
|
|
8944
|
-
|
|
|
8936
|
+
| tag | [string] | no | |
|
|
8937
|
+
| name | string | no | |
|
|
8945
8938
|
| description | string | no | |
|
|
8939
|
+
| _custom_json | string | no | |
|
|
8940
|
+
| _schedule | string | no | |
|
|
8941
|
+
| action | [ProductListingAction](#ProductListingAction) | no | |
|
|
8942
|
+
| app_id | string | no | |
|
|
8943
|
+
| priority | number | no | |
|
|
8944
|
+
| allow_sort | boolean | no | |
|
|
8945
|
+
| slug | string | no | |
|
|
8946
8946
|
|
|
8947
8947
|
---
|
|
8948
8948
|
|
|
@@ -8953,8 +8953,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
8953
8953
|
|
|
8954
8954
|
| Properties | Type | Nullable | Description |
|
|
8955
8955
|
| ---------- | ---- | -------- | ----------- |
|
|
8956
|
-
| filters | [CollectionListingFilter](#CollectionListingFilter) | no | |
|
|
8957
8956
|
| page | [Page](#Page) | yes | |
|
|
8957
|
+
| filters | [CollectionListingFilter](#CollectionListingFilter) | no | |
|
|
8958
8958
|
| items | [[GetCollectionDetailNest](#GetCollectionDetailNest)] | no | |
|
|
8959
8959
|
|
|
8960
8960
|
---
|
|
@@ -8966,26 +8966,26 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
8966
8966
|
|
|
8967
8967
|
| Properties | Type | Nullable | Description |
|
|
8968
8968
|
| ---------- | ---- | -------- | ----------- |
|
|
8969
|
-
|
|
|
8970
|
-
| priority | number | no | |
|
|
8969
|
+
| query | [[CollectionQuery](#CollectionQuery)] | no | |
|
|
8971
8970
|
| allow_facets | boolean | no | |
|
|
8972
|
-
| _custom_json | string | no | |
|
|
8973
|
-
| slug | string | no | |
|
|
8974
|
-
| meta | string | no | |
|
|
8975
|
-
| tag | [string] | no | |
|
|
8976
8971
|
| logo | [Media](#Media) | no | |
|
|
8977
|
-
| sort_on | string | no | |
|
|
8978
8972
|
| cron | string | no | |
|
|
8979
|
-
|
|
|
8980
|
-
|
|
|
8981
|
-
| app_id | string | no | |
|
|
8973
|
+
| type | string | no | |
|
|
8974
|
+
| meta | string | no | |
|
|
8982
8975
|
| visible_facets_keys | [string] | no | |
|
|
8983
8976
|
| badge | string | no | |
|
|
8984
|
-
|
|
|
8977
|
+
| sort_on | string | no | |
|
|
8985
8978
|
| banners | [ImageUrls](#ImageUrls) | no | |
|
|
8986
8979
|
| is_active | boolean | no | |
|
|
8987
|
-
|
|
|
8980
|
+
| tag | [string] | no | |
|
|
8981
|
+
| name | string | no | |
|
|
8988
8982
|
| description | string | no | |
|
|
8983
|
+
| _custom_json | string | no | |
|
|
8984
|
+
| _schedule | string | no | |
|
|
8985
|
+
| app_id | string | no | |
|
|
8986
|
+
| priority | number | no | |
|
|
8987
|
+
| allow_sort | boolean | no | |
|
|
8988
|
+
| slug | string | no | |
|
|
8989
8989
|
|
|
8990
8990
|
---
|
|
8991
8991
|
|
|
@@ -9008,8 +9008,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
9008
9008
|
|
|
9009
9009
|
| Properties | Type | Nullable | Description |
|
|
9010
9010
|
| ---------- | ---- | -------- | ----------- |
|
|
9011
|
-
| message | string | yes | |
|
|
9012
9011
|
| id | string | yes | |
|
|
9012
|
+
| message | string | yes | |
|
|
9013
9013
|
|
|
9014
9014
|
---
|
|
9015
9015
|
|
|
@@ -9032,8 +9032,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
9032
9032
|
| Properties | Type | Nullable | Description |
|
|
9033
9033
|
| ---------- | ---- | -------- | ----------- |
|
|
9034
9034
|
| products | [number] | no | |
|
|
9035
|
-
| brands | [number] | no | |
|
|
9036
9035
|
| collections | [number] | no | |
|
|
9036
|
+
| brands | [number] | no | |
|
|
9037
9037
|
|
|
9038
9038
|
---
|
|
9039
9039
|
|
|
@@ -9055,8 +9055,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
9055
9055
|
|
|
9056
9056
|
| Properties | Type | Nullable | Description |
|
|
9057
9057
|
| ---------- | ---- | -------- | ----------- |
|
|
9058
|
-
| type | string | no | |
|
|
9059
9058
|
| coordinates | [number] | no | |
|
|
9059
|
+
| type | string | no | |
|
|
9060
9060
|
|
|
9061
9061
|
---
|
|
9062
9062
|
|
|
@@ -9068,15 +9068,15 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
9068
9068
|
| Properties | Type | Nullable | Description |
|
|
9069
9069
|
| ---------- | ---- | -------- | ----------- |
|
|
9070
9070
|
| pincode | number | no | |
|
|
9071
|
-
|
|
|
9071
|
+
| lat_long | [LatLong](#LatLong) | no | |
|
|
9072
9072
|
| address | string | no | |
|
|
9073
|
-
| store_email | string | no | |
|
|
9074
9073
|
| name | string | no | |
|
|
9075
|
-
|
|
|
9074
|
+
| store_email | string | no | |
|
|
9076
9075
|
| state | string | no | |
|
|
9077
9076
|
| uid | number | no | |
|
|
9078
|
-
| lat_long | [LatLong](#LatLong) | no | |
|
|
9079
9077
|
| country | string | no | |
|
|
9078
|
+
| store_code | string | no | |
|
|
9079
|
+
| city | string | no | |
|
|
9080
9080
|
|
|
9081
9081
|
---
|
|
9082
9082
|
|
|
@@ -9099,23 +9099,25 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
9099
9099
|
|
|
9100
9100
|
| Properties | Type | Nullable | Description |
|
|
9101
9101
|
| ---------- | ---- | -------- | ----------- |
|
|
9102
|
-
| slug | string | no | |
|
|
9103
9102
|
| logo | string | no | |
|
|
9104
|
-
| priority_order | number | no | |
|
|
9105
9103
|
| name | string | no | |
|
|
9104
|
+
| priority_order | number | no | |
|
|
9106
9105
|
| uid | number | no | |
|
|
9106
|
+
| slug | string | no | |
|
|
9107
9107
|
|
|
9108
9108
|
---
|
|
9109
9109
|
|
|
9110
9110
|
|
|
9111
9111
|
|
|
9112
9112
|
|
|
9113
|
-
#### [
|
|
9113
|
+
#### [CompanyStore](#CompanyStore)
|
|
9114
9114
|
|
|
9115
9115
|
| Properties | Type | Nullable | Description |
|
|
9116
9116
|
| ---------- | ---- | -------- | ----------- |
|
|
9117
|
-
|
|
|
9118
|
-
|
|
|
9117
|
+
| business_type | string | no | |
|
|
9118
|
+
| company_type | string | no | |
|
|
9119
|
+
| uid | number | no | |
|
|
9120
|
+
| name | string | no | |
|
|
9119
9121
|
|
|
9120
9122
|
---
|
|
9121
9123
|
|
|
@@ -9127,28 +9129,26 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
9127
9129
|
| Properties | Type | Nullable | Description |
|
|
9128
9130
|
| ---------- | ---- | -------- | ----------- |
|
|
9129
9131
|
| pincode | number | no | |
|
|
9130
|
-
|
|
|
9132
|
+
| landmark | string | no | |
|
|
9133
|
+
| address1 | string | no | |
|
|
9131
9134
|
| longitude | number | no | |
|
|
9135
|
+
| state | string | no | |
|
|
9132
9136
|
| latitude | number | no | |
|
|
9133
9137
|
| address2 | string | no | |
|
|
9134
|
-
| state | string | no | |
|
|
9135
9138
|
| country | string | no | |
|
|
9136
|
-
|
|
|
9137
|
-
| address1 | string | no | |
|
|
9139
|
+
| city | string | no | |
|
|
9138
9140
|
|
|
9139
9141
|
---
|
|
9140
9142
|
|
|
9141
9143
|
|
|
9142
9144
|
|
|
9143
9145
|
|
|
9144
|
-
#### [
|
|
9146
|
+
#### [SellerPhoneNumber](#SellerPhoneNumber)
|
|
9145
9147
|
|
|
9146
9148
|
| Properties | Type | Nullable | Description |
|
|
9147
9149
|
| ---------- | ---- | -------- | ----------- |
|
|
9148
|
-
|
|
|
9149
|
-
|
|
|
9150
|
-
| company_type | string | no | |
|
|
9151
|
-
| uid | number | no | |
|
|
9150
|
+
| country_code | number | yes | |
|
|
9151
|
+
| number | string | yes | |
|
|
9152
9152
|
|
|
9153
9153
|
---
|
|
9154
9154
|
|
|
@@ -9159,9 +9159,9 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
9159
9159
|
|
|
9160
9160
|
| Properties | Type | Nullable | Description |
|
|
9161
9161
|
| ---------- | ---- | -------- | ----------- |
|
|
9162
|
-
| name | string | no | |
|
|
9163
|
-
| email | string | no | |
|
|
9164
9162
|
| mobile_no | [SellerPhoneNumber](#SellerPhoneNumber) | no | |
|
|
9163
|
+
| email | string | no | |
|
|
9164
|
+
| name | string | no | |
|
|
9165
9165
|
|
|
9166
9166
|
---
|
|
9167
9167
|
|
|
@@ -9172,13 +9172,13 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
9172
9172
|
|
|
9173
9173
|
| Properties | Type | Nullable | Description |
|
|
9174
9174
|
| ---------- | ---- | -------- | ----------- |
|
|
9175
|
-
|
|
|
9175
|
+
| company | [CompanyStore](#CompanyStore) | no | |
|
|
9176
9176
|
| address | [StoreAddressSerializer](#StoreAddressSerializer) | no | |
|
|
9177
|
-
| departments | [[StoreDepartments](#StoreDepartments)] | no | |
|
|
9178
9177
|
| name | string | no | |
|
|
9179
|
-
| uid | number | no | |
|
|
9180
|
-
| company | [CompanyStore](#CompanyStore) | no | |
|
|
9181
9178
|
| manager | [StoreManagerSerializer](#StoreManagerSerializer) | no | |
|
|
9179
|
+
| contact_numbers | [[SellerPhoneNumber](#SellerPhoneNumber)] | no | |
|
|
9180
|
+
| uid | number | no | |
|
|
9181
|
+
| departments | [[StoreDepartments](#StoreDepartments)] | no | |
|
|
9182
9182
|
|
|
9183
9183
|
---
|
|
9184
9184
|
|
|
@@ -9189,8 +9189,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
9189
9189
|
|
|
9190
9190
|
| Properties | Type | Nullable | Description |
|
|
9191
9191
|
| ---------- | ---- | -------- | ----------- |
|
|
9192
|
-
| filters | [[StoreDepartments](#StoreDepartments)] | no | |
|
|
9193
9192
|
| page | [Page](#Page) | no | |
|
|
9193
|
+
| filters | [[StoreDepartments](#StoreDepartments)] | no | |
|
|
9194
9194
|
| items | [[AppStore](#AppStore)] | no | |
|
|
9195
9195
|
|
|
9196
9196
|
---
|
|
@@ -9202,8 +9202,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
9202
9202
|
|
|
9203
9203
|
| Properties | Type | Nullable | Description |
|
|
9204
9204
|
| ---------- | ---- | -------- | ----------- |
|
|
9205
|
-
| hour | number | no | |
|
|
9206
9205
|
| minute | number | no | |
|
|
9206
|
+
| hour | number | no | |
|
|
9207
9207
|
|
|
9208
9208
|
---
|
|
9209
9209
|
|
|
@@ -9214,10 +9214,10 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
9214
9214
|
|
|
9215
9215
|
| Properties | Type | Nullable | Description |
|
|
9216
9216
|
| ---------- | ---- | -------- | ----------- |
|
|
9217
|
-
| weekday | string | no | |
|
|
9218
|
-
| opening | [Time](#Time) | no | |
|
|
9219
9217
|
| closing | [Time](#Time) | no | |
|
|
9218
|
+
| weekday | string | no | |
|
|
9220
9219
|
| open | boolean | no | |
|
|
9220
|
+
| opening | [Time](#Time) | no | |
|
|
9221
9221
|
|
|
9222
9222
|
---
|
|
9223
9223
|
|
|
@@ -9228,15 +9228,15 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
9228
9228
|
|
|
9229
9229
|
| Properties | Type | Nullable | Description |
|
|
9230
9230
|
| ---------- | ---- | -------- | ----------- |
|
|
9231
|
-
|
|
|
9231
|
+
| company | [CompanyStore](#CompanyStore) | no | |
|
|
9232
9232
|
| address | [StoreAddressSerializer](#StoreAddressSerializer) | no | |
|
|
9233
|
-
| departments | [[StoreDepartments](#StoreDepartments)] | no | |
|
|
9234
9233
|
| name | string | no | |
|
|
9235
|
-
|
|
|
9234
|
+
| manager | [StoreManagerSerializer](#StoreManagerSerializer) | no | |
|
|
9235
|
+
| contact_numbers | [[SellerPhoneNumber](#SellerPhoneNumber)] | no | |
|
|
9236
9236
|
| timing | [[StoreTiming](#StoreTiming)] | no | |
|
|
9237
9237
|
| uid | number | no | |
|
|
9238
|
-
|
|
|
9239
|
-
|
|
|
9238
|
+
| departments | [[StoreDepartments](#StoreDepartments)] | no | |
|
|
9239
|
+
| _custom_json | string | no | |
|
|
9240
9240
|
|
|
9241
9241
|
---
|
|
9242
9242
|
|
|
@@ -9257,31 +9257,15 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
9257
9257
|
|
|
9258
9258
|
|
|
9259
9259
|
|
|
9260
|
-
#### [
|
|
9260
|
+
#### [ProductGroupPrice](#ProductGroupPrice)
|
|
9261
9261
|
|
|
9262
9262
|
| Properties | Type | Nullable | Description |
|
|
9263
9263
|
| ---------- | ---- | -------- | ----------- |
|
|
9264
|
-
|
|
|
9265
|
-
|
|
|
9266
|
-
|
|
|
9267
|
-
|
|
|
9268
|
-
|
|
|
9269
|
-
| highlights | [any] | no | |
|
|
9270
|
-
| country_of_origin | any | no | |
|
|
9271
|
-
| name | any | no | |
|
|
9272
|
-
| identifier | string | no | |
|
|
9273
|
-
| rating_count | number | no | |
|
|
9274
|
-
| attributes | string | no | |
|
|
9275
|
-
| item_code | any | no | |
|
|
9276
|
-
| media | [string] | no | |
|
|
9277
|
-
| grouped_attributes | string | no | |
|
|
9278
|
-
| hsn_code | number | no | |
|
|
9279
|
-
| rating | number | no | |
|
|
9280
|
-
| short_description | any | no | |
|
|
9281
|
-
| has_variant | boolean | no | |
|
|
9282
|
-
| template_tag | any | no | |
|
|
9283
|
-
| out_of_stock | boolean | no | |
|
|
9284
|
-
| description | any | no | |
|
|
9264
|
+
| currency | any | no | |
|
|
9265
|
+
| max_marked | number | no | |
|
|
9266
|
+
| max_effective | number | no | |
|
|
9267
|
+
| min_marked | number | no | |
|
|
9268
|
+
| min_effective | number | no | |
|
|
9285
9269
|
|
|
9286
9270
|
---
|
|
9287
9271
|
|
|
@@ -9293,24 +9277,40 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
9293
9277
|
| Properties | Type | Nullable | Description |
|
|
9294
9278
|
| ---------- | ---- | -------- | ----------- |
|
|
9295
9279
|
| quantity | number | no | |
|
|
9296
|
-
| display | any | no | |
|
|
9297
9280
|
| is_available | boolean | no | |
|
|
9298
9281
|
| value | any | no | |
|
|
9282
|
+
| display | any | no | |
|
|
9299
9283
|
|
|
9300
9284
|
---
|
|
9301
9285
|
|
|
9302
9286
|
|
|
9303
9287
|
|
|
9304
9288
|
|
|
9305
|
-
#### [
|
|
9289
|
+
#### [ProductDetails](#ProductDetails)
|
|
9306
9290
|
|
|
9307
9291
|
| Properties | Type | Nullable | Description |
|
|
9308
9292
|
| ---------- | ---- | -------- | ----------- |
|
|
9309
|
-
|
|
|
9310
|
-
|
|
|
9311
|
-
|
|
|
9312
|
-
|
|
|
9313
|
-
|
|
|
9293
|
+
| attributes | string | no | |
|
|
9294
|
+
| country_of_origin | any | no | |
|
|
9295
|
+
| template_tag | any | no | |
|
|
9296
|
+
| short_description | any | no | |
|
|
9297
|
+
| has_variant | boolean | no | |
|
|
9298
|
+
| media | [string] | no | |
|
|
9299
|
+
| brand_uid | number | no | |
|
|
9300
|
+
| grouped_attributes | string | no | |
|
|
9301
|
+
| rating | number | no | |
|
|
9302
|
+
| image_nature | any | no | |
|
|
9303
|
+
| name | any | no | |
|
|
9304
|
+
| is_set | boolean | no | |
|
|
9305
|
+
| description | any | no | |
|
|
9306
|
+
| rating_count | number | no | |
|
|
9307
|
+
| out_of_stock | boolean | no | |
|
|
9308
|
+
| highlights | [any] | no | |
|
|
9309
|
+
| item_code | any | no | |
|
|
9310
|
+
| images | [any] | no | |
|
|
9311
|
+
| slug | any | no | |
|
|
9312
|
+
| hsn_code | number | no | |
|
|
9313
|
+
| identifier | string | no | |
|
|
9314
9314
|
|
|
9315
9315
|
---
|
|
9316
9316
|
|
|
@@ -9321,15 +9321,15 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
9321
9321
|
|
|
9322
9322
|
| Properties | Type | Nullable | Description |
|
|
9323
9323
|
| ---------- | ---- | -------- | ----------- |
|
|
9324
|
-
|
|
|
9325
|
-
|
|
|
9326
|
-
| auto_select | boolean | no | |
|
|
9324
|
+
| price | [ProductGroupPrice](#ProductGroupPrice) | no | |
|
|
9325
|
+
| auto_add_to_cart | boolean | no | |
|
|
9327
9326
|
| allow_remove | boolean | no | |
|
|
9328
|
-
| min_quantity | number | no | |
|
|
9329
9327
|
| sizes | [[Size](#Size)] | no | |
|
|
9330
|
-
| price | [ProductGroupPrice](#ProductGroupPrice) | no | |
|
|
9331
9328
|
| product_uid | number | yes | |
|
|
9332
|
-
|
|
|
9329
|
+
| auto_select | boolean | no | |
|
|
9330
|
+
| max_quantity | number | yes | |
|
|
9331
|
+
| product_details | [ProductDetails](#ProductDetails) | no | |
|
|
9332
|
+
| min_quantity | number | no | |
|
|
9333
9333
|
|
|
9334
9334
|
---
|
|
9335
9335
|
|
|
@@ -9340,23 +9340,23 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
9340
9340
|
|
|
9341
9341
|
| Properties | Type | Nullable | Description |
|
|
9342
9342
|
| ---------- | ---- | -------- | ----------- |
|
|
9343
|
-
|
|
|
9343
|
+
| _id | any | no | |
|
|
9344
|
+
| choice | any | no | |
|
|
9344
9345
|
| verified_by | [UserDetail](#UserDetail) | no | |
|
|
9345
|
-
| company_id | number | no | |
|
|
9346
|
-
| meta | string | no | |
|
|
9347
|
-
| page_visibility | [any] | no | |
|
|
9348
|
-
| logo | string | no | |
|
|
9349
|
-
| created_on | string | yes | |
|
|
9350
|
-
| modified_on | string | yes | |
|
|
9351
9346
|
| created_by | [UserDetail](#UserDetail) | no | |
|
|
9352
|
-
|
|
|
9347
|
+
| modified_on | string | yes | |
|
|
9348
|
+
| logo | string | no | |
|
|
9349
|
+
| is_active | boolean | no | |
|
|
9353
9350
|
| modified_by | [UserDetail](#UserDetail) | no | |
|
|
9354
9351
|
| name | any | yes | |
|
|
9355
|
-
| _id | any | no | |
|
|
9356
|
-
| choice | any | no | |
|
|
9357
|
-
| is_active | boolean | no | |
|
|
9358
|
-
| verified_on | string | no | |
|
|
9359
9352
|
| same_store_assignment | boolean | no | |
|
|
9353
|
+
| page_visibility | [any] | no | |
|
|
9354
|
+
| products | [[ProductInGroup](#ProductInGroup)] | yes | |
|
|
9355
|
+
| created_on | string | yes | |
|
|
9356
|
+
| meta | string | no | |
|
|
9357
|
+
| slug | any | no | |
|
|
9358
|
+
| verified_on | string | no | |
|
|
9359
|
+
| company_id | number | no | |
|
|
9360
9360
|
|
|
9361
9361
|
---
|
|
9362
9362
|
|
|
@@ -9374,164 +9374,164 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
9374
9374
|
|
|
9375
9375
|
|
|
9376
9376
|
|
|
9377
|
-
#### [
|
|
9377
|
+
#### [SellerV3](#SellerV3)
|
|
9378
9378
|
|
|
9379
9379
|
| Properties | Type | Nullable | Description |
|
|
9380
9380
|
| ---------- | ---- | -------- | ----------- |
|
|
9381
|
-
|
|
|
9382
|
-
|
|
|
9383
|
-
|
|
|
9384
|
-
| pincode | number | no | |
|
|
9381
|
+
| uid | number | no | |
|
|
9382
|
+
| count | number | no | |
|
|
9383
|
+
| name | string | no | |
|
|
9385
9384
|
|
|
9386
9385
|
---
|
|
9387
9386
|
|
|
9388
9387
|
|
|
9389
9388
|
|
|
9390
9389
|
|
|
9391
|
-
#### [
|
|
9390
|
+
#### [ReturnConfigSchemaV3](#ReturnConfigSchemaV3)
|
|
9392
9391
|
|
|
9393
9392
|
| Properties | Type | Nullable | Description |
|
|
9394
9393
|
| ---------- | ---- | -------- | ----------- |
|
|
9395
|
-
|
|
|
9396
|
-
| currency_code | string | no | |
|
|
9397
|
-
| price | number | no | |
|
|
9394
|
+
| returnable | boolean | no | |
|
|
9398
9395
|
| unit | string | no | |
|
|
9396
|
+
| time | number | no | |
|
|
9399
9397
|
|
|
9400
9398
|
---
|
|
9401
9399
|
|
|
9402
9400
|
|
|
9403
9401
|
|
|
9404
9402
|
|
|
9405
|
-
#### [
|
|
9403
|
+
#### [ProductStockPriceV3](#ProductStockPriceV3)
|
|
9406
9404
|
|
|
9407
9405
|
| Properties | Type | Nullable | Description |
|
|
9408
9406
|
| ---------- | ---- | -------- | ----------- |
|
|
9409
|
-
|
|
|
9410
|
-
|
|
|
9411
|
-
|
|
|
9407
|
+
| currency | string | no | |
|
|
9408
|
+
| marked | number | no | |
|
|
9409
|
+
| effective | number | no | |
|
|
9412
9410
|
|
|
9413
9411
|
---
|
|
9414
9412
|
|
|
9415
9413
|
|
|
9416
9414
|
|
|
9417
9415
|
|
|
9418
|
-
#### [
|
|
9416
|
+
#### [StrategyWiseListingSchemaV3](#StrategyWiseListingSchemaV3)
|
|
9419
9417
|
|
|
9420
9418
|
| Properties | Type | Nullable | Description |
|
|
9421
9419
|
| ---------- | ---- | -------- | ----------- |
|
|
9422
|
-
|
|
|
9423
|
-
|
|
|
9420
|
+
| pincode | number | no | |
|
|
9421
|
+
| distance | number | no | |
|
|
9422
|
+
| tat | number | no | |
|
|
9423
|
+
| quantity | number | no | |
|
|
9424
9424
|
|
|
9425
9425
|
---
|
|
9426
9426
|
|
|
9427
9427
|
|
|
9428
9428
|
|
|
9429
9429
|
|
|
9430
|
-
#### [
|
|
9430
|
+
#### [DetailsSchemaV3](#DetailsSchemaV3)
|
|
9431
9431
|
|
|
9432
9432
|
| Properties | Type | Nullable | Description |
|
|
9433
9433
|
| ---------- | ---- | -------- | ----------- |
|
|
9434
|
-
|
|
|
9434
|
+
| key | string | no | |
|
|
9435
|
+
| type | string | no | |
|
|
9436
|
+
| value | string | no | |
|
|
9435
9437
|
|
|
9436
9438
|
---
|
|
9437
9439
|
|
|
9438
9440
|
|
|
9439
9441
|
|
|
9440
9442
|
|
|
9441
|
-
#### [
|
|
9443
|
+
#### [SellerGroupAttributes](#SellerGroupAttributes)
|
|
9442
9444
|
|
|
9443
9445
|
| Properties | Type | Nullable | Description |
|
|
9444
9446
|
| ---------- | ---- | -------- | ----------- |
|
|
9445
|
-
|
|
|
9446
|
-
|
|
|
9447
|
+
| details | [[DetailsSchemaV3](#DetailsSchemaV3)] | no | |
|
|
9448
|
+
| title | string | no | |
|
|
9447
9449
|
|
|
9448
9450
|
---
|
|
9449
9451
|
|
|
9450
9452
|
|
|
9451
9453
|
|
|
9452
9454
|
|
|
9453
|
-
#### [
|
|
9455
|
+
#### [ProductStockUnitPriceV3](#ProductStockUnitPriceV3)
|
|
9454
9456
|
|
|
9455
9457
|
| Properties | Type | Nullable | Description |
|
|
9456
9458
|
| ---------- | ---- | -------- | ----------- |
|
|
9457
|
-
|
|
|
9458
|
-
|
|
|
9459
|
+
| price | number | no | |
|
|
9460
|
+
| currency_symbol | string | no | |
|
|
9459
9461
|
| unit | string | no | |
|
|
9462
|
+
| currency_code | string | no | |
|
|
9460
9463
|
|
|
9461
9464
|
---
|
|
9462
9465
|
|
|
9463
9466
|
|
|
9464
9467
|
|
|
9465
9468
|
|
|
9466
|
-
#### [
|
|
9469
|
+
#### [ProductSetDistributionSizeV3](#ProductSetDistributionSizeV3)
|
|
9467
9470
|
|
|
9468
9471
|
| Properties | Type | Nullable | Description |
|
|
9469
9472
|
| ---------- | ---- | -------- | ----------- |
|
|
9470
|
-
|
|
|
9471
|
-
|
|
|
9472
|
-
| effective | number | no | |
|
|
9473
|
+
| pieces | number | no | |
|
|
9474
|
+
| size | string | no | |
|
|
9473
9475
|
|
|
9474
9476
|
---
|
|
9475
9477
|
|
|
9476
9478
|
|
|
9477
9479
|
|
|
9478
9480
|
|
|
9479
|
-
#### [
|
|
9481
|
+
#### [ProductSetDistributionV3](#ProductSetDistributionV3)
|
|
9480
9482
|
|
|
9481
9483
|
| Properties | Type | Nullable | Description |
|
|
9482
9484
|
| ---------- | ---- | -------- | ----------- |
|
|
9483
|
-
|
|
|
9484
|
-
| key | string | no | |
|
|
9485
|
-
| value | string | no | |
|
|
9485
|
+
| sizes | [[ProductSetDistributionSizeV3](#ProductSetDistributionSizeV3)] | no | |
|
|
9486
9486
|
|
|
9487
9487
|
---
|
|
9488
9488
|
|
|
9489
9489
|
|
|
9490
9490
|
|
|
9491
9491
|
|
|
9492
|
-
#### [
|
|
9492
|
+
#### [ProductSetV3](#ProductSetV3)
|
|
9493
9493
|
|
|
9494
9494
|
| Properties | Type | Nullable | Description |
|
|
9495
9495
|
| ---------- | ---- | -------- | ----------- |
|
|
9496
|
-
|
|
|
9497
|
-
|
|
|
9496
|
+
| quantity | number | no | |
|
|
9497
|
+
| size_distribution | [ProductSetDistributionV3](#ProductSetDistributionV3) | no | |
|
|
9498
9498
|
|
|
9499
9499
|
---
|
|
9500
9500
|
|
|
9501
9501
|
|
|
9502
9502
|
|
|
9503
9503
|
|
|
9504
|
-
#### [
|
|
9504
|
+
#### [MarketPlaceSttributesSchemaV3](#MarketPlaceSttributesSchemaV3)
|
|
9505
9505
|
|
|
9506
9506
|
| Properties | Type | Nullable | Description |
|
|
9507
9507
|
| ---------- | ---- | -------- | ----------- |
|
|
9508
|
-
| title | string | no | |
|
|
9509
9508
|
| details | [[DetailsSchemaV3](#DetailsSchemaV3)] | no | |
|
|
9509
|
+
| title | string | no | |
|
|
9510
9510
|
|
|
9511
9511
|
---
|
|
9512
9512
|
|
|
9513
9513
|
|
|
9514
9514
|
|
|
9515
9515
|
|
|
9516
|
-
#### [
|
|
9516
|
+
#### [StoreV3](#StoreV3)
|
|
9517
9517
|
|
|
9518
9518
|
| Properties | Type | Nullable | Description |
|
|
9519
9519
|
| ---------- | ---- | -------- | ----------- |
|
|
9520
|
-
|
|
|
9521
|
-
|
|
|
9520
|
+
| uid | number | no | |
|
|
9521
|
+
| count | number | no | |
|
|
9522
|
+
| name | string | no | |
|
|
9522
9523
|
|
|
9523
9524
|
---
|
|
9524
9525
|
|
|
9525
9526
|
|
|
9526
9527
|
|
|
9527
9528
|
|
|
9528
|
-
#### [
|
|
9529
|
+
#### [ArticleAssignmentV3](#ArticleAssignmentV3)
|
|
9529
9530
|
|
|
9530
9531
|
| Properties | Type | Nullable | Description |
|
|
9531
9532
|
| ---------- | ---- | -------- | ----------- |
|
|
9532
|
-
|
|
|
9533
|
-
|
|
|
9534
|
-
| uid | number | no | |
|
|
9533
|
+
| strategy | string | no | |
|
|
9534
|
+
| level | string | no | |
|
|
9535
9535
|
|
|
9536
9536
|
---
|
|
9537
9537
|
|
|
@@ -9542,27 +9542,27 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
9542
9542
|
|
|
9543
9543
|
| Properties | Type | Nullable | Description |
|
|
9544
9544
|
| ---------- | ---- | -------- | ----------- |
|
|
9545
|
-
|
|
|
9546
|
-
|
|
|
9547
|
-
| price_per_unit | [ProductStockUnitPriceV3](#ProductStockUnitPriceV3) | no | |
|
|
9548
|
-
| store | [StoreV3](#StoreV3) | no | |
|
|
9549
|
-
| set | [ProductSetV3](#ProductSetV3) | no | |
|
|
9550
|
-
| item_type | string | no | |
|
|
9551
|
-
| is_cod | boolean | no | |
|
|
9545
|
+
| seller | [SellerV3](#SellerV3) | no | |
|
|
9546
|
+
| seller_count | number | no | |
|
|
9552
9547
|
| return_config | [ReturnConfigSchemaV3](#ReturnConfigSchemaV3) | no | |
|
|
9553
|
-
|
|
|
9554
|
-
| long_lat | [number] | no | |
|
|
9548
|
+
| pincode | number | no | |
|
|
9555
9549
|
| price_per_piece | [ProductStockPriceV3](#ProductStockPriceV3) | no | |
|
|
9556
|
-
|
|
|
9550
|
+
| item_type | string | no | |
|
|
9551
|
+
| is_cod | boolean | no | |
|
|
9552
|
+
| strategy_wise_listing | [[StrategyWiseListingSchemaV3](#StrategyWiseListingSchemaV3)] | no | |
|
|
9557
9553
|
| grouped_attributes | [[SellerGroupAttributes](#SellerGroupAttributes)] | no | |
|
|
9558
|
-
| price | [ProductStockPriceV3](#ProductStockPriceV3) | no | |
|
|
9559
|
-
| article_assignment | [ArticleAssignmentV3](#ArticleAssignmentV3) | no | |
|
|
9560
|
-
| seller | [SellerV3](#SellerV3) | no | |
|
|
9561
9554
|
| quantity | number | no | |
|
|
9562
|
-
| pincode | number | no | |
|
|
9563
9555
|
| article_id | string | no | |
|
|
9556
|
+
| price_per_unit | [ProductStockUnitPriceV3](#ProductStockUnitPriceV3) | no | |
|
|
9557
|
+
| set | [ProductSetV3](#ProductSetV3) | no | |
|
|
9558
|
+
| price | [ProductStockPriceV3](#ProductStockPriceV3) | no | |
|
|
9559
|
+
| special_badge | string | no | |
|
|
9564
9560
|
| is_gift | boolean | no | |
|
|
9565
|
-
|
|
|
9561
|
+
| marketplace_attributes | [[MarketPlaceSttributesSchemaV3](#MarketPlaceSttributesSchemaV3)] | no | |
|
|
9562
|
+
| store | [StoreV3](#StoreV3) | no | |
|
|
9563
|
+
| discount | string | no | |
|
|
9564
|
+
| article_assignment | [ArticleAssignmentV3](#ArticleAssignmentV3) | no | |
|
|
9565
|
+
| long_lat | [number] | no | |
|
|
9566
9566
|
|
|
9567
9567
|
---
|
|
9568
9568
|
|
|
@@ -9573,9 +9573,9 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
|
|
|
9573
9573
|
|
|
9574
9574
|
| Properties | Type | Nullable | Description |
|
|
9575
9575
|
| ---------- | ---- | -------- | ----------- |
|
|
9576
|
-
| name | string | no | |
|
|
9577
9576
|
| is_selected | boolean | no | |
|
|
9578
9577
|
| value | string | no | |
|
|
9578
|
+
| name | string | no | |
|
|
9579
9579
|
|
|
9580
9580
|
---
|
|
9581
9581
|
|