@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
|
@@ -3993,329 +3993,329 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
3993
3993
|
|
|
3994
3994
|
|
|
3995
3995
|
|
|
3996
|
-
#### [
|
|
3996
|
+
#### [Page](#Page)
|
|
3997
3997
|
|
|
3998
3998
|
| Properties | Type | Nullable | Description |
|
|
3999
3999
|
| ---------- | ---- | -------- | ----------- |
|
|
4000
|
-
|
|
|
4001
|
-
|
|
|
4000
|
+
| size | number | no | Current request page size |
|
|
4001
|
+
| current | number | no | Current page no |
|
|
4002
|
+
| type | string | yes | |
|
|
4003
|
+
| item_total | number | no | Total coupon count in system |
|
|
4004
|
+
| page | number | no | Page requested |
|
|
4005
|
+
| last_id | string | no | Last objects id |
|
|
4006
|
+
| has_previous | boolean | no | True if more records are present for previous pages. Sent for cursor pagination |
|
|
4007
|
+
| next_id | string | no | Cursor id for next set of records. |
|
|
4008
|
+
| has_next | boolean | no | True if more records are present for next pages |
|
|
4002
4009
|
|
|
4003
4010
|
---
|
|
4004
4011
|
|
|
4005
4012
|
|
|
4006
4013
|
|
|
4007
4014
|
|
|
4008
|
-
#### [
|
|
4015
|
+
#### [Validation](#Validation)
|
|
4009
4016
|
|
|
4010
4017
|
| Properties | Type | Nullable | Description |
|
|
4011
4018
|
| ---------- | ---- | -------- | ----------- |
|
|
4012
|
-
|
|
|
4013
|
-
|
|
|
4019
|
+
| user_registered_after | string | no | |
|
|
4020
|
+
| anonymous | boolean | no | |
|
|
4021
|
+
| app_id | [string] | no | |
|
|
4014
4022
|
|
|
4015
4023
|
---
|
|
4016
4024
|
|
|
4017
4025
|
|
|
4018
4026
|
|
|
4019
4027
|
|
|
4020
|
-
#### [
|
|
4028
|
+
#### [RuleDefinition](#RuleDefinition)
|
|
4021
4029
|
|
|
4022
4030
|
| Properties | Type | Nullable | Description |
|
|
4023
4031
|
| ---------- | ---- | -------- | ----------- |
|
|
4024
|
-
|
|
|
4025
|
-
|
|
|
4026
|
-
|
|
|
4027
|
-
|
|
|
4028
|
-
|
|
|
4029
|
-
|
|
|
4032
|
+
| type | string | yes | |
|
|
4033
|
+
| currency_code | string | no | |
|
|
4034
|
+
| scope | [string] | no | |
|
|
4035
|
+
| calculate_on | string | yes | |
|
|
4036
|
+
| is_exact | boolean | no | |
|
|
4037
|
+
| auto_apply | boolean | no | |
|
|
4038
|
+
| value_type | string | yes | |
|
|
4039
|
+
| applicable_on | string | yes | |
|
|
4030
4040
|
|
|
4031
4041
|
---
|
|
4032
4042
|
|
|
4033
4043
|
|
|
4034
4044
|
|
|
4035
4045
|
|
|
4036
|
-
#### [
|
|
4046
|
+
#### [State](#State)
|
|
4037
4047
|
|
|
4038
4048
|
| Properties | Type | Nullable | Description |
|
|
4039
4049
|
| ---------- | ---- | -------- | ----------- |
|
|
4040
|
-
|
|
|
4050
|
+
| is_display | boolean | no | |
|
|
4051
|
+
| is_public | boolean | no | |
|
|
4052
|
+
| is_archived | boolean | no | |
|
|
4041
4053
|
|
|
4042
4054
|
---
|
|
4043
4055
|
|
|
4044
4056
|
|
|
4045
4057
|
|
|
4046
4058
|
|
|
4047
|
-
#### [
|
|
4059
|
+
#### [CouponAuthor](#CouponAuthor)
|
|
4048
4060
|
|
|
4049
4061
|
| Properties | Type | Nullable | Description |
|
|
4050
4062
|
| ---------- | ---- | -------- | ----------- |
|
|
4051
|
-
|
|
|
4052
|
-
|
|
|
4053
|
-
| duration | number | no | |
|
|
4054
|
-
| end | string | no | |
|
|
4055
|
-
| cron | string | no | |
|
|
4063
|
+
| created_by | string | no | |
|
|
4064
|
+
| modified_by | string | no | |
|
|
4056
4065
|
|
|
4057
4066
|
---
|
|
4058
4067
|
|
|
4059
4068
|
|
|
4060
4069
|
|
|
4061
4070
|
|
|
4062
|
-
#### [
|
|
4071
|
+
#### [Validity](#Validity)
|
|
4063
4072
|
|
|
4064
4073
|
| Properties | Type | Nullable | Description |
|
|
4065
4074
|
| ---------- | ---- | -------- | ----------- |
|
|
4066
|
-
|
|
|
4067
|
-
| min | number | no | |
|
|
4068
|
-
| discount_qty | number | no | |
|
|
4069
|
-
| key | number | no | |
|
|
4070
|
-
| value | number | no | |
|
|
4075
|
+
| priority | number | no | |
|
|
4071
4076
|
|
|
4072
4077
|
---
|
|
4073
4078
|
|
|
4074
4079
|
|
|
4075
4080
|
|
|
4076
4081
|
|
|
4077
|
-
#### [
|
|
4082
|
+
#### [CouponDateMeta](#CouponDateMeta)
|
|
4078
4083
|
|
|
4079
4084
|
| Properties | Type | Nullable | Description |
|
|
4080
4085
|
| ---------- | ---- | -------- | ----------- |
|
|
4081
|
-
|
|
|
4082
|
-
|
|
|
4083
|
-
| currency_code | string | no | |
|
|
4084
|
-
| value_type | string | yes | |
|
|
4085
|
-
| scope | [string] | no | |
|
|
4086
|
-
| auto_apply | boolean | no | |
|
|
4087
|
-
| calculate_on | string | yes | |
|
|
4088
|
-
| type | string | yes | |
|
|
4086
|
+
| modified_on | string | no | |
|
|
4087
|
+
| created_on | string | no | |
|
|
4089
4088
|
|
|
4090
4089
|
---
|
|
4091
4090
|
|
|
4092
4091
|
|
|
4093
4092
|
|
|
4094
4093
|
|
|
4095
|
-
#### [
|
|
4094
|
+
#### [PaymentAllowValue](#PaymentAllowValue)
|
|
4096
4095
|
|
|
4097
4096
|
| Properties | Type | Nullable | Description |
|
|
4098
4097
|
| ---------- | ---- | -------- | ----------- |
|
|
4099
|
-
|
|
|
4100
|
-
| action_date | string | no | |
|
|
4098
|
+
| max | number | no | |
|
|
4101
4099
|
|
|
4102
4100
|
---
|
|
4103
4101
|
|
|
4104
4102
|
|
|
4105
4103
|
|
|
4106
4104
|
|
|
4107
|
-
#### [
|
|
4105
|
+
#### [PaymentModes](#PaymentModes)
|
|
4108
4106
|
|
|
4109
4107
|
| Properties | Type | Nullable | Description |
|
|
4110
4108
|
| ---------- | ---- | -------- | ----------- |
|
|
4111
|
-
|
|
|
4112
|
-
|
|
|
4109
|
+
| uses | [PaymentAllowValue](#PaymentAllowValue) | no | |
|
|
4110
|
+
| codes | [string] | no | |
|
|
4111
|
+
| networks | [string] | no | |
|
|
4112
|
+
| types | [string] | no | |
|
|
4113
4113
|
|
|
4114
4114
|
---
|
|
4115
4115
|
|
|
4116
4116
|
|
|
4117
4117
|
|
|
4118
4118
|
|
|
4119
|
-
#### [
|
|
4119
|
+
#### [BulkBundleRestriction](#BulkBundleRestriction)
|
|
4120
4120
|
|
|
4121
4121
|
| Properties | Type | Nullable | Description |
|
|
4122
4122
|
| ---------- | ---- | -------- | ----------- |
|
|
4123
|
-
|
|
|
4124
|
-
| user_id | [string] | no | |
|
|
4125
|
-
| collection_id | [string] | no | |
|
|
4126
|
-
| store_id | [number] | no | |
|
|
4127
|
-
| brand_id | [number] | no | |
|
|
4128
|
-
| category_id | [number] | no | |
|
|
4129
|
-
| article_id | [string] | no | |
|
|
4130
|
-
| exclude_brand_id | [number] | no | |
|
|
4131
|
-
| company_id | [number] | no | |
|
|
4123
|
+
| multi_store_allowed | boolean | yes | |
|
|
4132
4124
|
|
|
4133
4125
|
---
|
|
4134
4126
|
|
|
4135
4127
|
|
|
4136
4128
|
|
|
4137
4129
|
|
|
4138
|
-
#### [
|
|
4130
|
+
#### [UsesRemaining](#UsesRemaining)
|
|
4139
4131
|
|
|
4140
4132
|
| Properties | Type | Nullable | Description |
|
|
4141
4133
|
| ---------- | ---- | -------- | ----------- |
|
|
4142
|
-
|
|
|
4134
|
+
| total | number | no | |
|
|
4135
|
+
| user | number | no | |
|
|
4136
|
+
| app | number | no | |
|
|
4143
4137
|
|
|
4144
4138
|
---
|
|
4145
4139
|
|
|
4146
4140
|
|
|
4147
4141
|
|
|
4148
4142
|
|
|
4149
|
-
#### [
|
|
4143
|
+
#### [UsesRestriction](#UsesRestriction)
|
|
4150
4144
|
|
|
4151
4145
|
| Properties | Type | Nullable | Description |
|
|
4152
4146
|
| ---------- | ---- | -------- | ----------- |
|
|
4153
|
-
|
|
|
4154
|
-
|
|
|
4155
|
-
| networks | [string] | no | |
|
|
4156
|
-
| types | [string] | no | |
|
|
4147
|
+
| maximum | [UsesRemaining](#UsesRemaining) | no | |
|
|
4148
|
+
| remaining | [UsesRemaining](#UsesRemaining) | no | |
|
|
4157
4149
|
|
|
4158
4150
|
---
|
|
4159
4151
|
|
|
4160
4152
|
|
|
4161
4153
|
|
|
4162
4154
|
|
|
4163
|
-
#### [
|
|
4155
|
+
#### [PostOrder](#PostOrder)
|
|
4164
4156
|
|
|
4165
4157
|
| Properties | Type | Nullable | Description |
|
|
4166
4158
|
| ---------- | ---- | -------- | ----------- |
|
|
4167
|
-
|
|
|
4168
|
-
|
|
|
4169
|
-
| user | number | no | |
|
|
4159
|
+
| return_allowed | boolean | no | |
|
|
4160
|
+
| cancellation_allowed | boolean | no | |
|
|
4170
4161
|
|
|
4171
4162
|
---
|
|
4172
4163
|
|
|
4173
4164
|
|
|
4174
4165
|
|
|
4175
4166
|
|
|
4176
|
-
#### [
|
|
4167
|
+
#### [PriceRange](#PriceRange)
|
|
4177
4168
|
|
|
4178
4169
|
| Properties | Type | Nullable | Description |
|
|
4179
4170
|
| ---------- | ---- | -------- | ----------- |
|
|
4180
|
-
|
|
|
4181
|
-
|
|
|
4171
|
+
| min | number | no | |
|
|
4172
|
+
| max | number | no | |
|
|
4182
4173
|
|
|
4183
4174
|
---
|
|
4184
4175
|
|
|
4185
4176
|
|
|
4186
4177
|
|
|
4187
4178
|
|
|
4188
|
-
#### [
|
|
4179
|
+
#### [Restrictions](#Restrictions)
|
|
4189
4180
|
|
|
4190
4181
|
| Properties | Type | Nullable | Description |
|
|
4191
4182
|
| ---------- | ---- | -------- | ----------- |
|
|
4192
|
-
|
|
|
4193
|
-
|
|
|
4183
|
+
| payments | [String: [PaymentModes](#PaymentModes)] | no | |
|
|
4184
|
+
| bulk_bundle | [BulkBundleRestriction](#BulkBundleRestriction) | no | |
|
|
4185
|
+
| uses | [UsesRestriction](#UsesRestriction) | no | |
|
|
4186
|
+
| platforms | [string] | no | |
|
|
4187
|
+
| post_order | [PostOrder](#PostOrder) | no | |
|
|
4188
|
+
| coupon_allowed | boolean | no | |
|
|
4189
|
+
| ordering_stores | [number] | no | |
|
|
4190
|
+
| user_groups | [number] | no | |
|
|
4191
|
+
| price_range | [PriceRange](#PriceRange) | no | |
|
|
4194
4192
|
|
|
4195
4193
|
---
|
|
4196
4194
|
|
|
4197
4195
|
|
|
4198
4196
|
|
|
4199
4197
|
|
|
4200
|
-
#### [
|
|
4198
|
+
#### [CouponAction](#CouponAction)
|
|
4201
4199
|
|
|
4202
4200
|
| Properties | Type | Nullable | Description |
|
|
4203
4201
|
| ---------- | ---- | -------- | ----------- |
|
|
4204
|
-
|
|
|
4202
|
+
| action_date | string | no | |
|
|
4203
|
+
| txn_mode | string | no | |
|
|
4205
4204
|
|
|
4206
4205
|
---
|
|
4207
4206
|
|
|
4208
4207
|
|
|
4209
4208
|
|
|
4210
4209
|
|
|
4211
|
-
#### [
|
|
4210
|
+
#### [CouponSchedule](#CouponSchedule)
|
|
4212
4211
|
|
|
4213
4212
|
| Properties | Type | Nullable | Description |
|
|
4214
4213
|
| ---------- | ---- | -------- | ----------- |
|
|
4215
|
-
|
|
|
4216
|
-
|
|
|
4214
|
+
| cron | string | no | |
|
|
4215
|
+
| start | string | no | |
|
|
4216
|
+
| end | string | no | |
|
|
4217
|
+
| duration | number | no | |
|
|
4218
|
+
| next_schedule | [string] | no | |
|
|
4217
4219
|
|
|
4218
4220
|
---
|
|
4219
4221
|
|
|
4220
4222
|
|
|
4221
4223
|
|
|
4222
4224
|
|
|
4223
|
-
#### [
|
|
4225
|
+
#### [Rule](#Rule)
|
|
4224
4226
|
|
|
4225
4227
|
| Properties | Type | Nullable | Description |
|
|
4226
4228
|
| ---------- | ---- | -------- | ----------- |
|
|
4227
|
-
|
|
|
4228
|
-
|
|
|
4229
|
-
|
|
|
4230
|
-
|
|
|
4231
|
-
|
|
|
4232
|
-
| price_range | [PriceRange](#PriceRange) | no | |
|
|
4233
|
-
| coupon_allowed | boolean | no | |
|
|
4234
|
-
| bulk_bundle | [BulkBundleRestriction](#BulkBundleRestriction) | no | |
|
|
4235
|
-
| post_order | [PostOrder](#PostOrder) | no | |
|
|
4229
|
+
| value | number | no | |
|
|
4230
|
+
| key | number | no | |
|
|
4231
|
+
| max | number | no | |
|
|
4232
|
+
| min | number | no | |
|
|
4233
|
+
| discount_qty | number | no | |
|
|
4236
4234
|
|
|
4237
4235
|
---
|
|
4238
4236
|
|
|
4239
4237
|
|
|
4240
4238
|
|
|
4241
4239
|
|
|
4242
|
-
#### [
|
|
4240
|
+
#### [Ownership](#Ownership)
|
|
4243
4241
|
|
|
4244
4242
|
| Properties | Type | Nullable | Description |
|
|
4245
4243
|
| ---------- | ---- | -------- | ----------- |
|
|
4246
|
-
|
|
|
4247
|
-
|
|
|
4244
|
+
| payable_by | string | yes | |
|
|
4245
|
+
| payable_category | string | yes | |
|
|
4248
4246
|
|
|
4249
4247
|
---
|
|
4250
4248
|
|
|
4251
4249
|
|
|
4252
4250
|
|
|
4253
4251
|
|
|
4254
|
-
#### [
|
|
4252
|
+
#### [DisplayMetaDict](#DisplayMetaDict)
|
|
4255
4253
|
|
|
4256
4254
|
| Properties | Type | Nullable | Description |
|
|
4257
4255
|
| ---------- | ---- | -------- | ----------- |
|
|
4258
|
-
|
|
|
4259
|
-
|
|
|
4260
|
-
| is_display | boolean | no | |
|
|
4256
|
+
| subtitle | string | no | |
|
|
4257
|
+
| title | string | no | |
|
|
4261
4258
|
|
|
4262
4259
|
---
|
|
4263
4260
|
|
|
4264
4261
|
|
|
4265
4262
|
|
|
4266
4263
|
|
|
4267
|
-
#### [
|
|
4264
|
+
#### [DisplayMeta](#DisplayMeta)
|
|
4268
4265
|
|
|
4269
4266
|
| Properties | Type | Nullable | Description |
|
|
4270
4267
|
| ---------- | ---- | -------- | ----------- |
|
|
4271
|
-
|
|
|
4272
|
-
|
|
|
4273
|
-
|
|
|
4268
|
+
| apply | [DisplayMetaDict](#DisplayMetaDict) | no | |
|
|
4269
|
+
| auto | [DisplayMetaDict](#DisplayMetaDict) | no | |
|
|
4270
|
+
| remove | [DisplayMetaDict](#DisplayMetaDict) | no | |
|
|
4271
|
+
| title | string | no | |
|
|
4272
|
+
| description | string | no | |
|
|
4273
|
+
| subtitle | string | no | |
|
|
4274
4274
|
|
|
4275
4275
|
---
|
|
4276
4276
|
|
|
4277
4277
|
|
|
4278
4278
|
|
|
4279
4279
|
|
|
4280
|
-
#### [
|
|
4280
|
+
#### [Identifier](#Identifier)
|
|
4281
4281
|
|
|
4282
4282
|
| Properties | Type | Nullable | Description |
|
|
4283
4283
|
| ---------- | ---- | -------- | ----------- |
|
|
4284
|
-
|
|
|
4285
|
-
|
|
|
4286
|
-
|
|
|
4287
|
-
|
|
|
4288
|
-
|
|
|
4289
|
-
|
|
|
4290
|
-
|
|
|
4291
|
-
|
|
|
4292
|
-
|
|
|
4293
|
-
| identifiers | [Identifier](#Identifier) | yes | |
|
|
4294
|
-
| type_slug | string | yes | |
|
|
4295
|
-
| restrictions | [Restrictions](#Restrictions) | no | |
|
|
4296
|
-
| author | [CouponAuthor](#CouponAuthor) | no | |
|
|
4297
|
-
| state | [State](#State) | no | |
|
|
4298
|
-
| validation | [Validation](#Validation) | no | |
|
|
4299
|
-
| tags | [string] | no | |
|
|
4284
|
+
| exclude_brand_id | [number] | no | |
|
|
4285
|
+
| item_id | [number] | no | |
|
|
4286
|
+
| brand_id | [number] | no | |
|
|
4287
|
+
| user_id | [string] | no | |
|
|
4288
|
+
| category_id | [number] | no | |
|
|
4289
|
+
| company_id | [number] | no | |
|
|
4290
|
+
| article_id | [string] | no | |
|
|
4291
|
+
| store_id | [number] | no | |
|
|
4292
|
+
| collection_id | [string] | no | |
|
|
4300
4293
|
|
|
4301
4294
|
---
|
|
4302
4295
|
|
|
4303
4296
|
|
|
4304
4297
|
|
|
4305
4298
|
|
|
4306
|
-
#### [
|
|
4299
|
+
#### [CouponAdd](#CouponAdd)
|
|
4307
4300
|
|
|
4308
4301
|
| Properties | Type | Nullable | Description |
|
|
4309
4302
|
| ---------- | ---- | -------- | ----------- |
|
|
4310
|
-
|
|
|
4311
|
-
|
|
|
4312
|
-
|
|
|
4313
|
-
|
|
|
4314
|
-
|
|
|
4315
|
-
|
|
|
4316
|
-
|
|
|
4317
|
-
|
|
|
4318
|
-
|
|
|
4303
|
+
| validation | [Validation](#Validation) | no | |
|
|
4304
|
+
| rule_definition | [RuleDefinition](#RuleDefinition) | yes | |
|
|
4305
|
+
| state | [State](#State) | no | |
|
|
4306
|
+
| tags | [string] | no | |
|
|
4307
|
+
| code | string | yes | |
|
|
4308
|
+
| author | [CouponAuthor](#CouponAuthor) | no | |
|
|
4309
|
+
| validity | [Validity](#Validity) | yes | |
|
|
4310
|
+
| date_meta | [CouponDateMeta](#CouponDateMeta) | no | |
|
|
4311
|
+
| restrictions | [Restrictions](#Restrictions) | no | |
|
|
4312
|
+
| action | [CouponAction](#CouponAction) | no | |
|
|
4313
|
+
| _schedule | [CouponSchedule](#CouponSchedule) | no | |
|
|
4314
|
+
| rule | [[Rule](#Rule)] | yes | |
|
|
4315
|
+
| ownership | [Ownership](#Ownership) | yes | |
|
|
4316
|
+
| display_meta | [DisplayMeta](#DisplayMeta) | yes | |
|
|
4317
|
+
| type_slug | string | yes | |
|
|
4318
|
+
| identifiers | [Identifier](#Identifier) | yes | |
|
|
4319
4319
|
|
|
4320
4320
|
---
|
|
4321
4321
|
|
|
@@ -4326,8 +4326,8 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
4326
4326
|
|
|
4327
4327
|
| Properties | Type | Nullable | Description |
|
|
4328
4328
|
| ---------- | ---- | -------- | ----------- |
|
|
4329
|
-
| items | [CouponAdd](#CouponAdd) | no | |
|
|
4330
4329
|
| page | [Page](#Page) | no | |
|
|
4330
|
+
| items | [CouponAdd](#CouponAdd) | no | |
|
|
4331
4331
|
|
|
4332
4332
|
---
|
|
4333
4333
|
|
|
@@ -4338,8 +4338,8 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
4338
4338
|
|
|
4339
4339
|
| Properties | Type | Nullable | Description |
|
|
4340
4340
|
| ---------- | ---- | -------- | ----------- |
|
|
4341
|
-
| success | boolean | no | |
|
|
4342
4341
|
| message | string | no | |
|
|
4342
|
+
| success | boolean | no | |
|
|
4343
4343
|
|
|
4344
4344
|
---
|
|
4345
4345
|
|
|
@@ -4350,8 +4350,8 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
4350
4350
|
|
|
4351
4351
|
| Properties | Type | Nullable | Description |
|
|
4352
4352
|
| ---------- | ---- | -------- | ----------- |
|
|
4353
|
-
| success | boolean | no | |
|
|
4354
4353
|
| message | string | no | |
|
|
4354
|
+
| success | boolean | no | |
|
|
4355
4355
|
|
|
4356
4356
|
---
|
|
4357
4357
|
|
|
@@ -4362,22 +4362,22 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
4362
4362
|
|
|
4363
4363
|
| Properties | Type | Nullable | Description |
|
|
4364
4364
|
| ---------- | ---- | -------- | ----------- |
|
|
4365
|
-
|
|
|
4366
|
-
| display_meta | [DisplayMeta](#DisplayMeta) | yes | |
|
|
4367
|
-
| validity | [Validity](#Validity) | yes | |
|
|
4368
|
-
| _schedule | [CouponSchedule](#CouponSchedule) | no | |
|
|
4369
|
-
| rule | [[Rule](#Rule)] | yes | |
|
|
4365
|
+
| validation | [Validation](#Validation) | no | |
|
|
4370
4366
|
| rule_definition | [RuleDefinition](#RuleDefinition) | yes | |
|
|
4367
|
+
| state | [State](#State) | no | |
|
|
4368
|
+
| tags | [string] | no | |
|
|
4371
4369
|
| code | string | yes | |
|
|
4372
|
-
|
|
|
4370
|
+
| author | [CouponAuthor](#CouponAuthor) | no | |
|
|
4371
|
+
| validity | [Validity](#Validity) | yes | |
|
|
4373
4372
|
| date_meta | [CouponDateMeta](#CouponDateMeta) | no | |
|
|
4374
|
-
| identifiers | [Identifier](#Identifier) | yes | |
|
|
4375
|
-
| type_slug | string | yes | |
|
|
4376
4373
|
| restrictions | [Restrictions](#Restrictions) | no | |
|
|
4377
|
-
|
|
|
4378
|
-
|
|
|
4379
|
-
|
|
|
4380
|
-
|
|
|
4374
|
+
| action | [CouponAction](#CouponAction) | no | |
|
|
4375
|
+
| _schedule | [CouponSchedule](#CouponSchedule) | no | |
|
|
4376
|
+
| rule | [[Rule](#Rule)] | yes | |
|
|
4377
|
+
| ownership | [Ownership](#Ownership) | yes | |
|
|
4378
|
+
| display_meta | [DisplayMeta](#DisplayMeta) | yes | |
|
|
4379
|
+
| type_slug | string | yes | |
|
|
4380
|
+
| identifiers | [Identifier](#Identifier) | yes | |
|
|
4381
4381
|
|
|
4382
4382
|
---
|
|
4383
4383
|
|
|
@@ -4388,60 +4388,85 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
4388
4388
|
|
|
4389
4389
|
| Properties | Type | Nullable | Description |
|
|
4390
4390
|
| ---------- | ---- | -------- | ----------- |
|
|
4391
|
-
| schedule | [CouponSchedule](#CouponSchedule) | no | |
|
|
4392
4391
|
| archive | boolean | no | Send true to unpublish coupon |
|
|
4392
|
+
| schedule | [CouponSchedule](#CouponSchedule) | no | |
|
|
4393
4393
|
|
|
4394
4394
|
---
|
|
4395
4395
|
|
|
4396
4396
|
|
|
4397
4397
|
|
|
4398
4398
|
|
|
4399
|
-
#### [
|
|
4399
|
+
#### [CompareObject](#CompareObject)
|
|
4400
4400
|
|
|
4401
4401
|
| Properties | Type | Nullable | Description |
|
|
4402
4402
|
| ---------- | ---- | -------- | ----------- |
|
|
4403
|
-
|
|
|
4404
|
-
|
|
|
4405
|
-
|
|
|
4406
|
-
|
|
|
4407
|
-
|
|
|
4408
|
-
| cron | string | no | |
|
|
4403
|
+
| greater_than | number | no | |
|
|
4404
|
+
| less_than_equals | number | no | |
|
|
4405
|
+
| equals | number | no | |
|
|
4406
|
+
| less_than | number | no | |
|
|
4407
|
+
| greater_than_equals | number | no | |
|
|
4409
4408
|
|
|
4410
4409
|
---
|
|
4411
4410
|
|
|
4412
4411
|
|
|
4413
4412
|
|
|
4414
4413
|
|
|
4415
|
-
#### [
|
|
4414
|
+
#### [ItemCriteria](#ItemCriteria)
|
|
4416
4415
|
|
|
4417
4416
|
| Properties | Type | Nullable | Description |
|
|
4418
4417
|
| ---------- | ---- | -------- | ----------- |
|
|
4419
|
-
|
|
|
4420
|
-
|
|
|
4418
|
+
| buy_rules | [string] | no | |
|
|
4419
|
+
| item_exclude_brand | [number] | no | |
|
|
4420
|
+
| item_exclude_category | [number] | no | |
|
|
4421
|
+
| item_category | [number] | no | |
|
|
4422
|
+
| item_exclude_sku | [string] | no | |
|
|
4423
|
+
| all_items | boolean | no | |
|
|
4424
|
+
| item_id | [number] | no | |
|
|
4425
|
+
| item_store | [number] | no | |
|
|
4426
|
+
| cart_quantity | [CompareObject](#CompareObject) | no | |
|
|
4427
|
+
| cart_total | [CompareObject](#CompareObject) | no | |
|
|
4428
|
+
| item_brand | [number] | no | |
|
|
4429
|
+
| item_company | [number] | no | |
|
|
4430
|
+
| item_sku | [string] | no | |
|
|
4431
|
+
| item_exclude_store | [number] | no | |
|
|
4432
|
+
| item_exclude_company | [number] | no | |
|
|
4433
|
+
| item_size | [string] | no | |
|
|
4421
4434
|
|
|
4422
4435
|
---
|
|
4423
4436
|
|
|
4424
4437
|
|
|
4425
4438
|
|
|
4426
4439
|
|
|
4427
|
-
#### [
|
|
4440
|
+
#### [Ownership1](#Ownership1)
|
|
4428
4441
|
|
|
4429
4442
|
| Properties | Type | Nullable | Description |
|
|
4430
4443
|
| ---------- | ---- | -------- | ----------- |
|
|
4431
|
-
|
|
|
4432
|
-
|
|
|
4444
|
+
| payable_by | string | yes | |
|
|
4445
|
+
| payable_category | string | yes | |
|
|
4433
4446
|
|
|
4434
4447
|
---
|
|
4435
4448
|
|
|
4436
4449
|
|
|
4437
4450
|
|
|
4438
4451
|
|
|
4439
|
-
#### [
|
|
4452
|
+
#### [PromotionAction](#PromotionAction)
|
|
4440
4453
|
|
|
4441
4454
|
| Properties | Type | Nullable | Description |
|
|
4442
4455
|
| ---------- | ---- | -------- | ----------- |
|
|
4443
|
-
|
|
|
4444
|
-
|
|
|
4456
|
+
| action_type | string | yes | |
|
|
4457
|
+
| action_date | string | yes | |
|
|
4458
|
+
|
|
4459
|
+
---
|
|
4460
|
+
|
|
4461
|
+
|
|
4462
|
+
|
|
4463
|
+
|
|
4464
|
+
#### [PromotionAuthor](#PromotionAuthor)
|
|
4465
|
+
|
|
4466
|
+
| Properties | Type | Nullable | Description |
|
|
4467
|
+
| ---------- | ---- | -------- | ----------- |
|
|
4468
|
+
| created_by | string | no | |
|
|
4469
|
+
| modified_by | string | no | |
|
|
4445
4470
|
|
|
4446
4471
|
---
|
|
4447
4472
|
|
|
@@ -4463,9 +4488,9 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
4463
4488
|
|
|
4464
4489
|
| Properties | Type | Nullable | Description |
|
|
4465
4490
|
| ---------- | ---- | -------- | ----------- |
|
|
4466
|
-
| codes | [string] | no | |
|
|
4467
4491
|
| uses | [PaymentAllowValue1](#PaymentAllowValue1) | no | |
|
|
4468
4492
|
| type | string | yes | |
|
|
4493
|
+
| codes | [string] | no | |
|
|
4469
4494
|
|
|
4470
4495
|
---
|
|
4471
4496
|
|
|
@@ -4488,92 +4513,51 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
4488
4513
|
|
|
4489
4514
|
| Properties | Type | Nullable | Description |
|
|
4490
4515
|
| ---------- | ---- | -------- | ----------- |
|
|
4491
|
-
| remaining | [UsesRemaining1](#UsesRemaining1) | no | |
|
|
4492
4516
|
| maximum | [UsesRemaining1](#UsesRemaining1) | no | |
|
|
4517
|
+
| remaining | [UsesRemaining1](#UsesRemaining1) | no | |
|
|
4493
4518
|
|
|
4494
4519
|
---
|
|
4495
4520
|
|
|
4496
4521
|
|
|
4497
4522
|
|
|
4498
4523
|
|
|
4499
|
-
#### [
|
|
4500
|
-
|
|
4501
|
-
| Properties | Type | Nullable | Description |
|
|
4502
|
-
| ---------- | ---- | -------- | ----------- |
|
|
4503
|
-
| return_allowed | boolean | no | |
|
|
4504
|
-
| cancellation_allowed | boolean | no | |
|
|
4505
|
-
|
|
4506
|
-
---
|
|
4507
|
-
|
|
4508
|
-
|
|
4509
|
-
|
|
4510
|
-
|
|
4511
|
-
#### [Restrictions1](#Restrictions1)
|
|
4512
|
-
|
|
4513
|
-
| Properties | Type | Nullable | Description |
|
|
4514
|
-
| ---------- | ---- | -------- | ----------- |
|
|
4515
|
-
| user_registered | [UserRegistered](#UserRegistered) | no | |
|
|
4516
|
-
| user_groups | [number] | no | |
|
|
4517
|
-
| user_id | [string] | no | |
|
|
4518
|
-
| payments | [[PromotionPaymentModes](#PromotionPaymentModes)] | no | |
|
|
4519
|
-
| platforms | [string] | no | |
|
|
4520
|
-
| uses | [UsesRestriction1](#UsesRestriction1) | yes | |
|
|
4521
|
-
| order_quantity | number | no | |
|
|
4522
|
-
| anonymous_users | boolean | no | |
|
|
4523
|
-
| post_order | [PostOrder1](#PostOrder1) | no | |
|
|
4524
|
-
|
|
4525
|
-
---
|
|
4526
|
-
|
|
4527
|
-
|
|
4528
|
-
|
|
4529
|
-
|
|
4530
|
-
#### [PromotionAction](#PromotionAction)
|
|
4524
|
+
#### [UserRegistered](#UserRegistered)
|
|
4531
4525
|
|
|
4532
4526
|
| Properties | Type | Nullable | Description |
|
|
4533
4527
|
| ---------- | ---- | -------- | ----------- |
|
|
4534
|
-
|
|
|
4535
|
-
|
|
|
4528
|
+
| start | string | no | |
|
|
4529
|
+
| end | string | no | |
|
|
4536
4530
|
|
|
4537
4531
|
---
|
|
4538
4532
|
|
|
4539
4533
|
|
|
4540
4534
|
|
|
4541
4535
|
|
|
4542
|
-
#### [
|
|
4536
|
+
#### [PostOrder1](#PostOrder1)
|
|
4543
4537
|
|
|
4544
4538
|
| Properties | Type | Nullable | Description |
|
|
4545
4539
|
| ---------- | ---- | -------- | ----------- |
|
|
4546
|
-
|
|
|
4547
|
-
|
|
|
4548
|
-
| equals | number | no | |
|
|
4549
|
-
| greater_than_equals | number | no | |
|
|
4550
|
-
| less_than_equals | number | no | |
|
|
4540
|
+
| return_allowed | boolean | no | |
|
|
4541
|
+
| cancellation_allowed | boolean | no | |
|
|
4551
4542
|
|
|
4552
4543
|
---
|
|
4553
4544
|
|
|
4554
4545
|
|
|
4555
4546
|
|
|
4556
4547
|
|
|
4557
|
-
#### [
|
|
4548
|
+
#### [Restrictions1](#Restrictions1)
|
|
4558
4549
|
|
|
4559
4550
|
| Properties | Type | Nullable | Description |
|
|
4560
4551
|
| ---------- | ---- | -------- | ----------- |
|
|
4561
|
-
|
|
|
4562
|
-
|
|
|
4563
|
-
|
|
|
4564
|
-
|
|
|
4565
|
-
|
|
|
4566
|
-
|
|
|
4567
|
-
|
|
|
4568
|
-
|
|
|
4569
|
-
|
|
|
4570
|
-
| item_size | [string] | no | |
|
|
4571
|
-
| item_category | [number] | no | |
|
|
4572
|
-
| item_exclude_category | [number] | no | |
|
|
4573
|
-
| cart_total | [CompareObject](#CompareObject) | no | |
|
|
4574
|
-
| all_items | boolean | no | |
|
|
4575
|
-
| item_exclude_brand | [number] | no | |
|
|
4576
|
-
| item_store | [number] | no | |
|
|
4552
|
+
| payments | [[PromotionPaymentModes](#PromotionPaymentModes)] | no | |
|
|
4553
|
+
| uses | [UsesRestriction1](#UsesRestriction1) | yes | |
|
|
4554
|
+
| platforms | [string] | no | |
|
|
4555
|
+
| user_id | [string] | no | |
|
|
4556
|
+
| user_registered | [UserRegistered](#UserRegistered) | no | |
|
|
4557
|
+
| order_quantity | number | no | |
|
|
4558
|
+
| post_order | [PostOrder1](#PostOrder1) | no | |
|
|
4559
|
+
| user_groups | [number] | no | |
|
|
4560
|
+
| anonymous_users | boolean | no | |
|
|
4577
4561
|
|
|
4578
4562
|
---
|
|
4579
4563
|
|
|
@@ -4584,13 +4568,13 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
4584
4568
|
|
|
4585
4569
|
| Properties | Type | Nullable | Description |
|
|
4586
4570
|
| ---------- | ---- | -------- | ----------- |
|
|
4571
|
+
| discount_price | number | no | |
|
|
4572
|
+
| min_offer_quantity | number | no | |
|
|
4587
4573
|
| discount_percentage | number | no | |
|
|
4588
|
-
| max_offer_quantity | number | no | |
|
|
4589
|
-
| max_discount_amount | number | no | |
|
|
4590
4574
|
| code | string | no | |
|
|
4591
|
-
|
|
|
4575
|
+
| max_discount_amount | number | no | |
|
|
4576
|
+
| max_offer_quantity | number | no | |
|
|
4592
4577
|
| discount_amount | number | no | |
|
|
4593
|
-
| discount_price | number | no | |
|
|
4594
4578
|
|
|
4595
4579
|
---
|
|
4596
4580
|
|
|
@@ -4601,10 +4585,10 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
4601
4585
|
|
|
4602
4586
|
| Properties | Type | Nullable | Description |
|
|
4603
4587
|
| ---------- | ---- | -------- | ----------- |
|
|
4604
|
-
| item_criteria | [ItemCriteria](#ItemCriteria) | yes | |
|
|
4605
4588
|
| buy_condition | string | yes | |
|
|
4606
|
-
|
|
|
4589
|
+
| item_criteria | [ItemCriteria](#ItemCriteria) | yes | |
|
|
4607
4590
|
| discount_type | string | yes | |
|
|
4591
|
+
| offer | [DiscountOffer](#DiscountOffer) | yes | |
|
|
4608
4592
|
|
|
4609
4593
|
---
|
|
4610
4594
|
|
|
@@ -4623,12 +4607,28 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
4623
4607
|
|
|
4624
4608
|
|
|
4625
4609
|
|
|
4626
|
-
#### [
|
|
4610
|
+
#### [Visibility](#Visibility)
|
|
4627
4611
|
|
|
4628
4612
|
| Properties | Type | Nullable | Description |
|
|
4629
4613
|
| ---------- | ---- | -------- | ----------- |
|
|
4630
|
-
|
|
|
4631
|
-
|
|
|
4614
|
+
| coupon_list | boolean | yes | |
|
|
4615
|
+
| pdp | boolean | yes | |
|
|
4616
|
+
|
|
4617
|
+
---
|
|
4618
|
+
|
|
4619
|
+
|
|
4620
|
+
|
|
4621
|
+
|
|
4622
|
+
#### [PromotionSchedule](#PromotionSchedule)
|
|
4623
|
+
|
|
4624
|
+
| Properties | Type | Nullable | Description |
|
|
4625
|
+
| ---------- | ---- | -------- | ----------- |
|
|
4626
|
+
| cron | string | no | |
|
|
4627
|
+
| start | string | yes | |
|
|
4628
|
+
| end | string | no | |
|
|
4629
|
+
| duration | number | no | |
|
|
4630
|
+
| next_schedule | [string] | no | |
|
|
4631
|
+
| published | boolean | yes | |
|
|
4632
4632
|
|
|
4633
4633
|
---
|
|
4634
4634
|
|
|
@@ -4640,8 +4640,8 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
4640
4640
|
| Properties | Type | Nullable | Description |
|
|
4641
4641
|
| ---------- | ---- | -------- | ----------- |
|
|
4642
4642
|
| offer_text | string | no | |
|
|
4643
|
-
| name | string | no | |
|
|
4644
4643
|
| description | string | no | |
|
|
4644
|
+
| name | string | no | |
|
|
4645
4645
|
|
|
4646
4646
|
---
|
|
4647
4647
|
|
|
@@ -4652,27 +4652,27 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
4652
4652
|
|
|
4653
4653
|
| Properties | Type | Nullable | Description |
|
|
4654
4654
|
| ---------- | ---- | -------- | ----------- |
|
|
4655
|
-
|
|
|
4655
|
+
| buy_rules | [String: [ItemCriteria](#ItemCriteria)] | yes | |
|
|
4656
|
+
| _custom_json | string | no | |
|
|
4657
|
+
| ownership | [Ownership1](#Ownership1) | yes | |
|
|
4658
|
+
| apply_priority | number | no | |
|
|
4659
|
+
| post_order_action | [PromotionAction](#PromotionAction) | no | |
|
|
4660
|
+
| promotion_type | string | yes | |
|
|
4656
4661
|
| apply_all_discount | boolean | no | |
|
|
4657
4662
|
| application_id | string | yes | |
|
|
4663
|
+
| currency | string | no | |
|
|
4658
4664
|
| author | [PromotionAuthor](#PromotionAuthor) | no | |
|
|
4659
|
-
| apply_priority | number | no | |
|
|
4660
|
-
| stackable | boolean | no | |
|
|
4661
|
-
| visiblility | [Visibility](#Visibility) | no | |
|
|
4662
4665
|
| restrictions | [Restrictions1](#Restrictions1) | no | |
|
|
4663
|
-
| _custom_json | string | no | |
|
|
4664
|
-
| mode | string | yes | |
|
|
4665
|
-
| post_order_action | [PromotionAction](#PromotionAction) | no | |
|
|
4666
4666
|
| discount_rules | [[DiscountRule](#DiscountRule)] | yes | |
|
|
4667
|
-
|
|
|
4668
|
-
|
|
|
4667
|
+
| mode | string | yes | |
|
|
4668
|
+
| apply_exclusive | string | no | |
|
|
4669
4669
|
| date_meta | [PromotionDateMeta](#PromotionDateMeta) | no | |
|
|
4670
|
-
|
|
|
4671
|
-
| display_meta | [DisplayMeta1](#DisplayMeta1) | yes | |
|
|
4672
|
-
| currency | string | no | |
|
|
4670
|
+
| stackable | boolean | no | |
|
|
4673
4671
|
| promo_group | string | yes | |
|
|
4674
|
-
|
|
|
4675
|
-
|
|
|
4672
|
+
| code | string | no | |
|
|
4673
|
+
| visiblility | [Visibility](#Visibility) | no | |
|
|
4674
|
+
| _schedule | [PromotionSchedule](#PromotionSchedule) | no | |
|
|
4675
|
+
| display_meta | [DisplayMeta1](#DisplayMeta1) | yes | |
|
|
4676
4676
|
|
|
4677
4677
|
---
|
|
4678
4678
|
|
|
@@ -4683,8 +4683,8 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
4683
4683
|
|
|
4684
4684
|
| Properties | Type | Nullable | Description |
|
|
4685
4685
|
| ---------- | ---- | -------- | ----------- |
|
|
4686
|
-
| items | [PromotionListItem](#PromotionListItem) | no | |
|
|
4687
4686
|
| page | [Page](#Page) | no | |
|
|
4687
|
+
| items | [PromotionListItem](#PromotionListItem) | no | |
|
|
4688
4688
|
|
|
4689
4689
|
---
|
|
4690
4690
|
|
|
@@ -4695,27 +4695,27 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
4695
4695
|
|
|
4696
4696
|
| Properties | Type | Nullable | Description |
|
|
4697
4697
|
| ---------- | ---- | -------- | ----------- |
|
|
4698
|
-
|
|
|
4698
|
+
| buy_rules | [String: [ItemCriteria](#ItemCriteria)] | yes | |
|
|
4699
|
+
| _custom_json | string | no | |
|
|
4700
|
+
| ownership | [Ownership1](#Ownership1) | yes | |
|
|
4701
|
+
| apply_priority | number | no | |
|
|
4702
|
+
| post_order_action | [PromotionAction](#PromotionAction) | no | |
|
|
4703
|
+
| promotion_type | string | yes | |
|
|
4699
4704
|
| apply_all_discount | boolean | no | |
|
|
4700
4705
|
| application_id | string | yes | |
|
|
4706
|
+
| currency | string | no | |
|
|
4701
4707
|
| author | [PromotionAuthor](#PromotionAuthor) | no | |
|
|
4702
|
-
| apply_priority | number | no | |
|
|
4703
|
-
| stackable | boolean | no | |
|
|
4704
|
-
| visiblility | [Visibility](#Visibility) | no | |
|
|
4705
4708
|
| restrictions | [Restrictions1](#Restrictions1) | no | |
|
|
4706
|
-
| _custom_json | string | no | |
|
|
4707
|
-
| mode | string | yes | |
|
|
4708
|
-
| post_order_action | [PromotionAction](#PromotionAction) | no | |
|
|
4709
4709
|
| discount_rules | [[DiscountRule](#DiscountRule)] | yes | |
|
|
4710
|
-
|
|
|
4711
|
-
|
|
|
4710
|
+
| mode | string | yes | |
|
|
4711
|
+
| apply_exclusive | string | no | |
|
|
4712
4712
|
| date_meta | [PromotionDateMeta](#PromotionDateMeta) | no | |
|
|
4713
|
-
|
|
|
4714
|
-
| display_meta | [DisplayMeta1](#DisplayMeta1) | yes | |
|
|
4715
|
-
| currency | string | no | |
|
|
4713
|
+
| stackable | boolean | no | |
|
|
4716
4714
|
| promo_group | string | yes | |
|
|
4717
|
-
|
|
|
4718
|
-
|
|
|
4715
|
+
| code | string | no | |
|
|
4716
|
+
| visiblility | [Visibility](#Visibility) | no | |
|
|
4717
|
+
| _schedule | [PromotionSchedule](#PromotionSchedule) | no | |
|
|
4718
|
+
| display_meta | [DisplayMeta1](#DisplayMeta1) | yes | |
|
|
4719
4719
|
|
|
4720
4720
|
---
|
|
4721
4721
|
|
|
@@ -4726,27 +4726,27 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
4726
4726
|
|
|
4727
4727
|
| Properties | Type | Nullable | Description |
|
|
4728
4728
|
| ---------- | ---- | -------- | ----------- |
|
|
4729
|
-
|
|
|
4729
|
+
| buy_rules | [String: [ItemCriteria](#ItemCriteria)] | yes | |
|
|
4730
|
+
| _custom_json | string | no | |
|
|
4731
|
+
| ownership | [Ownership1](#Ownership1) | yes | |
|
|
4732
|
+
| apply_priority | number | no | |
|
|
4733
|
+
| post_order_action | [PromotionAction](#PromotionAction) | no | |
|
|
4734
|
+
| promotion_type | string | yes | |
|
|
4730
4735
|
| apply_all_discount | boolean | no | |
|
|
4731
4736
|
| application_id | string | yes | |
|
|
4737
|
+
| currency | string | no | |
|
|
4732
4738
|
| author | [PromotionAuthor](#PromotionAuthor) | no | |
|
|
4733
|
-
| apply_priority | number | no | |
|
|
4734
|
-
| stackable | boolean | no | |
|
|
4735
|
-
| visiblility | [Visibility](#Visibility) | no | |
|
|
4736
4739
|
| restrictions | [Restrictions1](#Restrictions1) | no | |
|
|
4737
|
-
| _custom_json | string | no | |
|
|
4738
|
-
| mode | string | yes | |
|
|
4739
|
-
| post_order_action | [PromotionAction](#PromotionAction) | no | |
|
|
4740
4740
|
| discount_rules | [[DiscountRule](#DiscountRule)] | yes | |
|
|
4741
|
-
|
|
|
4742
|
-
|
|
|
4741
|
+
| mode | string | yes | |
|
|
4742
|
+
| apply_exclusive | string | no | |
|
|
4743
4743
|
| date_meta | [PromotionDateMeta](#PromotionDateMeta) | no | |
|
|
4744
|
-
|
|
|
4745
|
-
| display_meta | [DisplayMeta1](#DisplayMeta1) | yes | |
|
|
4746
|
-
| currency | string | no | |
|
|
4744
|
+
| stackable | boolean | no | |
|
|
4747
4745
|
| promo_group | string | yes | |
|
|
4748
|
-
|
|
|
4749
|
-
|
|
|
4746
|
+
| code | string | no | |
|
|
4747
|
+
| visiblility | [Visibility](#Visibility) | no | |
|
|
4748
|
+
| _schedule | [PromotionSchedule](#PromotionSchedule) | no | |
|
|
4749
|
+
| display_meta | [DisplayMeta1](#DisplayMeta1) | yes | |
|
|
4750
4750
|
|
|
4751
4751
|
---
|
|
4752
4752
|
|
|
@@ -4757,8 +4757,8 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
4757
4757
|
|
|
4758
4758
|
| Properties | Type | Nullable | Description |
|
|
4759
4759
|
| ---------- | ---- | -------- | ----------- |
|
|
4760
|
-
| schedule | [PromotionSchedule](#PromotionSchedule) | no | |
|
|
4761
4760
|
| archive | boolean | no | Send true to unpublish promotion |
|
|
4761
|
+
| schedule | [PromotionSchedule](#PromotionSchedule) | no | |
|
|
4762
4762
|
|
|
4763
4763
|
---
|
|
4764
4764
|
|
|
@@ -4770,8 +4770,8 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
4770
4770
|
| Properties | Type | Nullable | Description |
|
|
4771
4771
|
| ---------- | ---- | -------- | ----------- |
|
|
4772
4772
|
| size | string | yes | |
|
|
4773
|
-
| quantity | number | no | |
|
|
4774
4773
|
| product_id | string | yes | |
|
|
4774
|
+
| quantity | number | no | |
|
|
4775
4775
|
|
|
4776
4776
|
---
|
|
4777
4777
|
|
|
@@ -4789,91 +4789,79 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
4789
4789
|
|
|
4790
4790
|
|
|
4791
4791
|
|
|
4792
|
-
#### [
|
|
4793
|
-
|
|
4794
|
-
| Properties | Type | Nullable | Description |
|
|
4795
|
-
| ---------- | ---- | -------- | ----------- |
|
|
4796
|
-
| currency_symbol | string | no | |
|
|
4797
|
-
| marked | number | no | |
|
|
4798
|
-
| currency_code | string | no | |
|
|
4799
|
-
| add_on | number | no | |
|
|
4800
|
-
| effective | number | no | |
|
|
4801
|
-
| selling | number | no | |
|
|
4802
|
-
|
|
4803
|
-
---
|
|
4804
|
-
|
|
4805
|
-
|
|
4806
|
-
|
|
4807
|
-
|
|
4808
|
-
#### [ProductPriceInfo](#ProductPriceInfo)
|
|
4792
|
+
#### [ProductImage](#ProductImage)
|
|
4809
4793
|
|
|
4810
4794
|
| Properties | Type | Nullable | Description |
|
|
4811
4795
|
| ---------- | ---- | -------- | ----------- |
|
|
4812
|
-
|
|
|
4813
|
-
|
|
|
4796
|
+
| secure_url | string | no | |
|
|
4797
|
+
| aspect_ratio | string | no | |
|
|
4798
|
+
| url | string | no | |
|
|
4814
4799
|
|
|
4815
4800
|
---
|
|
4816
4801
|
|
|
4817
4802
|
|
|
4818
4803
|
|
|
4819
4804
|
|
|
4820
|
-
#### [
|
|
4805
|
+
#### [ActionQuery](#ActionQuery)
|
|
4821
4806
|
|
|
4822
4807
|
| Properties | Type | Nullable | Description |
|
|
4823
4808
|
| ---------- | ---- | -------- | ----------- |
|
|
4824
|
-
|
|
|
4825
|
-
| payable_by | string | no | promo amount bearable party |
|
|
4809
|
+
| product_slug | [string] | no | Contains list of product slug |
|
|
4826
4810
|
|
|
4827
4811
|
---
|
|
4828
4812
|
|
|
4829
4813
|
|
|
4830
4814
|
|
|
4831
4815
|
|
|
4832
|
-
#### [
|
|
4816
|
+
#### [ProductAction](#ProductAction)
|
|
4833
4817
|
|
|
4834
4818
|
| Properties | Type | Nullable | Description |
|
|
4835
4819
|
| ---------- | ---- | -------- | ----------- |
|
|
4836
|
-
|
|
|
4837
|
-
|
|
|
4838
|
-
|
|
|
4839
|
-
| amount | number | no | Per unit discount amount applied with current promotion |
|
|
4840
|
-
| promotion_type | string | no | Promotion type of current promotion |
|
|
4841
|
-
| mrp_promotion | boolean | no | If applied promotion is applied on product MRP or ESP |
|
|
4842
|
-
| offer_text | string | no | Offer text of current promotion |
|
|
4820
|
+
| query | [ActionQuery](#ActionQuery) | no | |
|
|
4821
|
+
| type | string | no | |
|
|
4822
|
+
| url | string | no | |
|
|
4843
4823
|
|
|
4844
4824
|
---
|
|
4845
4825
|
|
|
4846
4826
|
|
|
4847
4827
|
|
|
4848
4828
|
|
|
4849
|
-
#### [
|
|
4829
|
+
#### [CategoryInfo](#CategoryInfo)
|
|
4850
4830
|
|
|
4851
4831
|
| Properties | Type | Nullable | Description |
|
|
4852
4832
|
| ---------- | ---- | -------- | ----------- |
|
|
4853
|
-
|
|
|
4833
|
+
| uid | number | no | Product Category Id |
|
|
4834
|
+
| name | string | no | |
|
|
4854
4835
|
|
|
4855
4836
|
---
|
|
4856
4837
|
|
|
4857
4838
|
|
|
4858
4839
|
|
|
4859
4840
|
|
|
4860
|
-
#### [
|
|
4841
|
+
#### [BaseInfo](#BaseInfo)
|
|
4861
4842
|
|
|
4862
4843
|
| Properties | Type | Nullable | Description |
|
|
4863
4844
|
| ---------- | ---- | -------- | ----------- |
|
|
4864
|
-
|
|
|
4845
|
+
| uid | number | no | |
|
|
4846
|
+
| name | string | no | |
|
|
4865
4847
|
|
|
4866
4848
|
---
|
|
4867
4849
|
|
|
4868
4850
|
|
|
4869
4851
|
|
|
4870
4852
|
|
|
4871
|
-
#### [
|
|
4853
|
+
#### [CartProduct](#CartProduct)
|
|
4872
4854
|
|
|
4873
4855
|
| Properties | Type | Nullable | Description |
|
|
4874
4856
|
| ---------- | ---- | -------- | ----------- |
|
|
4857
|
+
| images | [[ProductImage](#ProductImage)] | no | |
|
|
4875
4858
|
| name | string | no | |
|
|
4859
|
+
| type | string | no | |
|
|
4876
4860
|
| uid | number | no | |
|
|
4861
|
+
| action | [ProductAction](#ProductAction) | no | |
|
|
4862
|
+
| categories | [[CategoryInfo](#CategoryInfo)] | no | |
|
|
4863
|
+
| brand | [BaseInfo](#BaseInfo) | no | |
|
|
4864
|
+
| slug | string | no | Unique product url name generated via product name and other meta data |
|
|
4877
4865
|
|
|
4878
4866
|
---
|
|
4879
4867
|
|
|
@@ -4884,10 +4872,10 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
4884
4872
|
|
|
4885
4873
|
| Properties | Type | Nullable | Description |
|
|
4886
4874
|
| ---------- | ---- | -------- | ----------- |
|
|
4875
|
+
| currency_code | string | no | |
|
|
4876
|
+
| marked | number | no | |
|
|
4887
4877
|
| effective | number | no | |
|
|
4888
4878
|
| currency_symbol | string | no | |
|
|
4889
|
-
| marked | number | no | |
|
|
4890
|
-
| currency_code | string | no | |
|
|
4891
4879
|
|
|
4892
4880
|
---
|
|
4893
4881
|
|
|
@@ -4910,155 +4898,151 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
4910
4898
|
|
|
4911
4899
|
| Properties | Type | Nullable | Description |
|
|
4912
4900
|
| ---------- | ---- | -------- | ----------- |
|
|
4913
|
-
| extra_meta | string | no | |
|
|
4914
|
-
| quantity | number | no | |
|
|
4915
|
-
| product_group_tags | [string] | no | |
|
|
4916
|
-
| store | [BaseInfo](#BaseInfo) | no | |
|
|
4917
|
-
| seller | [BaseInfo](#BaseInfo) | no | |
|
|
4918
|
-
| price | [ArticlePriceInfo](#ArticlePriceInfo) | no | |
|
|
4919
4901
|
| size | string | no | |
|
|
4920
|
-
| uid | string | no | |
|
|
4921
|
-
| _custom_json | string | no | |
|
|
4922
4902
|
| parent_item_identifiers | string | no | |
|
|
4903
|
+
| product_group_tags | [string] | no | |
|
|
4904
|
+
| _custom_json | string | no | |
|
|
4923
4905
|
| type | string | no | |
|
|
4906
|
+
| store | [BaseInfo](#BaseInfo) | no | |
|
|
4907
|
+
| extra_meta | string | no | |
|
|
4908
|
+
| uid | string | no | |
|
|
4909
|
+
| price | [ArticlePriceInfo](#ArticlePriceInfo) | no | |
|
|
4910
|
+
| seller | [BaseInfo](#BaseInfo) | no | |
|
|
4911
|
+
| quantity | number | no | |
|
|
4924
4912
|
|
|
4925
4913
|
---
|
|
4926
4914
|
|
|
4927
4915
|
|
|
4928
4916
|
|
|
4929
4917
|
|
|
4930
|
-
#### [
|
|
4918
|
+
#### [ProductAvailability](#ProductAvailability)
|
|
4931
4919
|
|
|
4932
4920
|
| Properties | Type | Nullable | Description |
|
|
4933
4921
|
| ---------- | ---- | -------- | ----------- |
|
|
4934
|
-
|
|
|
4935
|
-
|
|
|
4922
|
+
| deliverable | boolean | no | |
|
|
4923
|
+
| other_store_quantity | number | no | |
|
|
4924
|
+
| sizes | [string] | no | |
|
|
4925
|
+
| is_valid | boolean | no | |
|
|
4926
|
+
| out_of_stock | boolean | no | |
|
|
4936
4927
|
|
|
4937
4928
|
---
|
|
4938
4929
|
|
|
4939
4930
|
|
|
4940
4931
|
|
|
4941
4932
|
|
|
4942
|
-
#### [
|
|
4933
|
+
#### [PromoMeta](#PromoMeta)
|
|
4943
4934
|
|
|
4944
4935
|
| Properties | Type | Nullable | Description |
|
|
4945
4936
|
| ---------- | ---- | -------- | ----------- |
|
|
4946
|
-
|
|
|
4937
|
+
| message | string | no | |
|
|
4947
4938
|
|
|
4948
4939
|
---
|
|
4949
4940
|
|
|
4950
4941
|
|
|
4951
4942
|
|
|
4952
4943
|
|
|
4953
|
-
#### [
|
|
4944
|
+
#### [Ownership2](#Ownership2)
|
|
4954
4945
|
|
|
4955
4946
|
| Properties | Type | Nullable | Description |
|
|
4956
4947
|
| ---------- | ---- | -------- | ----------- |
|
|
4957
|
-
|
|
|
4958
|
-
|
|
|
4959
|
-
| type | string | no | |
|
|
4948
|
+
| payable_by | string | no | promo amount bearable party |
|
|
4949
|
+
| payable_category | string | no | promo amount payable category |
|
|
4960
4950
|
|
|
4961
4951
|
---
|
|
4962
4952
|
|
|
4963
4953
|
|
|
4964
4954
|
|
|
4965
4955
|
|
|
4966
|
-
#### [
|
|
4956
|
+
#### [AppliedPromotion](#AppliedPromotion)
|
|
4967
4957
|
|
|
4968
4958
|
| Properties | Type | Nullable | Description |
|
|
4969
4959
|
| ---------- | ---- | -------- | ----------- |
|
|
4970
|
-
|
|
|
4971
|
-
|
|
|
4972
|
-
|
|
|
4960
|
+
| amount | number | no | Per unit discount amount applied with current promotion |
|
|
4961
|
+
| offer_text | string | no | Offer text of current promotion |
|
|
4962
|
+
| promotion_type | string | no | Promotion type of current promotion |
|
|
4963
|
+
| ownership | [Ownership2](#Ownership2) | no | Ownership of promotion |
|
|
4964
|
+
| article_quantity | number | no | Quantity of article on which promotion is applicable |
|
|
4965
|
+
| mrp_promotion | boolean | no | If applied promotion is applied on product MRP or ESP |
|
|
4966
|
+
| promo_id | string | no | Promotion id |
|
|
4973
4967
|
|
|
4974
4968
|
---
|
|
4975
4969
|
|
|
4976
4970
|
|
|
4977
4971
|
|
|
4978
4972
|
|
|
4979
|
-
#### [
|
|
4973
|
+
#### [ProductPrice](#ProductPrice)
|
|
4980
4974
|
|
|
4981
4975
|
| Properties | Type | Nullable | Description |
|
|
4982
4976
|
| ---------- | ---- | -------- | ----------- |
|
|
4983
|
-
|
|
|
4984
|
-
|
|
|
4985
|
-
|
|
|
4986
|
-
|
|
|
4987
|
-
|
|
|
4988
|
-
|
|
|
4989
|
-
| brand | [BaseInfo](#BaseInfo) | no | |
|
|
4990
|
-
| type | string | no | |
|
|
4977
|
+
| selling | number | no | |
|
|
4978
|
+
| currency_code | string | no | |
|
|
4979
|
+
| add_on | number | no | |
|
|
4980
|
+
| currency_symbol | string | no | |
|
|
4981
|
+
| marked | number | no | |
|
|
4982
|
+
| effective | number | no | |
|
|
4991
4983
|
|
|
4992
4984
|
---
|
|
4993
4985
|
|
|
4994
4986
|
|
|
4995
4987
|
|
|
4996
4988
|
|
|
4997
|
-
#### [
|
|
4989
|
+
#### [ProductPriceInfo](#ProductPriceInfo)
|
|
4998
4990
|
|
|
4999
4991
|
| Properties | Type | Nullable | Description |
|
|
5000
4992
|
| ---------- | ---- | -------- | ----------- |
|
|
5001
|
-
|
|
|
5002
|
-
|
|
|
5003
|
-
| deliverable | boolean | no | |
|
|
5004
|
-
| is_valid | boolean | no | |
|
|
5005
|
-
| sizes | [string] | no | |
|
|
4993
|
+
| converted | [ProductPrice](#ProductPrice) | no | |
|
|
4994
|
+
| base | [ProductPrice](#ProductPrice) | no | |
|
|
5006
4995
|
|
|
5007
4996
|
---
|
|
5008
4997
|
|
|
5009
4998
|
|
|
5010
4999
|
|
|
5011
5000
|
|
|
5012
|
-
#### [
|
|
5001
|
+
#### [CartProductIdentifer](#CartProductIdentifer)
|
|
5013
5002
|
|
|
5014
5003
|
| Properties | Type | Nullable | Description |
|
|
5015
5004
|
| ---------- | ---- | -------- | ----------- |
|
|
5016
|
-
|
|
|
5017
|
-
| coupon_message | string | no | |
|
|
5018
|
-
| is_set | boolean | no | |
|
|
5019
|
-
| promotions_applied | [[AppliedPromotion](#AppliedPromotion)] | no | |
|
|
5020
|
-
| quantity | number | no | |
|
|
5021
|
-
| discount | string | no | |
|
|
5022
|
-
| promo_meta | [PromoMeta](#PromoMeta) | no | |
|
|
5023
|
-
| price | [ProductPriceInfo](#ProductPriceInfo) | no | |
|
|
5024
|
-
| identifiers | [CartProductIdentifer](#CartProductIdentifer) | yes | |
|
|
5025
|
-
| article | [ProductArticle](#ProductArticle) | no | |
|
|
5026
|
-
| message | string | no | |
|
|
5027
|
-
| bulk_offer | string | no | |
|
|
5028
|
-
| product | [CartProduct](#CartProduct) | no | |
|
|
5029
|
-
| key | string | no | |
|
|
5030
|
-
| parent_item_identifiers | string | no | |
|
|
5031
|
-
| availability | [ProductAvailability](#ProductAvailability) | no | |
|
|
5005
|
+
| identifier | string | no | Article idenfier generated by cart |
|
|
5032
5006
|
|
|
5033
5007
|
---
|
|
5034
5008
|
|
|
5035
5009
|
|
|
5036
5010
|
|
|
5037
5011
|
|
|
5038
|
-
#### [
|
|
5012
|
+
#### [CartProductInfo](#CartProductInfo)
|
|
5039
5013
|
|
|
5040
5014
|
| Properties | Type | Nullable | Description |
|
|
5041
5015
|
| ---------- | ---- | -------- | ----------- |
|
|
5042
|
-
|
|
|
5043
|
-
|
|
|
5044
|
-
|
|
|
5045
|
-
|
|
|
5016
|
+
| parent_item_identifiers | string | no | |
|
|
5017
|
+
| product | [CartProduct](#CartProduct) | no | |
|
|
5018
|
+
| article | [ProductArticle](#ProductArticle) | no | |
|
|
5019
|
+
| bulk_offer | string | no | |
|
|
5020
|
+
| availability | [ProductAvailability](#ProductAvailability) | no | |
|
|
5021
|
+
| coupon_message | string | no | |
|
|
5022
|
+
| promo_meta | [PromoMeta](#PromoMeta) | no | |
|
|
5023
|
+
| key | string | no | |
|
|
5024
|
+
| is_set | boolean | no | |
|
|
5025
|
+
| discount | string | no | |
|
|
5026
|
+
| promotions_applied | [[AppliedPromotion](#AppliedPromotion)] | no | |
|
|
5027
|
+
| price | [ProductPriceInfo](#ProductPriceInfo) | no | |
|
|
5028
|
+
| message | string | no | |
|
|
5029
|
+
| price_per_unit | [ProductPriceInfo](#ProductPriceInfo) | no | |
|
|
5030
|
+
| quantity | number | no | |
|
|
5031
|
+
| identifiers | [CartProductIdentifer](#CartProductIdentifer) | yes | |
|
|
5046
5032
|
|
|
5047
5033
|
---
|
|
5048
5034
|
|
|
5049
5035
|
|
|
5050
5036
|
|
|
5051
5037
|
|
|
5052
|
-
#### [
|
|
5038
|
+
#### [LoyaltyPoints](#LoyaltyPoints)
|
|
5053
5039
|
|
|
5054
5040
|
| Properties | Type | Nullable | Description |
|
|
5055
5041
|
| ---------- | ---- | -------- | ----------- |
|
|
5056
|
-
|
|
|
5057
|
-
|
|
|
5058
|
-
|
|
|
5059
|
-
|
|
|
5060
|
-
| key | string | no | |
|
|
5061
|
-
| value | number | no | |
|
|
5042
|
+
| total | number | no | |
|
|
5043
|
+
| description | string | no | |
|
|
5044
|
+
| applicable | number | no | |
|
|
5045
|
+
| is_applied | boolean | no | |
|
|
5062
5046
|
|
|
5063
5047
|
---
|
|
5064
5048
|
|
|
@@ -5069,18 +5053,34 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
5069
5053
|
|
|
5070
5054
|
| Properties | Type | Nullable | Description |
|
|
5071
5055
|
| ---------- | ---- | -------- | ----------- |
|
|
5072
|
-
| subtotal | number | no | |
|
|
5073
|
-
| discount | number | no | |
|
|
5074
|
-
| gst_charges | number | no | |
|
|
5075
|
-
| total | number | no | |
|
|
5076
|
-
| vog | number | no | |
|
|
5077
|
-
| you_saved | number | no | |
|
|
5078
|
-
| fynd_cash | number | no | |
|
|
5079
5056
|
| coupon | number | no | |
|
|
5080
|
-
|
|
|
5057
|
+
| total | number | no | |
|
|
5081
5058
|
| delivery_charge | number | no | |
|
|
5082
5059
|
| mrp_total | number | no | |
|
|
5083
5060
|
| convenience_fee | number | no | |
|
|
5061
|
+
| discount | number | no | |
|
|
5062
|
+
| you_saved | number | no | |
|
|
5063
|
+
| vog | number | no | |
|
|
5064
|
+
| gst_charges | number | no | |
|
|
5065
|
+
| cod_charge | number | no | |
|
|
5066
|
+
| fynd_cash | number | no | |
|
|
5067
|
+
| subtotal | number | no | |
|
|
5068
|
+
|
|
5069
|
+
---
|
|
5070
|
+
|
|
5071
|
+
|
|
5072
|
+
|
|
5073
|
+
|
|
5074
|
+
#### [DisplayBreakup](#DisplayBreakup)
|
|
5075
|
+
|
|
5076
|
+
| Properties | Type | Nullable | Description |
|
|
5077
|
+
| ---------- | ---- | -------- | ----------- |
|
|
5078
|
+
| value | number | no | |
|
|
5079
|
+
| display | string | no | |
|
|
5080
|
+
| currency_code | string | no | |
|
|
5081
|
+
| key | string | no | |
|
|
5082
|
+
| message | [string] | no | |
|
|
5083
|
+
| currency_symbol | string | no | |
|
|
5084
5084
|
|
|
5085
5085
|
---
|
|
5086
5086
|
|
|
@@ -5091,12 +5091,12 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
5091
5091
|
|
|
5092
5092
|
| Properties | Type | Nullable | Description |
|
|
5093
5093
|
| ---------- | ---- | -------- | ----------- |
|
|
5094
|
+
| value | number | no | |
|
|
5095
|
+
| type | string | no | |
|
|
5094
5096
|
| code | string | no | |
|
|
5097
|
+
| uid | string | no | |
|
|
5095
5098
|
| message | string | no | |
|
|
5096
5099
|
| is_applied | boolean | no | |
|
|
5097
|
-
| uid | string | no | |
|
|
5098
|
-
| value | number | no | |
|
|
5099
|
-
| type | string | no | |
|
|
5100
5100
|
|
|
5101
5101
|
---
|
|
5102
5102
|
|
|
@@ -5108,8 +5108,8 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
5108
5108
|
| Properties | Type | Nullable | Description |
|
|
5109
5109
|
| ---------- | ---- | -------- | ----------- |
|
|
5110
5110
|
| loyalty_points | [LoyaltyPoints](#LoyaltyPoints) | no | |
|
|
5111
|
-
| display | [[DisplayBreakup](#DisplayBreakup)] | no | |
|
|
5112
5111
|
| raw | [RawBreakup](#RawBreakup) | no | |
|
|
5112
|
+
| display | [[DisplayBreakup](#DisplayBreakup)] | no | |
|
|
5113
5113
|
| coupon | [CouponBreakup](#CouponBreakup) | no | |
|
|
5114
5114
|
|
|
5115
5115
|
---
|
|
@@ -5121,10 +5121,10 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
5121
5121
|
|
|
5122
5122
|
| Properties | Type | Nullable | Description |
|
|
5123
5123
|
| ---------- | ---- | -------- | ----------- |
|
|
5124
|
-
| items | [[CartProductInfo](#CartProductInfo)] | no | |
|
|
5125
5124
|
| is_valid | boolean | no | |
|
|
5126
|
-
| breakup_values | [CartBreakup](#CartBreakup) | no | |
|
|
5127
5125
|
| message | string | no | |
|
|
5126
|
+
| items | [[CartProductInfo](#CartProductInfo)] | no | |
|
|
5127
|
+
| breakup_values | [CartBreakup](#CartBreakup) | no | |
|
|
5128
5128
|
|
|
5129
5129
|
---
|
|
5130
5130
|
|
|
@@ -5135,8 +5135,8 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
5135
5135
|
|
|
5136
5136
|
| Properties | Type | Nullable | Description |
|
|
5137
5137
|
| ---------- | ---- | -------- | ----------- |
|
|
5138
|
-
| success | boolean | no | |
|
|
5139
5138
|
| message | string | no | |
|
|
5139
|
+
| success | boolean | no | |
|
|
5140
5140
|
| errors | string | no | Contains field name which has error as key and error message as value |
|
|
5141
5141
|
|
|
5142
5142
|
---
|
|
@@ -5150,19 +5150,19 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
5150
5150
|
| ---------- | ---- | -------- | ----------- |
|
|
5151
5151
|
| address_type | string | no | |
|
|
5152
5152
|
| phone | number | no | |
|
|
5153
|
+
| name | string | no | |
|
|
5154
|
+
| address | string | no | |
|
|
5153
5155
|
| pincode | number | no | |
|
|
5154
|
-
| area | string | no | |
|
|
5155
|
-
| country | string | no | |
|
|
5156
|
-
| email | string | no | |
|
|
5157
|
-
| meta | string | no | |
|
|
5158
5156
|
| landmark | string | no | |
|
|
5159
|
-
| area_code_slug | string | no | |
|
|
5160
5157
|
| area_code | string | yes | |
|
|
5161
|
-
| city | string | no | |
|
|
5162
|
-
| country_code | string | no | |
|
|
5163
5158
|
| state | string | no | |
|
|
5164
|
-
|
|
|
5165
|
-
|
|
|
5159
|
+
| country | string | no | |
|
|
5160
|
+
| country_code | string | no | |
|
|
5161
|
+
| area_code_slug | string | no | |
|
|
5162
|
+
| meta | string | no | |
|
|
5163
|
+
| area | string | no | |
|
|
5164
|
+
| email | string | no | |
|
|
5165
|
+
| city | string | no | |
|
|
5166
5166
|
|
|
5167
5167
|
---
|
|
5168
5168
|
|
|
@@ -5173,32 +5173,32 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
5173
5173
|
|
|
5174
5174
|
| Properties | Type | Nullable | Description |
|
|
5175
5175
|
| ---------- | ---- | -------- | ----------- |
|
|
5176
|
-
| shipping_address | [ShippingAddress](#ShippingAddress) | yes | |
|
|
5177
5176
|
| cart_items | [CartItem](#CartItem) | no | |
|
|
5177
|
+
| shipping_address | [ShippingAddress](#ShippingAddress) | yes | |
|
|
5178
5178
|
|
|
5179
5179
|
---
|
|
5180
5180
|
|
|
5181
5181
|
|
|
5182
5182
|
|
|
5183
5183
|
|
|
5184
|
-
#### [
|
|
5184
|
+
#### [PromiseFormatted](#PromiseFormatted)
|
|
5185
5185
|
|
|
5186
5186
|
| Properties | Type | Nullable | Description |
|
|
5187
5187
|
| ---------- | ---- | -------- | ----------- |
|
|
5188
|
-
| min |
|
|
5189
|
-
| max |
|
|
5188
|
+
| min | string | no | |
|
|
5189
|
+
| max | string | no | |
|
|
5190
5190
|
|
|
5191
5191
|
---
|
|
5192
5192
|
|
|
5193
5193
|
|
|
5194
5194
|
|
|
5195
5195
|
|
|
5196
|
-
#### [
|
|
5196
|
+
#### [PromiseTimestamp](#PromiseTimestamp)
|
|
5197
5197
|
|
|
5198
5198
|
| Properties | Type | Nullable | Description |
|
|
5199
5199
|
| ---------- | ---- | -------- | ----------- |
|
|
5200
|
-
| min |
|
|
5201
|
-
| max |
|
|
5200
|
+
| min | number | no | |
|
|
5201
|
+
| max | number | no | |
|
|
5202
5202
|
|
|
5203
5203
|
---
|
|
5204
5204
|
|
|
@@ -5209,8 +5209,8 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
5209
5209
|
|
|
5210
5210
|
| Properties | Type | Nullable | Description |
|
|
5211
5211
|
| ---------- | ---- | -------- | ----------- |
|
|
5212
|
-
| timestamp | [PromiseTimestamp](#PromiseTimestamp) | no | |
|
|
5213
5212
|
| formatted | [PromiseFormatted](#PromiseFormatted) | no | |
|
|
5213
|
+
| timestamp | [PromiseTimestamp](#PromiseTimestamp) | no | |
|
|
5214
5214
|
|
|
5215
5215
|
---
|
|
5216
5216
|
|
|
@@ -5221,10 +5221,10 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
5221
5221
|
|
|
5222
5222
|
| Properties | Type | Nullable | Description |
|
|
5223
5223
|
| ---------- | ---- | -------- | ----------- |
|
|
5224
|
+
| breakup_values | [CartBreakup](#CartBreakup) | no | |
|
|
5224
5225
|
| items | [[CartProductInfo](#CartProductInfo)] | no | |
|
|
5225
|
-
| delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
|
|
5226
5226
|
| message | string | no | |
|
|
5227
|
-
|
|
|
5227
|
+
| delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
|
|
5228
5228
|
| is_valid | boolean | no | |
|
|
5229
5229
|
|
|
5230
5230
|
---
|
|
@@ -5232,41 +5232,41 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
5232
5232
|
|
|
5233
5233
|
|
|
5234
5234
|
|
|
5235
|
-
#### [
|
|
5235
|
+
#### [MultiTenderPaymentMeta](#MultiTenderPaymentMeta)
|
|
5236
5236
|
|
|
5237
5237
|
| Properties | Type | Nullable | Description |
|
|
5238
5238
|
| ---------- | ---- | -------- | ----------- |
|
|
5239
|
-
|
|
|
5240
|
-
|
|
|
5239
|
+
| order_id | string | no | |
|
|
5240
|
+
| payment_id | string | no | |
|
|
5241
|
+
| extra_meta | string | no | |
|
|
5242
|
+
| payment_gateway | string | no | |
|
|
5243
|
+
| current_status | string | no | |
|
|
5241
5244
|
|
|
5242
5245
|
---
|
|
5243
5246
|
|
|
5244
5247
|
|
|
5245
5248
|
|
|
5246
5249
|
|
|
5247
|
-
#### [
|
|
5250
|
+
#### [MultiTenderPaymentMethod](#MultiTenderPaymentMethod)
|
|
5248
5251
|
|
|
5249
5252
|
| Properties | Type | Nullable | Description |
|
|
5250
5253
|
| ---------- | ---- | -------- | ----------- |
|
|
5251
|
-
|
|
|
5252
|
-
|
|
|
5253
|
-
|
|
|
5254
|
-
|
|
|
5255
|
-
| order_id | string | no | |
|
|
5254
|
+
| amount | number | yes | Payment amount |
|
|
5255
|
+
| mode | string | yes | |
|
|
5256
|
+
| name | string | no | Payment mode name |
|
|
5257
|
+
| meta | [MultiTenderPaymentMeta](#MultiTenderPaymentMeta) | no | |
|
|
5256
5258
|
|
|
5257
5259
|
---
|
|
5258
5260
|
|
|
5259
5261
|
|
|
5260
5262
|
|
|
5261
5263
|
|
|
5262
|
-
#### [
|
|
5264
|
+
#### [OpenApiFiles](#OpenApiFiles)
|
|
5263
5265
|
|
|
5264
5266
|
| Properties | Type | Nullable | Description |
|
|
5265
5267
|
| ---------- | ---- | -------- | ----------- |
|
|
5266
|
-
|
|
|
5267
|
-
|
|
|
5268
|
-
| mode | string | yes | |
|
|
5269
|
-
| meta | [MultiTenderPaymentMeta](#MultiTenderPaymentMeta) | no | |
|
|
5268
|
+
| key | string | yes | |
|
|
5269
|
+
| values | [string] | yes | |
|
|
5270
5270
|
|
|
5271
5271
|
---
|
|
5272
5272
|
|
|
@@ -5289,23 +5289,23 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
5289
5289
|
|
|
5290
5290
|
| Properties | Type | Nullable | Description |
|
|
5291
5291
|
| ---------- | ---- | -------- | ----------- |
|
|
5292
|
-
|
|
|
5293
|
-
| cashback_applied | number | yes | |
|
|
5294
|
-
| product_id | number | yes | |
|
|
5295
|
-
| files | [[OpenApiFiles](#OpenApiFiles)] | no | |
|
|
5296
|
-
| cod_charges | number | yes | |
|
|
5292
|
+
| amount_paid | number | yes | |
|
|
5297
5293
|
| extra_meta | string | no | |
|
|
5298
|
-
|
|
|
5294
|
+
| loyalty_discount | number | no | |
|
|
5295
|
+
| payment_methods | [[MultiTenderPaymentMethod](#MultiTenderPaymentMethod)] | yes | |
|
|
5296
|
+
| product_id | number | yes | |
|
|
5297
|
+
| delivery_charges | number | yes | |
|
|
5299
5298
|
| discount | number | yes | |
|
|
5300
|
-
|
|
|
5299
|
+
| price_marked | number | yes | |
|
|
5301
5300
|
| employee_discount | number | no | |
|
|
5301
|
+
| files | [[OpenApiFiles](#OpenApiFiles)] | no | |
|
|
5302
|
+
| cashback_applied | number | yes | |
|
|
5303
|
+
| cod_charges | number | yes | |
|
|
5302
5304
|
| meta | [CartItemMeta](#CartItemMeta) | no | |
|
|
5303
|
-
| payment_methods | [[MultiTenderPaymentMethod](#MultiTenderPaymentMethod)] | yes | |
|
|
5304
5305
|
| price_effective | number | yes | |
|
|
5305
|
-
|
|
|
5306
|
-
|
|
|
5307
|
-
|
|
|
5308
|
-
| loyalty_discount | number | no | |
|
|
5306
|
+
| coupon_effective_discount | number | yes | |
|
|
5307
|
+
| quantity | number | no | |
|
|
5308
|
+
| size | string | yes | |
|
|
5309
5309
|
|
|
5310
5310
|
---
|
|
5311
5311
|
|
|
@@ -5316,26 +5316,26 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
5316
5316
|
|
|
5317
5317
|
| Properties | Type | Nullable | Description |
|
|
5318
5318
|
| ---------- | ---- | -------- | ----------- |
|
|
5319
|
-
|
|
|
5320
|
-
|
|
|
5319
|
+
| order_id | string | no | |
|
|
5320
|
+
| currency_code | string | no | |
|
|
5321
|
+
| cart_items | [[OpenApiOrderItem](#OpenApiOrderItem)] | yes | |
|
|
5322
|
+
| delivery_charges | number | yes | |
|
|
5323
|
+
| files | [[OpenApiFiles](#OpenApiFiles)] | no | |
|
|
5321
5324
|
| comment | string | no | |
|
|
5322
5325
|
| coupon | string | no | |
|
|
5323
5326
|
| coupon_value | number | yes | |
|
|
5324
|
-
|
|
|
5325
|
-
| gstin | string | no | |
|
|
5326
|
-
| delivery_charges | number | yes | |
|
|
5327
|
-
| coupon_code | string | yes | |
|
|
5328
|
-
| loyalty_discount | number | no | |
|
|
5327
|
+
| affiliate_order_id | string | no | |
|
|
5329
5328
|
| payment_mode | string | no | |
|
|
5330
|
-
| cashback_applied | number | yes | |
|
|
5331
|
-
| files | [[OpenApiFiles](#OpenApiFiles)] | no | |
|
|
5332
|
-
| currency_code | string | no | |
|
|
5333
|
-
| order_id | string | no | |
|
|
5334
5329
|
| cart_value | number | yes | |
|
|
5335
|
-
| employee_discount | string | no | |
|
|
5336
5330
|
| payment_methods | [[MultiTenderPaymentMethod](#MultiTenderPaymentMethod)] | yes | |
|
|
5337
|
-
|
|
|
5331
|
+
| loyalty_discount | number | no | |
|
|
5338
5332
|
| billing_address | [ShippingAddress](#ShippingAddress) | yes | |
|
|
5333
|
+
| employee_discount | string | no | |
|
|
5334
|
+
| cashback_applied | number | yes | |
|
|
5335
|
+
| cod_charges | number | yes | |
|
|
5336
|
+
| coupon_code | string | yes | |
|
|
5337
|
+
| shipping_address | [ShippingAddress](#ShippingAddress) | no | |
|
|
5338
|
+
| gstin | string | no | |
|
|
5339
5339
|
|
|
5340
5340
|
---
|
|
5341
5341
|
|
|
@@ -5346,10 +5346,10 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
5346
5346
|
|
|
5347
5347
|
| Properties | Type | Nullable | Description |
|
|
5348
5348
|
| ---------- | ---- | -------- | ----------- |
|
|
5349
|
+
| order_ref_id | string | no | Order id sent in request |
|
|
5350
|
+
| message | string | no | |
|
|
5349
5351
|
| success | boolean | no | |
|
|
5350
5352
|
| order_id | string | yes | Fynd order id |
|
|
5351
|
-
| message | string | no | |
|
|
5352
|
-
| order_ref_id | string | no | Order id sent in request |
|
|
5353
5353
|
|
|
5354
5354
|
---
|
|
5355
5355
|
|
|
@@ -5360,39 +5360,39 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
5360
5360
|
|
|
5361
5361
|
| Properties | Type | Nullable | Description |
|
|
5362
5362
|
| ---------- | ---- | -------- | ----------- |
|
|
5363
|
-
|
|
|
5364
|
-
|
|
|
5363
|
+
| buy_now | boolean | no | |
|
|
5364
|
+
| uid | number | yes | |
|
|
5365
|
+
| created_on | string | yes | |
|
|
5366
|
+
| articles | [string] | yes | |
|
|
5365
5367
|
| coupon | string | no | |
|
|
5366
|
-
|
|
|
5367
|
-
|
|
|
5368
|
-
| user_id | string | yes | |
|
|
5369
|
-
| discount | number | no | |
|
|
5368
|
+
| promotion | string | no | |
|
|
5369
|
+
| payment_methods | [string] | no | |
|
|
5370
5370
|
| fynd_credits | string | no | |
|
|
5371
|
-
| is_archive | boolean | no | |
|
|
5372
|
-
| cart_value | number | no | |
|
|
5373
|
-
| order_id | string | no | |
|
|
5374
|
-
| expire_at | string | yes | |
|
|
5375
5371
|
| app_id | string | no | |
|
|
5372
|
+
| checkout_mode | string | no | |
|
|
5373
|
+
| order_id | string | no | |
|
|
5374
|
+
| payments | string | no | |
|
|
5376
5375
|
| merge_qty | boolean | no | |
|
|
5377
|
-
|
|
|
5378
|
-
|
|
|
5379
|
-
|
|
|
5380
|
-
| articles | [string] | yes | |
|
|
5376
|
+
| delivery_charges | string | no | |
|
|
5377
|
+
| bulk_coupon_discount | number | no | |
|
|
5378
|
+
| is_archive | boolean | no | |
|
|
5381
5379
|
| comment | string | no | |
|
|
5380
|
+
| pick_up_customer_details | string | no | |
|
|
5381
|
+
| _id | string | yes | |
|
|
5382
5382
|
| is_active | boolean | no | |
|
|
5383
|
-
| delivery_charges | string | no | |
|
|
5384
|
-
| cashback | string | yes | |
|
|
5385
5383
|
| payment_mode | string | no | |
|
|
5386
|
-
|
|
|
5384
|
+
| last_modified | string | yes | |
|
|
5385
|
+
| cart_value | number | no | |
|
|
5386
|
+
| is_default | boolean | yes | |
|
|
5387
|
+
| discount | number | no | |
|
|
5388
|
+
| user_id | string | yes | |
|
|
5389
|
+
| cashback | string | yes | |
|
|
5387
5390
|
| fc_index_map | [number] | no | |
|
|
5388
|
-
| payments | string | no | |
|
|
5389
|
-
| promotion | string | no | |
|
|
5390
|
-
| payment_methods | [string] | no | |
|
|
5391
5391
|
| shipments | [string] | no | |
|
|
5392
|
-
|
|
|
5393
|
-
|
|
|
5394
|
-
|
|
|
5395
|
-
|
|
|
5392
|
+
| cod_charges | string | no | |
|
|
5393
|
+
| expire_at | string | yes | |
|
|
5394
|
+
| meta | string | no | |
|
|
5395
|
+
| gstin | string | no | |
|
|
5396
5396
|
|
|
5397
5397
|
---
|
|
5398
5398
|
|
|
@@ -5403,9 +5403,9 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
5403
5403
|
|
|
5404
5404
|
| Properties | Type | Nullable | Description |
|
|
5405
5405
|
| ---------- | ---- | -------- | ----------- |
|
|
5406
|
+
| page | [Page](#Page) | no | |
|
|
5406
5407
|
| items | [[AbandonedCart](#AbandonedCart)] | no | |
|
|
5407
5408
|
| message | string | no | message of the response |
|
|
5408
|
-
| page | [Page](#Page) | no | |
|
|
5409
5409
|
| success | boolean | no | the request success is defined |
|
|
5410
5410
|
| result | string | no | |
|
|
5411
5411
|
|
|
@@ -5430,9 +5430,9 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
5430
5430
|
|
|
5431
5431
|
| Properties | Type | Nullable | Description |
|
|
5432
5432
|
| ---------- | ---- | -------- | ----------- |
|
|
5433
|
+
| default_options | string | no | |
|
|
5433
5434
|
| payment_identifier | string | no | |
|
|
5434
5435
|
| enabled | boolean | no | |
|
|
5435
|
-
| default_options | string | no | |
|
|
5436
5436
|
|
|
5437
5437
|
---
|
|
5438
5438
|
|
|
@@ -5443,22 +5443,22 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
5443
5443
|
|
|
5444
5444
|
| Properties | Type | Nullable | Description |
|
|
5445
5445
|
| ---------- | ---- | -------- | ----------- |
|
|
5446
|
-
|
|
|
5446
|
+
| coupon_text | string | no | |
|
|
5447
|
+
| checkout_mode | string | no | |
|
|
5447
5448
|
| last_modified | string | no | |
|
|
5448
|
-
|
|
|
5449
|
+
| breakup_values | [CartBreakup](#CartBreakup) | no | |
|
|
5450
|
+
| buy_now | boolean | no | |
|
|
5449
5451
|
| items | [[CartProductInfo](#CartProductInfo)] | no | |
|
|
5450
|
-
|
|
|
5452
|
+
| message | string | no | |
|
|
5453
|
+
| delivery_charge_info | string | no | |
|
|
5454
|
+
| restrict_checkout | boolean | no | |
|
|
5451
5455
|
| comment | string | no | |
|
|
5452
5456
|
| delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
|
|
5453
|
-
|
|
|
5457
|
+
| currency | [CartCurrency](#CartCurrency) | no | |
|
|
5454
5458
|
| is_valid | boolean | no | |
|
|
5455
|
-
|
|
|
5456
|
-
| restrict_checkout | boolean | no | |
|
|
5457
|
-
| coupon_text | string | no | |
|
|
5458
|
-
| breakup_values | [CartBreakup](#CartBreakup) | no | |
|
|
5459
|
-
| id | string | no | |
|
|
5459
|
+
| payment_selection_lock | [PaymentSelectionLock](#PaymentSelectionLock) | no | |
|
|
5460
5460
|
| gstin | string | no | |
|
|
5461
|
-
|
|
|
5461
|
+
| id | string | no | |
|
|
5462
5462
|
|
|
5463
5463
|
---
|
|
5464
5464
|
|
|
@@ -5469,19 +5469,19 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
5469
5469
|
|
|
5470
5470
|
| Properties | Type | Nullable | Description |
|
|
5471
5471
|
| ---------- | ---- | -------- | ----------- |
|
|
5472
|
-
|
|
|
5473
|
-
| item_id | number | no | |
|
|
5474
|
-
| extra_meta | string | no | |
|
|
5475
|
-
| quantity | number | no | |
|
|
5472
|
+
| parent_item_identifiers | string | no | |
|
|
5476
5473
|
| product_group_tags | [string] | no | |
|
|
5477
|
-
|
|
|
5474
|
+
| _custom_json | string | no | |
|
|
5478
5475
|
| display | string | no | |
|
|
5476
|
+
| extra_meta | string | no | |
|
|
5477
|
+
| item_id | number | no | |
|
|
5478
|
+
| article_assignment | string | no | |
|
|
5479
5479
|
| store_id | number | no | |
|
|
5480
|
-
|
|
|
5481
|
-
| parent_item_identifiers | string | no | |
|
|
5480
|
+
| seller_id | number | no | |
|
|
5482
5481
|
| article_id | string | no | |
|
|
5483
5482
|
| pos | boolean | no | |
|
|
5484
|
-
|
|
|
5483
|
+
| quantity | number | no | |
|
|
5484
|
+
| item_size | string | no | |
|
|
5485
5485
|
|
|
5486
5486
|
---
|
|
5487
5487
|
|
|
@@ -5503,10 +5503,10 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
5503
5503
|
|
|
5504
5504
|
| Properties | Type | Nullable | Description |
|
|
5505
5505
|
| ---------- | ---- | -------- | ----------- |
|
|
5506
|
+
| message | string | no | |
|
|
5507
|
+
| cart | [CartDetailResponse](#CartDetailResponse) | no | |
|
|
5506
5508
|
| success | boolean | no | True if all items are added successfully. False if partially added or not added. |
|
|
5507
5509
|
| partial | boolean | no | When adding multiple items check if all added. True if only few are added. |
|
|
5508
|
-
| cart | [CartDetailResponse](#CartDetailResponse) | no | |
|
|
5509
|
-
| message | string | no | |
|
|
5510
5510
|
|
|
5511
5511
|
---
|
|
5512
5512
|
|
|
@@ -5517,15 +5517,15 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
5517
5517
|
|
|
5518
5518
|
| Properties | Type | Nullable | Description |
|
|
5519
5519
|
| ---------- | ---- | -------- | ----------- |
|
|
5520
|
-
|
|
|
5520
|
+
| parent_item_identifiers | string | no | |
|
|
5521
|
+
| _custom_json | string | no | |
|
|
5521
5522
|
| extra_meta | string | no | |
|
|
5523
|
+
| item_id | number | no | |
|
|
5524
|
+
| item_index | number | no | |
|
|
5525
|
+
| article_id | string | no | |
|
|
5522
5526
|
| quantity | number | no | |
|
|
5523
5527
|
| item_size | string | no | |
|
|
5524
5528
|
| identifiers | [CartProductIdentifer](#CartProductIdentifer) | yes | |
|
|
5525
|
-
| item_index | number | no | |
|
|
5526
|
-
| _custom_json | string | no | |
|
|
5527
|
-
| parent_item_identifiers | string | no | |
|
|
5528
|
-
| article_id | string | no | |
|
|
5529
5529
|
|
|
5530
5530
|
---
|
|
5531
5531
|
|
|
@@ -5536,8 +5536,8 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
5536
5536
|
|
|
5537
5537
|
| Properties | Type | Nullable | Description |
|
|
5538
5538
|
| ---------- | ---- | -------- | ----------- |
|
|
5539
|
-
| items | [[UpdateProductCart](#UpdateProductCart)] | no | |
|
|
5540
5539
|
| operation | string | yes | |
|
|
5540
|
+
| items | [[UpdateProductCart](#UpdateProductCart)] | no | |
|
|
5541
5541
|
|
|
5542
5542
|
---
|
|
5543
5543
|
|
|
@@ -5548,9 +5548,9 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
|
|
|
5548
5548
|
|
|
5549
5549
|
| Properties | Type | Nullable | Description |
|
|
5550
5550
|
| ---------- | ---- | -------- | ----------- |
|
|
5551
|
-
| success | boolean | no | True if all items are added successfully. False if partially added or not added. |
|
|
5552
|
-
| cart | [CartDetailResponse](#CartDetailResponse) | no | |
|
|
5553
5551
|
| message | string | no | |
|
|
5552
|
+
| cart | [CartDetailResponse](#CartDetailResponse) | no | |
|
|
5553
|
+
| success | boolean | no | True if all items are added successfully. False if partially added or not added. |
|
|
5554
5554
|
|
|
5555
5555
|
---
|
|
5556
5556
|
|