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