@gofynd/fdk-client-javascript 0.1.35 → 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.
Files changed (118) hide show
  1. package/README.md +1 -1
  2. package/documentation/application/CART.md +272 -249
  3. package/documentation/application/CATALOG.md +417 -413
  4. package/documentation/application/COMMON.md +4 -0
  5. package/documentation/application/COMMUNICATION.md +4 -0
  6. package/documentation/application/CONFIGURATION.md +4 -0
  7. package/documentation/application/CONTENT.md +7 -20
  8. package/documentation/application/FILESTORAGE.md +85 -0
  9. package/documentation/application/LEAD.md +6 -2
  10. package/documentation/application/LOGISTIC.md +427 -101
  11. package/documentation/application/ORDER.md +292 -288
  12. package/documentation/application/PAYMENT.md +445 -259
  13. package/documentation/application/POSCART.md +309 -286
  14. package/documentation/application/README.md +1 -1
  15. package/documentation/application/REWARDS.md +153 -160
  16. package/documentation/application/SHARE.md +4 -0
  17. package/documentation/application/THEME.md +4 -0
  18. package/documentation/application/USER.md +4 -0
  19. package/documentation/platform/ANALYTICS.md +4 -0
  20. package/documentation/platform/AUDITTRAIL.md +6 -2
  21. package/documentation/platform/BILLING.md +4 -0
  22. package/documentation/platform/CART.md +476 -459
  23. package/documentation/platform/CATALOG.md +4138 -2968
  24. package/documentation/platform/COMMON.md +4 -0
  25. package/documentation/platform/COMMUNICATION.md +4 -0
  26. package/documentation/platform/COMPANYPROFILE.md +258 -206
  27. package/documentation/platform/CONFIGURATION.md +4 -0
  28. package/documentation/platform/CONTENT.md +8 -21
  29. package/documentation/platform/DISCOUNT.md +4 -0
  30. package/documentation/platform/FILESTORAGE.md +85 -0
  31. package/documentation/platform/INVENTORY.md +4 -0
  32. package/documentation/platform/LEAD.md +6 -2
  33. package/documentation/platform/ORDER.md +6298 -1448
  34. package/documentation/platform/PARTNER.md +12 -8
  35. package/documentation/platform/PAYMENT.md +107 -103
  36. package/documentation/platform/README.md +2 -2
  37. package/documentation/platform/REWARDS.md +219 -152
  38. package/documentation/platform/SHARE.md +4 -0
  39. package/documentation/platform/THEME.md +4 -0
  40. package/documentation/platform/USER.md +4 -0
  41. package/documentation/platform/WEBHOOK.md +4 -0
  42. package/documentation/public/CONFIGURATION.md +4 -0
  43. package/documentation/public/INVENTORY.md +4 -0
  44. package/documentation/public/WEBHOOK.md +4 -0
  45. package/package.json +2 -2
  46. package/sdk/application/ApplicationAPIClient.js +3 -0
  47. package/sdk/application/ApplicationClient.d.ts +1 -0
  48. package/sdk/application/ApplicationClient.js +11 -1
  49. package/sdk/application/ApplicationConfig.d.ts +1 -0
  50. package/sdk/application/ApplicationConfig.js +1 -0
  51. package/sdk/application/ApplicationModels.d.ts +94 -85
  52. package/sdk/application/ApplicationModels.js +1909 -1792
  53. package/sdk/application/client/CartApplicationClient.d.ts +36 -36
  54. package/sdk/application/client/CatalogApplicationClient.d.ts +39 -39
  55. package/sdk/application/client/CatalogApplicationClient.js +16 -16
  56. package/sdk/application/client/CommonApplicationClient.d.ts +2 -2
  57. package/sdk/application/client/CommunicationApplicationClient.d.ts +5 -5
  58. package/sdk/application/client/ConfigurationApplicationClient.d.ts +17 -17
  59. package/sdk/application/client/ContentApplicationClient.d.ts +19 -19
  60. package/sdk/application/client/FileStorageApplicationClient.d.ts +14 -6
  61. package/sdk/application/client/FileStorageApplicationClient.js +2 -0
  62. package/sdk/application/client/LeadApplicationClient.d.ts +10 -10
  63. package/sdk/application/client/LogisticApplicationClient.d.ts +32 -21
  64. package/sdk/application/client/LogisticApplicationClient.js +62 -27
  65. package/sdk/application/client/OrderApplicationClient.d.ts +15 -15
  66. package/sdk/application/client/OrderApplicationClient.js +1 -1
  67. package/sdk/application/client/PaymentApplicationClient.d.ts +79 -57
  68. package/sdk/application/client/PaymentApplicationClient.js +66 -0
  69. package/sdk/application/client/PosCartApplicationClient.d.ts +38 -38
  70. package/sdk/application/client/RewardsApplicationClient.d.ts +34 -34
  71. package/sdk/application/client/RewardsApplicationClient.js +77 -77
  72. package/sdk/application/client/ShareApplicationClient.d.ts +8 -8
  73. package/sdk/application/client/ThemeApplicationClient.d.ts +4 -4
  74. package/sdk/application/client/UserApplicationClient.d.ts +63 -63
  75. package/sdk/application/models/CatalogValidator.d.ts +1 -1
  76. package/sdk/application/models/CatalogValidator.js +2 -2
  77. package/sdk/application/models/LogisticValidator.d.ts +2 -1
  78. package/sdk/application/models/LogisticValidator.js +11 -6
  79. package/sdk/application/models/PaymentValidator.d.ts +2 -0
  80. package/sdk/application/models/PaymentValidator.js +12 -0
  81. package/sdk/application/models/RewardsValidator.d.ts +3 -3
  82. package/sdk/application/models/RewardsValidator.js +12 -12
  83. package/sdk/common/AxiosHelper.js +1 -1
  84. package/sdk/common/Constant.d.ts +9 -0
  85. package/sdk/common/Constant.js +11 -0
  86. package/sdk/platform/PlatformApplicationClient.d.ts +7962 -6505
  87. package/sdk/platform/PlatformApplicationClient.js +4377 -3635
  88. package/sdk/platform/PlatformApplicationModels.d.ts +26 -31
  89. package/sdk/platform/PlatformApplicationModels.js +5530 -4134
  90. package/sdk/platform/PlatformClient.d.ts +3495 -2780
  91. package/sdk/platform/PlatformClient.js +3985 -3108
  92. package/sdk/platform/PlatformModels.d.ts +354 -273
  93. package/sdk/platform/PlatformModels.js +5635 -4211
  94. package/sdk/platform/client/AnalyticsPlatformClient.d.ts +5 -5
  95. package/sdk/platform/client/AuditTrailPlatformClient.d.ts +1 -1
  96. package/sdk/platform/client/BillingPlatformClient.d.ts +4 -4
  97. package/sdk/platform/client/CatalogPlatformClient.d.ts +222 -154
  98. package/sdk/platform/client/CatalogPlatformClient.js +473 -295
  99. package/sdk/platform/client/CompanyProfilePlatformClient.d.ts +8 -8
  100. package/sdk/platform/client/ConfigurationPlatformClient.d.ts +9 -9
  101. package/sdk/platform/client/DiscountPlatformClient.d.ts +4 -4
  102. package/sdk/platform/client/FileStoragePlatformClient.d.ts +20 -4
  103. package/sdk/platform/client/FileStoragePlatformClient.js +49 -0
  104. package/sdk/platform/client/InventoryPlatformClient.d.ts +3 -3
  105. package/sdk/platform/client/LeadPlatformClient.d.ts +6 -6
  106. package/sdk/platform/client/OrderPlatformClient.d.ts +557 -131
  107. package/sdk/platform/client/OrderPlatformClient.js +1551 -247
  108. package/sdk/platform/client/PaymentPlatformClient.d.ts +4 -4
  109. package/sdk/platform/client/WebhookPlatformClient.d.ts +2 -2
  110. package/sdk/platform/models/CatalogValidator.d.ts +26 -22
  111. package/sdk/platform/models/CatalogValidator.js +109 -72
  112. package/sdk/platform/models/OrderValidator.d.ts +43 -11
  113. package/sdk/platform/models/OrderValidator.js +312 -51
  114. package/sdk/public/client/ConfigurationPublicClient.d.ts +2 -2
  115. package/sdk/public/client/InventoryPublicClient.d.ts +7 -7
  116. package/sdk/public/client/WebhookPublicClient.d.ts +3 -3
  117. package/tests/common/schema/action-url.json +15 -0
  118. package/tests/common/schema/url-action.json +16 -0
@@ -2,10 +2,12 @@
2
2
 
3
3
 
4
4
 
5
+
5
6
  ##### [Back to Platform docs](./README.md)
6
7
 
7
8
  ## Cart Methods
8
9
  Cart APIs
10
+
9
11
  * [getCoupons](#getcoupons)
10
12
  * [createCoupon](#createcoupon)
11
13
  * [getCouponById](#getcouponbyid)
@@ -29,6 +31,8 @@ Cart APIs
29
31
  ## Methods with example and description
30
32
 
31
33
 
34
+
35
+
32
36
  ### getCoupons
33
37
  Get with single coupon details or coupon list
34
38
 
@@ -3989,19 +3993,11 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
3989
3993
 
3990
3994
 
3991
3995
 
3992
- #### [Page](#Page)
3996
+ #### [Validity](#Validity)
3993
3997
 
3994
3998
  | Properties | Type | Nullable | Description |
3995
3999
  | ---------- | ---- | -------- | ----------- |
3996
- | type | string | yes | |
3997
- | current | number | no | Current page no |
3998
- | has_previous | boolean | no | True if more records are present for previous pages. Sent for cursor pagination |
3999
- | next_id | string | no | Cursor id for next set of records. |
4000
- | item_total | number | no | Total coupon count in system |
4001
- | size | number | no | Current request page size |
4002
- | has_next | boolean | no | True if more records are present for next pages |
4003
- | page | number | no | Page requested |
4004
- | last_id | string | no | Last objects id |
4000
+ | priority | number | no | |
4005
4001
 
4006
4002
  ---
4007
4003
 
@@ -4012,26 +4008,27 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
4012
4008
 
4013
4009
  | Properties | Type | Nullable | Description |
4014
4010
  | ---------- | ---- | -------- | ----------- |
4015
- | exclude_brand_id | [number] | no | |
4016
- | store_id | [number] | no | |
4017
- | collection_id | [string] | no | |
4018
4011
  | user_id | [string] | no | |
4019
- | category_id | [number] | no | |
4012
+ | store_id | [number] | no | |
4013
+ | exclude_brand_id | [number] | no | |
4020
4014
  | company_id | [number] | no | |
4015
+ | brand_id | [number] | no | |
4016
+ | collection_id | [string] | no | |
4021
4017
  | article_id | [string] | no | |
4018
+ | category_id | [number] | no | |
4022
4019
  | item_id | [number] | no | |
4023
- | brand_id | [number] | no | |
4024
4020
 
4025
4021
  ---
4026
4022
 
4027
4023
 
4028
4024
 
4029
4025
 
4030
- #### [Validity](#Validity)
4026
+ #### [CouponAuthor](#CouponAuthor)
4031
4027
 
4032
4028
  | Properties | Type | Nullable | Description |
4033
4029
  | ---------- | ---- | -------- | ----------- |
4034
- | priority | number | no | |
4030
+ | modified_by | string | no | |
4031
+ | created_by | string | no | |
4035
4032
 
4036
4033
  ---
4037
4034
 
@@ -4050,129 +4047,132 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
4050
4047
 
4051
4048
 
4052
4049
 
4053
- #### [Ownership](#Ownership)
4050
+ #### [Validation](#Validation)
4054
4051
 
4055
4052
  | Properties | Type | Nullable | Description |
4056
4053
  | ---------- | ---- | -------- | ----------- |
4057
- | payable_by | string | yes | |
4058
- | payable_category | string | yes | |
4054
+ | user_registered_after | string | no | |
4055
+ | app_id | [string] | no | |
4056
+ | anonymous | boolean | no | |
4059
4057
 
4060
4058
  ---
4061
4059
 
4062
4060
 
4063
4061
 
4064
4062
 
4065
- #### [Validation](#Validation)
4063
+ #### [PriceRange](#PriceRange)
4066
4064
 
4067
4065
  | Properties | Type | Nullable | Description |
4068
4066
  | ---------- | ---- | -------- | ----------- |
4069
- | anonymous | boolean | no | |
4070
- | app_id | [string] | no | |
4071
- | user_registered_after | string | no | |
4067
+ | min | number | no | |
4068
+ | max | number | no | |
4072
4069
 
4073
4070
  ---
4074
4071
 
4075
4072
 
4076
4073
 
4077
4074
 
4078
- #### [BulkBundleRestriction](#BulkBundleRestriction)
4075
+ #### [UsesRemaining](#UsesRemaining)
4079
4076
 
4080
4077
  | Properties | Type | Nullable | Description |
4081
4078
  | ---------- | ---- | -------- | ----------- |
4082
- | multi_store_allowed | boolean | yes | |
4079
+ | user | number | no | |
4080
+ | app | number | no | |
4081
+ | total | number | no | |
4083
4082
 
4084
4083
  ---
4085
4084
 
4086
4085
 
4087
4086
 
4088
4087
 
4089
- #### [PostOrder](#PostOrder)
4088
+ #### [UsesRestriction](#UsesRestriction)
4090
4089
 
4091
4090
  | Properties | Type | Nullable | Description |
4092
4091
  | ---------- | ---- | -------- | ----------- |
4093
- | cancellation_allowed | boolean | no | |
4094
- | return_allowed | boolean | no | |
4092
+ | remaining | [UsesRemaining](#UsesRemaining) | no | |
4093
+ | maximum | [UsesRemaining](#UsesRemaining) | no | |
4095
4094
 
4096
4095
  ---
4097
4096
 
4098
4097
 
4099
4098
 
4100
4099
 
4101
- #### [UsesRemaining](#UsesRemaining)
4100
+ #### [PaymentAllowValue](#PaymentAllowValue)
4102
4101
 
4103
4102
  | Properties | Type | Nullable | Description |
4104
4103
  | ---------- | ---- | -------- | ----------- |
4105
- | total | number | no | |
4106
- | app | number | no | |
4107
- | user | number | no | |
4104
+ | max | number | no | |
4108
4105
 
4109
4106
  ---
4110
4107
 
4111
4108
 
4112
4109
 
4113
4110
 
4114
- #### [UsesRestriction](#UsesRestriction)
4111
+ #### [PaymentModes](#PaymentModes)
4115
4112
 
4116
4113
  | Properties | Type | Nullable | Description |
4117
4114
  | ---------- | ---- | -------- | ----------- |
4118
- | maximum | [UsesRemaining](#UsesRemaining) | no | |
4119
- | remaining | [UsesRemaining](#UsesRemaining) | no | |
4115
+ | uses | [PaymentAllowValue](#PaymentAllowValue) | no | |
4116
+ | types | [string] | no | |
4117
+ | codes | [string] | no | |
4118
+ | networks | [string] | no | |
4120
4119
 
4121
4120
  ---
4122
4121
 
4123
4122
 
4124
4123
 
4125
4124
 
4126
- #### [PriceRange](#PriceRange)
4125
+ #### [PostOrder](#PostOrder)
4127
4126
 
4128
4127
  | Properties | Type | Nullable | Description |
4129
4128
  | ---------- | ---- | -------- | ----------- |
4130
- | max | number | no | |
4131
- | min | number | no | |
4129
+ | cancellation_allowed | boolean | no | |
4130
+ | return_allowed | boolean | no | |
4132
4131
 
4133
4132
  ---
4134
4133
 
4135
4134
 
4136
4135
 
4137
4136
 
4138
- #### [PaymentAllowValue](#PaymentAllowValue)
4137
+ #### [BulkBundleRestriction](#BulkBundleRestriction)
4139
4138
 
4140
4139
  | Properties | Type | Nullable | Description |
4141
4140
  | ---------- | ---- | -------- | ----------- |
4142
- | max | number | no | |
4141
+ | multi_store_allowed | boolean | yes | |
4143
4142
 
4144
4143
  ---
4145
4144
 
4146
4145
 
4147
4146
 
4148
4147
 
4149
- #### [PaymentModes](#PaymentModes)
4148
+ #### [Restrictions](#Restrictions)
4150
4149
 
4151
4150
  | Properties | Type | Nullable | Description |
4152
4151
  | ---------- | ---- | -------- | ----------- |
4153
- | networks | [string] | no | |
4154
- | codes | [string] | no | |
4155
- | uses | [PaymentAllowValue](#PaymentAllowValue) | no | |
4156
- | types | [string] | no | |
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 | |
4157
4161
 
4158
4162
  ---
4159
4163
 
4160
4164
 
4161
4165
 
4162
4166
 
4163
- #### [Restrictions](#Restrictions)
4167
+ #### [CouponSchedule](#CouponSchedule)
4164
4168
 
4165
4169
  | Properties | Type | Nullable | Description |
4166
4170
  | ---------- | ---- | -------- | ----------- |
4167
- | user_groups | [number] | no | |
4168
- | bulk_bundle | [BulkBundleRestriction](#BulkBundleRestriction) | no | |
4169
- | post_order | [PostOrder](#PostOrder) | no | |
4170
- | uses | [UsesRestriction](#UsesRestriction) | no | |
4171
- | coupon_allowed | boolean | no | |
4172
- | platforms | [string] | no | |
4173
- | price_range | [PriceRange](#PriceRange) | no | |
4174
- | payments | [String: [PaymentModes](#PaymentModes)] | no | |
4175
- | ordering_stores | [number] | no | |
4171
+ | cron | string | no | |
4172
+ | next_schedule | [string] | no | |
4173
+ | end | string | no | |
4174
+ | start | string | no | |
4175
+ | duration | number | no | |
4176
4176
 
4177
4177
  ---
4178
4178
 
@@ -4195,12 +4195,12 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
4195
4195
 
4196
4196
  | Properties | Type | Nullable | Description |
4197
4197
  | ---------- | ---- | -------- | ----------- |
4198
- | apply | [DisplayMetaDict](#DisplayMetaDict) | no | |
4199
- | description | string | no | |
4200
- | subtitle | string | no | |
4201
4198
  | auto | [DisplayMetaDict](#DisplayMetaDict) | no | |
4202
- | remove | [DisplayMetaDict](#DisplayMetaDict) | no | |
4199
+ | description | string | no | |
4203
4200
  | title | string | no | |
4201
+ | apply | [DisplayMetaDict](#DisplayMetaDict) | no | |
4202
+ | remove | [DisplayMetaDict](#DisplayMetaDict) | no | |
4203
+ | subtitle | string | no | |
4204
4204
 
4205
4205
  ---
4206
4206
 
@@ -4220,39 +4220,27 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
4220
4220
 
4221
4221
 
4222
4222
 
4223
- #### [Rule](#Rule)
4224
-
4225
- | Properties | Type | Nullable | Description |
4226
- | ---------- | ---- | -------- | ----------- |
4227
- | max | number | no | |
4228
- | value | number | no | |
4229
- | discount_qty | number | no | |
4230
- | min | number | no | |
4231
- | key | number | no | |
4232
-
4233
- ---
4234
-
4235
-
4236
-
4237
-
4238
- #### [CouponAuthor](#CouponAuthor)
4223
+ #### [CouponAction](#CouponAction)
4239
4224
 
4240
4225
  | Properties | Type | Nullable | Description |
4241
4226
  | ---------- | ---- | -------- | ----------- |
4242
- | created_by | string | no | |
4243
- | modified_by | string | no | |
4227
+ | txn_mode | string | no | |
4228
+ | action_date | string | no | |
4244
4229
 
4245
4230
  ---
4246
4231
 
4247
4232
 
4248
4233
 
4249
4234
 
4250
- #### [CouponAction](#CouponAction)
4235
+ #### [Rule](#Rule)
4251
4236
 
4252
4237
  | Properties | Type | Nullable | Description |
4253
4238
  | ---------- | ---- | -------- | ----------- |
4254
- | action_date | string | no | |
4255
- | txn_mode | string | no | |
4239
+ | value | number | no | |
4240
+ | min | number | no | |
4241
+ | discount_qty | number | no | |
4242
+ | max | number | no | |
4243
+ | key | number | no | |
4256
4244
 
4257
4245
  ---
4258
4246
 
@@ -4263,29 +4251,26 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
4263
4251
 
4264
4252
  | Properties | Type | Nullable | Description |
4265
4253
  | ---------- | ---- | -------- | ----------- |
4266
- | type | string | yes | |
4267
- | value_type | string | yes | |
4268
- | calculate_on | string | yes | |
4269
- | applicable_on | string | yes | |
4270
- | scope | [string] | no | |
4271
- | is_exact | boolean | no | |
4272
4254
  | currency_code | string | no | |
4273
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 | |
4274
4262
 
4275
4263
  ---
4276
4264
 
4277
4265
 
4278
4266
 
4279
4267
 
4280
- #### [CouponSchedule](#CouponSchedule)
4268
+ #### [Ownership](#Ownership)
4281
4269
 
4282
4270
  | Properties | Type | Nullable | Description |
4283
4271
  | ---------- | ---- | -------- | ----------- |
4284
- | start | string | no | |
4285
- | cron | string | no | |
4286
- | end | string | no | |
4287
- | duration | number | no | |
4288
- | next_schedule | [string] | no | |
4272
+ | payable_by | string | yes | |
4273
+ | payable_category | string | yes | |
4289
4274
 
4290
4275
  ---
4291
4276
 
@@ -4296,22 +4281,41 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
4296
4281
 
4297
4282
  | Properties | Type | Nullable | Description |
4298
4283
  | ---------- | ---- | -------- | ----------- |
4299
- | type_slug | string | yes | |
4300
- | identifiers | [Identifier](#Identifier) | yes | |
4301
4284
  | validity | [Validity](#Validity) | yes | |
4302
- | date_meta | [CouponDateMeta](#CouponDateMeta) | no | |
4285
+ | identifiers | [Identifier](#Identifier) | yes | |
4303
4286
  | code | string | yes | |
4304
- | ownership | [Ownership](#Ownership) | yes | |
4287
+ | author | [CouponAuthor](#CouponAuthor) | no | |
4288
+ | date_meta | [CouponDateMeta](#CouponDateMeta) | no | |
4305
4289
  | validation | [Validation](#Validation) | no | |
4306
4290
  | restrictions | [Restrictions](#Restrictions) | no | |
4291
+ | _schedule | [CouponSchedule](#CouponSchedule) | no | |
4307
4292
  | display_meta | [DisplayMeta](#DisplayMeta) | yes | |
4308
4293
  | state | [State](#State) | no | |
4309
- | tags | [string] | no | |
4310
- | rule | [[Rule](#Rule)] | yes | |
4311
- | author | [CouponAuthor](#CouponAuthor) | no | |
4312
4294
  | action | [CouponAction](#CouponAction) | no | |
4295
+ | rule | [[Rule](#Rule)] | yes | |
4296
+ | tags | [string] | no | |
4313
4297
  | rule_definition | [RuleDefinition](#RuleDefinition) | yes | |
4314
- | _schedule | [CouponSchedule](#CouponSchedule) | no | |
4298
+ | ownership | [Ownership](#Ownership) | yes | |
4299
+ | type_slug | string | yes | |
4300
+
4301
+ ---
4302
+
4303
+
4304
+
4305
+
4306
+ #### [Page](#Page)
4307
+
4308
+ | Properties | Type | Nullable | Description |
4309
+ | ---------- | ---- | -------- | ----------- |
4310
+ | size | number | no | Current request page size |
4311
+ | next_id | string | no | Cursor id for next set of records. |
4312
+ | last_id | string | no | Last objects id |
4313
+ | item_total | number | no | Total coupon count in system |
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 | |
4315
4319
 
4316
4320
  ---
4317
4321
 
@@ -4322,8 +4326,8 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
4322
4326
 
4323
4327
  | Properties | Type | Nullable | Description |
4324
4328
  | ---------- | ---- | -------- | ----------- |
4325
- | page | [Page](#Page) | no | |
4326
4329
  | items | [CouponAdd](#CouponAdd) | no | |
4330
+ | page | [Page](#Page) | no | |
4327
4331
 
4328
4332
  ---
4329
4333
 
@@ -4358,22 +4362,22 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
4358
4362
 
4359
4363
  | Properties | Type | Nullable | Description |
4360
4364
  | ---------- | ---- | -------- | ----------- |
4361
- | type_slug | string | yes | |
4362
- | identifiers | [Identifier](#Identifier) | yes | |
4363
4365
  | validity | [Validity](#Validity) | yes | |
4364
- | date_meta | [CouponDateMeta](#CouponDateMeta) | no | |
4366
+ | identifiers | [Identifier](#Identifier) | yes | |
4365
4367
  | code | string | yes | |
4366
- | ownership | [Ownership](#Ownership) | yes | |
4368
+ | author | [CouponAuthor](#CouponAuthor) | no | |
4369
+ | date_meta | [CouponDateMeta](#CouponDateMeta) | no | |
4367
4370
  | validation | [Validation](#Validation) | no | |
4368
4371
  | restrictions | [Restrictions](#Restrictions) | no | |
4372
+ | _schedule | [CouponSchedule](#CouponSchedule) | no | |
4369
4373
  | display_meta | [DisplayMeta](#DisplayMeta) | yes | |
4370
4374
  | state | [State](#State) | no | |
4371
- | tags | [string] | no | |
4372
- | rule | [[Rule](#Rule)] | yes | |
4373
- | author | [CouponAuthor](#CouponAuthor) | no | |
4374
4375
  | action | [CouponAction](#CouponAction) | no | |
4376
+ | rule | [[Rule](#Rule)] | yes | |
4377
+ | tags | [string] | no | |
4375
4378
  | rule_definition | [RuleDefinition](#RuleDefinition) | yes | |
4376
- | _schedule | [CouponSchedule](#CouponSchedule) | no | |
4379
+ | ownership | [Ownership](#Ownership) | yes | |
4380
+ | type_slug | string | yes | |
4377
4381
 
4378
4382
  ---
4379
4383
 
@@ -4384,32 +4388,21 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
4384
4388
 
4385
4389
  | Properties | Type | Nullable | Description |
4386
4390
  | ---------- | ---- | -------- | ----------- |
4387
- | archive | boolean | no | Send true to unpublish coupon |
4388
4391
  | schedule | [CouponSchedule](#CouponSchedule) | no | |
4392
+ | archive | boolean | no | Send true to unpublish coupon |
4389
4393
 
4390
4394
  ---
4391
4395
 
4392
4396
 
4393
4397
 
4394
4398
 
4395
- #### [PromotionDateMeta](#PromotionDateMeta)
4396
-
4397
- | Properties | Type | Nullable | Description |
4398
- | ---------- | ---- | -------- | ----------- |
4399
- | modified_on | string | no | |
4400
- | created_on | string | no | |
4401
-
4402
- ---
4403
-
4404
-
4405
-
4406
-
4407
- #### [Visibility](#Visibility)
4399
+ #### [DisplayMeta1](#DisplayMeta1)
4408
4400
 
4409
4401
  | Properties | Type | Nullable | Description |
4410
4402
  | ---------- | ---- | -------- | ----------- |
4411
- | coupon_list | boolean | yes | |
4412
- | pdp | boolean | yes | |
4403
+ | offer_text | string | no | |
4404
+ | description | string | no | |
4405
+ | name | string | no | |
4413
4406
 
4414
4407
  ---
4415
4408
 
@@ -4420,13 +4413,13 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
4420
4413
 
4421
4414
  | Properties | Type | Nullable | Description |
4422
4415
  | ---------- | ---- | -------- | ----------- |
4423
- | discount_price | number | no | |
4424
- | max_discount_amount | number | no | |
4425
4416
  | code | string | no | |
4426
- | min_offer_quantity | number | no | |
4427
4417
  | max_offer_quantity | number | no | |
4428
4418
  | discount_amount | number | no | |
4419
+ | max_discount_amount | number | no | |
4429
4420
  | discount_percentage | number | no | |
4421
+ | min_offer_quantity | number | no | |
4422
+ | discount_price | number | no | |
4430
4423
 
4431
4424
  ---
4432
4425
 
@@ -4437,11 +4430,11 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
4437
4430
 
4438
4431
  | Properties | Type | Nullable | Description |
4439
4432
  | ---------- | ---- | -------- | ----------- |
4440
- | less_than | number | no | |
4433
+ | greater_than_equals | number | no | |
4434
+ | greater_than | number | no | |
4441
4435
  | less_than_equals | number | no | |
4436
+ | less_than | number | no | |
4442
4437
  | equals | number | no | |
4443
- | greater_than | number | no | |
4444
- | greater_than_equals | number | no | |
4445
4438
 
4446
4439
  ---
4447
4440
 
@@ -4452,22 +4445,22 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
4452
4445
 
4453
4446
  | Properties | Type | Nullable | Description |
4454
4447
  | ---------- | ---- | -------- | ----------- |
4455
- | all_items | boolean | no | |
4456
- | item_exclude_company | [number] | no | |
4457
- | item_sku | [string] | no | |
4458
- | item_exclude_brand | [number] | no | |
4459
- | item_brand | [number] | no | |
4448
+ | item_store | [number] | no | |
4449
+ | cart_total | [CompareObject](#CompareObject) | no | |
4460
4450
  | item_company | [number] | no | |
4461
- | item_exclude_store | [number] | no | |
4462
- | item_exclude_sku | [string] | no | |
4463
4451
  | item_exclude_category | [number] | no | |
4464
- | buy_rules | [string] | no | |
4452
+ | item_category | [number] | no | |
4453
+ | item_exclude_brand | [number] | no | |
4454
+ | item_brand | [number] | no | |
4465
4455
  | cart_quantity | [CompareObject](#CompareObject) | no | |
4466
- | item_store | [number] | no | |
4467
- | cart_total | [CompareObject](#CompareObject) | no | |
4456
+ | item_exclude_company | [number] | no | |
4457
+ | all_items | boolean | no | |
4468
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 | |
4469
4463
  | item_id | [number] | no | |
4470
- | item_category | [number] | no | |
4471
4464
 
4472
4465
  ---
4473
4466
 
@@ -4479,57 +4472,69 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
4479
4472
  | Properties | Type | Nullable | Description |
4480
4473
  | ---------- | ---- | -------- | ----------- |
4481
4474
  | discount_type | string | yes | |
4475
+ | buy_condition | string | yes | |
4482
4476
  | offer | [DiscountOffer](#DiscountOffer) | yes | |
4483
4477
  | item_criteria | [ItemCriteria](#ItemCriteria) | yes | |
4484
- | buy_condition | string | yes | |
4485
4478
 
4486
4479
  ---
4487
4480
 
4488
4481
 
4489
4482
 
4490
4483
 
4491
- #### [PostOrder1](#PostOrder1)
4484
+ #### [Ownership1](#Ownership1)
4492
4485
 
4493
4486
  | Properties | Type | Nullable | Description |
4494
4487
  | ---------- | ---- | -------- | ----------- |
4495
- | cancellation_allowed | boolean | no | |
4496
- | return_allowed | boolean | no | |
4488
+ | payable_by | string | yes | |
4489
+ | payable_category | string | yes | |
4497
4490
 
4498
4491
  ---
4499
4492
 
4500
4493
 
4501
4494
 
4502
4495
 
4503
- #### [UsesRemaining1](#UsesRemaining1)
4496
+ #### [PromotionDateMeta](#PromotionDateMeta)
4504
4497
 
4505
4498
  | Properties | Type | Nullable | Description |
4506
4499
  | ---------- | ---- | -------- | ----------- |
4507
- | total | number | no | |
4508
- | user | number | no | |
4500
+ | modified_on | string | no | |
4501
+ | created_on | string | no | |
4509
4502
 
4510
4503
  ---
4511
4504
 
4512
4505
 
4513
4506
 
4514
4507
 
4515
- #### [UsesRestriction1](#UsesRestriction1)
4508
+ #### [UserRegistered](#UserRegistered)
4516
4509
 
4517
4510
  | Properties | Type | Nullable | Description |
4518
4511
  | ---------- | ---- | -------- | ----------- |
4519
- | maximum | [UsesRemaining1](#UsesRemaining1) | no | |
4520
- | remaining | [UsesRemaining1](#UsesRemaining1) | no | |
4512
+ | end | string | no | |
4513
+ | start | string | no | |
4521
4514
 
4522
4515
  ---
4523
4516
 
4524
4517
 
4525
4518
 
4526
4519
 
4527
- #### [UserRegistered](#UserRegistered)
4520
+ #### [UsesRemaining1](#UsesRemaining1)
4528
4521
 
4529
4522
  | Properties | Type | Nullable | Description |
4530
4523
  | ---------- | ---- | -------- | ----------- |
4531
- | start | string | no | |
4532
- | end | string | no | |
4524
+ | user | number | no | |
4525
+ | total | number | no | |
4526
+
4527
+ ---
4528
+
4529
+
4530
+
4531
+
4532
+ #### [UsesRestriction1](#UsesRestriction1)
4533
+
4534
+ | Properties | Type | Nullable | Description |
4535
+ | ---------- | ---- | -------- | ----------- |
4536
+ | remaining | [UsesRemaining1](#UsesRemaining1) | no | |
4537
+ | maximum | [UsesRemaining1](#UsesRemaining1) | no | |
4533
4538
 
4534
4539
  ---
4535
4540
 
@@ -4551,93 +4556,92 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
4551
4556
 
4552
4557
  | Properties | Type | Nullable | Description |
4553
4558
  | ---------- | ---- | -------- | ----------- |
4554
- | type | string | yes | |
4555
- | codes | [string] | no | |
4556
4559
  | uses | [PaymentAllowValue1](#PaymentAllowValue1) | no | |
4560
+ | codes | [string] | no | |
4561
+ | type | string | yes | |
4557
4562
 
4558
4563
  ---
4559
4564
 
4560
4565
 
4561
4566
 
4562
4567
 
4563
- #### [Restrictions1](#Restrictions1)
4568
+ #### [PostOrder1](#PostOrder1)
4564
4569
 
4565
4570
  | Properties | Type | Nullable | Description |
4566
4571
  | ---------- | ---- | -------- | ----------- |
4567
- | user_id | [string] | no | |
4568
- | user_groups | [number] | no | |
4569
- | anonymous_users | boolean | no | |
4570
- | post_order | [PostOrder1](#PostOrder1) | no | |
4571
- | uses | [UsesRestriction1](#UsesRestriction1) | yes | |
4572
- | order_quantity | number | no | |
4573
- | platforms | [string] | no | |
4574
- | user_registered | [UserRegistered](#UserRegistered) | no | |
4575
- | payments | [[PromotionPaymentModes](#PromotionPaymentModes)] | no | |
4572
+ | cancellation_allowed | boolean | no | |
4573
+ | return_allowed | boolean | no | |
4576
4574
 
4577
4575
  ---
4578
4576
 
4579
4577
 
4580
4578
 
4581
4579
 
4582
- #### [PromotionAuthor](#PromotionAuthor)
4580
+ #### [Restrictions1](#Restrictions1)
4583
4581
 
4584
4582
  | Properties | Type | Nullable | Description |
4585
4583
  | ---------- | ---- | -------- | ----------- |
4586
- | created_by | string | no | |
4587
- | modified_by | string | no | |
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 | |
4588
4593
 
4589
4594
  ---
4590
4595
 
4591
4596
 
4592
4597
 
4593
4598
 
4594
- #### [PromotionAction](#PromotionAction)
4599
+ #### [PromotionSchedule](#PromotionSchedule)
4595
4600
 
4596
4601
  | Properties | Type | Nullable | Description |
4597
4602
  | ---------- | ---- | -------- | ----------- |
4598
- | action_type | string | yes | |
4599
- | action_date | string | yes | |
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 | |
4600
4609
 
4601
4610
  ---
4602
4611
 
4603
4612
 
4604
4613
 
4605
4614
 
4606
- #### [Ownership1](#Ownership1)
4615
+ #### [PromotionAuthor](#PromotionAuthor)
4607
4616
 
4608
4617
  | Properties | Type | Nullable | Description |
4609
4618
  | ---------- | ---- | -------- | ----------- |
4610
- | payable_by | string | yes | |
4611
- | payable_category | string | yes | |
4619
+ | modified_by | string | no | |
4620
+ | created_by | string | no | |
4612
4621
 
4613
4622
  ---
4614
4623
 
4615
4624
 
4616
4625
 
4617
4626
 
4618
- #### [DisplayMeta1](#DisplayMeta1)
4627
+ #### [Visibility](#Visibility)
4619
4628
 
4620
4629
  | Properties | Type | Nullable | Description |
4621
4630
  | ---------- | ---- | -------- | ----------- |
4622
- | name | string | no | |
4623
- | offer_text | string | no | |
4624
- | description | string | no | |
4631
+ | pdp | boolean | yes | |
4632
+ | coupon_list | boolean | yes | |
4625
4633
 
4626
4634
  ---
4627
4635
 
4628
4636
 
4629
4637
 
4630
4638
 
4631
- #### [PromotionSchedule](#PromotionSchedule)
4639
+ #### [PromotionAction](#PromotionAction)
4632
4640
 
4633
4641
  | Properties | Type | Nullable | Description |
4634
4642
  | ---------- | ---- | -------- | ----------- |
4635
- | start | string | yes | |
4636
- | cron | string | no | |
4637
- | published | boolean | yes | |
4638
- | end | string | no | |
4639
- | duration | number | no | |
4640
- | next_schedule | [string] | no | |
4643
+ | action_type | string | yes | |
4644
+ | action_date | string | yes | |
4641
4645
 
4642
4646
  ---
4643
4647
 
@@ -4648,27 +4652,27 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
4648
4652
 
4649
4653
  | Properties | Type | Nullable | Description |
4650
4654
  | ---------- | ---- | -------- | ----------- |
4651
- | date_meta | [PromotionDateMeta](#PromotionDateMeta) | no | |
4652
- | currency | string | no | |
4653
- | visiblility | [Visibility](#Visibility) | no | |
4654
- | mode | string | yes | |
4655
+ | apply_exclusive | string | no | |
4656
+ | stackable | boolean | no | |
4657
+ | display_meta | [DisplayMeta1](#DisplayMeta1) | yes | |
4658
+ | apply_all_discount | boolean | no | |
4655
4659
  | discount_rules | [[DiscountRule](#DiscountRule)] | yes | |
4660
+ | ownership | [Ownership1](#Ownership1) | yes | |
4661
+ | promo_group | string | yes | |
4656
4662
  | apply_priority | number | no | |
4657
- | application_id | string | yes | |
4658
- | apply_all_discount | boolean | no | |
4659
- | code | string | no | |
4660
- | promotion_type | string | yes | |
4663
+ | date_meta | [PromotionDateMeta](#PromotionDateMeta) | no | |
4661
4664
  | restrictions | [Restrictions1](#Restrictions1) | no | |
4665
+ | _schedule | [PromotionSchedule](#PromotionSchedule) | no | |
4662
4666
  | buy_rules | [String: [ItemCriteria](#ItemCriteria)] | yes | |
4667
+ | promotion_type | string | yes | |
4668
+ | mode | string | yes | |
4669
+ | application_id | string | yes | |
4670
+ | _custom_json | string | no | |
4671
+ | currency | string | no | |
4672
+ | code | string | no | |
4663
4673
  | author | [PromotionAuthor](#PromotionAuthor) | no | |
4674
+ | visiblility | [Visibility](#Visibility) | no | |
4664
4675
  | post_order_action | [PromotionAction](#PromotionAction) | no | |
4665
- | apply_exclusive | string | no | |
4666
- | ownership | [Ownership1](#Ownership1) | yes | |
4667
- | stackable | boolean | no | |
4668
- | display_meta | [DisplayMeta1](#DisplayMeta1) | yes | |
4669
- | promo_group | string | yes | |
4670
- | _custom_json | string | no | |
4671
- | _schedule | [PromotionSchedule](#PromotionSchedule) | no | |
4672
4676
 
4673
4677
  ---
4674
4678
 
@@ -4679,8 +4683,8 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
4679
4683
 
4680
4684
  | Properties | Type | Nullable | Description |
4681
4685
  | ---------- | ---- | -------- | ----------- |
4682
- | page | [Page](#Page) | no | |
4683
4686
  | items | [PromotionListItem](#PromotionListItem) | no | |
4687
+ | page | [Page](#Page) | no | |
4684
4688
 
4685
4689
  ---
4686
4690
 
@@ -4691,27 +4695,27 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
4691
4695
 
4692
4696
  | Properties | Type | Nullable | Description |
4693
4697
  | ---------- | ---- | -------- | ----------- |
4694
- | date_meta | [PromotionDateMeta](#PromotionDateMeta) | no | |
4695
- | currency | string | no | |
4696
- | visiblility | [Visibility](#Visibility) | no | |
4697
- | mode | string | yes | |
4698
+ | apply_exclusive | string | no | |
4699
+ | stackable | boolean | no | |
4700
+ | display_meta | [DisplayMeta1](#DisplayMeta1) | yes | |
4701
+ | apply_all_discount | boolean | no | |
4698
4702
  | discount_rules | [[DiscountRule](#DiscountRule)] | yes | |
4703
+ | ownership | [Ownership1](#Ownership1) | yes | |
4704
+ | promo_group | string | yes | |
4699
4705
  | apply_priority | number | no | |
4700
- | application_id | string | yes | |
4701
- | apply_all_discount | boolean | no | |
4702
- | code | string | no | |
4703
- | promotion_type | string | yes | |
4706
+ | date_meta | [PromotionDateMeta](#PromotionDateMeta) | no | |
4704
4707
  | restrictions | [Restrictions1](#Restrictions1) | no | |
4708
+ | _schedule | [PromotionSchedule](#PromotionSchedule) | no | |
4705
4709
  | buy_rules | [String: [ItemCriteria](#ItemCriteria)] | yes | |
4710
+ | promotion_type | string | yes | |
4711
+ | mode | string | yes | |
4712
+ | application_id | string | yes | |
4713
+ | _custom_json | string | no | |
4714
+ | currency | string | no | |
4715
+ | code | string | no | |
4706
4716
  | author | [PromotionAuthor](#PromotionAuthor) | no | |
4717
+ | visiblility | [Visibility](#Visibility) | no | |
4707
4718
  | post_order_action | [PromotionAction](#PromotionAction) | no | |
4708
- | apply_exclusive | string | no | |
4709
- | ownership | [Ownership1](#Ownership1) | yes | |
4710
- | stackable | boolean | no | |
4711
- | display_meta | [DisplayMeta1](#DisplayMeta1) | yes | |
4712
- | promo_group | string | yes | |
4713
- | _custom_json | string | no | |
4714
- | _schedule | [PromotionSchedule](#PromotionSchedule) | no | |
4715
4719
 
4716
4720
  ---
4717
4721
 
@@ -4722,27 +4726,27 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
4722
4726
 
4723
4727
  | Properties | Type | Nullable | Description |
4724
4728
  | ---------- | ---- | -------- | ----------- |
4725
- | date_meta | [PromotionDateMeta](#PromotionDateMeta) | no | |
4726
- | currency | string | no | |
4727
- | visiblility | [Visibility](#Visibility) | no | |
4728
- | mode | string | yes | |
4729
+ | apply_exclusive | string | no | |
4730
+ | stackable | boolean | no | |
4731
+ | display_meta | [DisplayMeta1](#DisplayMeta1) | yes | |
4732
+ | apply_all_discount | boolean | no | |
4729
4733
  | discount_rules | [[DiscountRule](#DiscountRule)] | yes | |
4734
+ | ownership | [Ownership1](#Ownership1) | yes | |
4735
+ | promo_group | string | yes | |
4730
4736
  | apply_priority | number | no | |
4731
- | application_id | string | yes | |
4732
- | apply_all_discount | boolean | no | |
4733
- | code | string | no | |
4734
- | promotion_type | string | yes | |
4737
+ | date_meta | [PromotionDateMeta](#PromotionDateMeta) | no | |
4735
4738
  | restrictions | [Restrictions1](#Restrictions1) | no | |
4739
+ | _schedule | [PromotionSchedule](#PromotionSchedule) | no | |
4736
4740
  | buy_rules | [String: [ItemCriteria](#ItemCriteria)] | yes | |
4741
+ | promotion_type | string | yes | |
4742
+ | mode | string | yes | |
4743
+ | application_id | string | yes | |
4744
+ | _custom_json | string | no | |
4745
+ | currency | string | no | |
4746
+ | code | string | no | |
4737
4747
  | author | [PromotionAuthor](#PromotionAuthor) | no | |
4748
+ | visiblility | [Visibility](#Visibility) | no | |
4738
4749
  | post_order_action | [PromotionAction](#PromotionAction) | no | |
4739
- | apply_exclusive | string | no | |
4740
- | ownership | [Ownership1](#Ownership1) | yes | |
4741
- | stackable | boolean | no | |
4742
- | display_meta | [DisplayMeta1](#DisplayMeta1) | yes | |
4743
- | promo_group | string | yes | |
4744
- | _custom_json | string | no | |
4745
- | _schedule | [PromotionSchedule](#PromotionSchedule) | no | |
4746
4750
 
4747
4751
  ---
4748
4752
 
@@ -4753,8 +4757,8 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
4753
4757
 
4754
4758
  | Properties | Type | Nullable | Description |
4755
4759
  | ---------- | ---- | -------- | ----------- |
4756
- | archive | boolean | no | Send true to unpublish promotion |
4757
4760
  | schedule | [PromotionSchedule](#PromotionSchedule) | no | |
4761
+ | archive | boolean | no | Send true to unpublish promotion |
4758
4762
 
4759
4763
  ---
4760
4764
 
@@ -4785,107 +4789,92 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
4785
4789
 
4786
4790
 
4787
4791
 
4788
- #### [RawBreakup](#RawBreakup)
4792
+ #### [ProductPrice](#ProductPrice)
4789
4793
 
4790
4794
  | Properties | Type | Nullable | Description |
4791
4795
  | ---------- | ---- | -------- | ----------- |
4792
- | cod_charge | number | no | |
4793
- | convenience_fee | number | no | |
4794
- | coupon | number | no | |
4795
- | mrp_total | number | no | |
4796
- | total | number | no | |
4797
- | delivery_charge | number | no | |
4798
- | fynd_cash | number | no | |
4799
- | you_saved | number | no | |
4800
- | discount | number | no | |
4801
- | gst_charges | number | no | |
4802
- | vog | number | no | |
4803
- | subtotal | number | no | |
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 | |
4804
4802
 
4805
4803
  ---
4806
4804
 
4807
4805
 
4808
4806
 
4809
4807
 
4810
- #### [DisplayBreakup](#DisplayBreakup)
4808
+ #### [ProductPriceInfo](#ProductPriceInfo)
4811
4809
 
4812
4810
  | Properties | Type | Nullable | Description |
4813
4811
  | ---------- | ---- | -------- | ----------- |
4814
- | display | string | no | |
4815
- | currency_symbol | string | no | |
4816
- | value | number | no | |
4817
- | currency_code | string | no | |
4818
- | message | [string] | no | |
4819
- | key | string | no | |
4812
+ | base | [ProductPrice](#ProductPrice) | no | |
4813
+ | converted | [ProductPrice](#ProductPrice) | no | |
4820
4814
 
4821
4815
  ---
4822
4816
 
4823
4817
 
4824
4818
 
4825
4819
 
4826
- #### [CouponBreakup](#CouponBreakup)
4820
+ #### [CartProductIdentifer](#CartProductIdentifer)
4827
4821
 
4828
4822
  | Properties | Type | Nullable | Description |
4829
4823
  | ---------- | ---- | -------- | ----------- |
4830
- | type | string | no | |
4831
- | code | string | no | |
4832
- | uid | string | no | |
4833
- | value | number | no | |
4834
- | is_applied | boolean | no | |
4835
- | message | string | no | |
4824
+ | identifier | string | no | Article idenfier generated by cart |
4836
4825
 
4837
4826
  ---
4838
4827
 
4839
4828
 
4840
4829
 
4841
4830
 
4842
- #### [LoyaltyPoints](#LoyaltyPoints)
4831
+ #### [Ownership2](#Ownership2)
4843
4832
 
4844
4833
  | Properties | Type | Nullable | Description |
4845
4834
  | ---------- | ---- | -------- | ----------- |
4846
- | total | number | no | |
4847
- | is_applied | boolean | no | |
4848
- | applicable | number | no | |
4849
- | description | string | no | |
4835
+ | payable_by | string | no | promo amount bearable party |
4836
+ | payable_category | string | no | promo amount payable category |
4850
4837
 
4851
4838
  ---
4852
4839
 
4853
4840
 
4854
4841
 
4855
4842
 
4856
- #### [CartBreakup](#CartBreakup)
4843
+ #### [AppliedPromotion](#AppliedPromotion)
4857
4844
 
4858
4845
  | Properties | Type | Nullable | Description |
4859
4846
  | ---------- | ---- | -------- | ----------- |
4860
- | raw | [RawBreakup](#RawBreakup) | no | |
4861
- | display | [[DisplayBreakup](#DisplayBreakup)] | no | |
4862
- | coupon | [CouponBreakup](#CouponBreakup) | no | |
4863
- | loyalty_points | [LoyaltyPoints](#LoyaltyPoints) | no | |
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 |
4864
4854
 
4865
4855
  ---
4866
4856
 
4867
4857
 
4868
4858
 
4869
4859
 
4870
- #### [ProductImage](#ProductImage)
4860
+ #### [PromoMeta](#PromoMeta)
4871
4861
 
4872
4862
  | Properties | Type | Nullable | Description |
4873
4863
  | ---------- | ---- | -------- | ----------- |
4874
- | secure_url | string | no | |
4875
- | aspect_ratio | string | no | |
4876
- | url | string | no | |
4864
+ | message | string | no | |
4877
4865
 
4878
4866
  ---
4879
4867
 
4880
4868
 
4881
4869
 
4882
4870
 
4883
- #### [BaseInfo](#BaseInfo)
4871
+ #### [ProductImage](#ProductImage)
4884
4872
 
4885
4873
  | Properties | Type | Nullable | Description |
4886
4874
  | ---------- | ---- | -------- | ----------- |
4887
- | name | string | no | |
4888
- | uid | number | no | |
4875
+ | secure_url | string | no | |
4876
+ | url | string | no | |
4877
+ | aspect_ratio | string | no | |
4889
4878
 
4890
4879
  ---
4891
4880
 
@@ -4919,42 +4908,52 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
4919
4908
 
4920
4909
  | Properties | Type | Nullable | Description |
4921
4910
  | ---------- | ---- | -------- | ----------- |
4922
- | type | string | no | |
4923
4911
  | query | [ActionQuery](#ActionQuery) | no | |
4924
4912
  | url | string | no | |
4913
+ | type | string | no | |
4925
4914
 
4926
4915
  ---
4927
4916
 
4928
4917
 
4929
4918
 
4930
4919
 
4931
- #### [CartProduct](#CartProduct)
4920
+ #### [BaseInfo](#BaseInfo)
4932
4921
 
4933
4922
  | Properties | Type | Nullable | Description |
4934
4923
  | ---------- | ---- | -------- | ----------- |
4935
- | type | string | no | |
4936
- | images | [[ProductImage](#ProductImage)] | no | |
4937
4924
  | name | string | no | |
4938
- | slug | string | no | Unique product url name generated via product name and other meta data |
4939
4925
  | uid | number | no | |
4940
- | brand | [BaseInfo](#BaseInfo) | no | |
4926
+
4927
+ ---
4928
+
4929
+
4930
+
4931
+
4932
+ #### [CartProduct](#CartProduct)
4933
+
4934
+ | Properties | Type | Nullable | Description |
4935
+ | ---------- | ---- | -------- | ----------- |
4936
+ | name | string | no | |
4937
+ | images | [[ProductImage](#ProductImage)] | no | |
4941
4938
  | categories | [[CategoryInfo](#CategoryInfo)] | no | |
4942
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 | |
4943
+ | uid | number | no | |
4943
4944
 
4944
4945
  ---
4945
4946
 
4946
4947
 
4947
4948
 
4948
4949
 
4949
- #### [ProductPrice](#ProductPrice)
4950
+ #### [BasePrice](#BasePrice)
4950
4951
 
4951
4952
  | Properties | Type | Nullable | Description |
4952
4953
  | ---------- | ---- | -------- | ----------- |
4953
- | selling | number | no | |
4954
+ | currency_symbol | string | no | |
4954
4955
  | marked | number | no | |
4955
- | add_on | number | no | |
4956
4956
  | effective | number | no | |
4957
- | currency_symbol | string | no | |
4958
4957
  | currency_code | string | no | |
4959
4958
 
4960
4959
  ---
@@ -4962,137 +4961,155 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
4962
4961
 
4963
4962
 
4964
4963
 
4965
- #### [ProductPriceInfo](#ProductPriceInfo)
4964
+ #### [ArticlePriceInfo](#ArticlePriceInfo)
4966
4965
 
4967
4966
  | Properties | Type | Nullable | Description |
4968
4967
  | ---------- | ---- | -------- | ----------- |
4969
- | base | [ProductPrice](#ProductPrice) | no | |
4970
- | converted | [ProductPrice](#ProductPrice) | no | |
4968
+ | base | [BasePrice](#BasePrice) | no | |
4969
+ | converted | [BasePrice](#BasePrice) | no | |
4971
4970
 
4972
4971
  ---
4973
4972
 
4974
4973
 
4975
4974
 
4976
4975
 
4977
- #### [CartProductIdentifer](#CartProductIdentifer)
4976
+ #### [ProductArticle](#ProductArticle)
4978
4977
 
4979
4978
  | Properties | Type | Nullable | Description |
4980
4979
  | ---------- | ---- | -------- | ----------- |
4981
- | identifier | string | no | Article idenfier generated by cart |
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 | |
4982
4990
 
4983
4991
  ---
4984
4992
 
4985
4993
 
4986
4994
 
4987
4995
 
4988
- #### [AppliedPromotion](#AppliedPromotion)
4996
+ #### [ProductAvailability](#ProductAvailability)
4989
4997
 
4990
4998
  | Properties | Type | Nullable | Description |
4991
4999
  | ---------- | ---- | -------- | ----------- |
4992
- | article_quantity | number | no | Quantity of article on which promotion is applicable |
4993
- | promo_id | string | no | Promotion id |
4994
- | offer_text | string | no | Offer text of current promotion |
4995
- | amount | number | no | Per unit discount amount applied with current promotion |
4996
- | mrp_promotion | boolean | no | If applied promotion is applied on product MRP or ESP |
4997
- | promotion_type | string | no | Promotion type of current promotion |
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 | |
4998
5005
 
4999
5006
  ---
5000
5007
 
5001
5008
 
5002
5009
 
5003
5010
 
5004
- #### [PromoMeta](#PromoMeta)
5011
+ #### [CartProductInfo](#CartProductInfo)
5005
5012
 
5006
5013
  | Properties | Type | Nullable | Description |
5007
5014
  | ---------- | ---- | -------- | ----------- |
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 | |
5008
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 | |
5009
5031
 
5010
5032
  ---
5011
5033
 
5012
5034
 
5013
5035
 
5014
5036
 
5015
- #### [ProductAvailability](#ProductAvailability)
5037
+ #### [CouponBreakup](#CouponBreakup)
5016
5038
 
5017
5039
  | Properties | Type | Nullable | Description |
5018
5040
  | ---------- | ---- | -------- | ----------- |
5019
- | is_valid | boolean | no | |
5020
- | sizes | [string] | no | |
5021
- | other_store_quantity | number | no | |
5022
- | out_of_stock | boolean | no | |
5023
- | deliverable | boolean | no | |
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 | |
5024
5047
 
5025
5048
  ---
5026
5049
 
5027
5050
 
5028
5051
 
5029
5052
 
5030
- #### [BasePrice](#BasePrice)
5053
+ #### [LoyaltyPoints](#LoyaltyPoints)
5031
5054
 
5032
5055
  | Properties | Type | Nullable | Description |
5033
5056
  | ---------- | ---- | -------- | ----------- |
5034
- | effective | number | no | |
5035
- | currency_code | string | no | |
5036
- | currency_symbol | string | no | |
5037
- | marked | number | no | |
5057
+ | is_applied | boolean | no | |
5058
+ | description | string | no | |
5059
+ | applicable | number | no | |
5060
+ | total | number | no | |
5038
5061
 
5039
5062
  ---
5040
5063
 
5041
5064
 
5042
5065
 
5043
5066
 
5044
- #### [ArticlePriceInfo](#ArticlePriceInfo)
5067
+ #### [DisplayBreakup](#DisplayBreakup)
5045
5068
 
5046
5069
  | Properties | Type | Nullable | Description |
5047
5070
  | ---------- | ---- | -------- | ----------- |
5048
- | base | [BasePrice](#BasePrice) | no | |
5049
- | converted | [BasePrice](#BasePrice) | no | |
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 | |
5050
5077
 
5051
5078
  ---
5052
5079
 
5053
5080
 
5054
5081
 
5055
5082
 
5056
- #### [ProductArticle](#ProductArticle)
5083
+ #### [RawBreakup](#RawBreakup)
5057
5084
 
5058
5085
  | Properties | Type | Nullable | Description |
5059
5086
  | ---------- | ---- | -------- | ----------- |
5060
- | type | string | no | |
5061
- | seller | [BaseInfo](#BaseInfo) | no | |
5062
- | product_group_tags | [string] | no | |
5063
- | size | string | no | |
5064
- | store | [BaseInfo](#BaseInfo) | no | |
5065
- | extra_meta | string | no | |
5066
- | uid | string | no | |
5067
- | quantity | number | no | |
5068
- | parent_item_identifiers | string | no | |
5069
- | price | [ArticlePriceInfo](#ArticlePriceInfo) | no | |
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 | |
5070
5099
 
5071
5100
  ---
5072
5101
 
5073
5102
 
5074
5103
 
5075
5104
 
5076
- #### [CartProductInfo](#CartProductInfo)
5105
+ #### [CartBreakup](#CartBreakup)
5077
5106
 
5078
5107
  | Properties | Type | Nullable | Description |
5079
5108
  | ---------- | ---- | -------- | ----------- |
5080
- | product | [CartProduct](#CartProduct) | no | |
5081
- | price_per_unit | [ProductPriceInfo](#ProductPriceInfo) | no | |
5082
- | identifiers | [CartProductIdentifer](#CartProductIdentifer) | yes | |
5083
- | promotions_applied | [[AppliedPromotion](#AppliedPromotion)] | no | |
5084
- | promo_meta | [PromoMeta](#PromoMeta) | no | |
5085
- | discount | string | no | |
5086
- | is_set | boolean | no | |
5087
- | quantity | number | no | |
5088
- | coupon_message | string | no | |
5089
- | parent_item_identifiers | string | no | |
5090
- | bulk_offer | string | no | |
5091
- | availability | [ProductAvailability](#ProductAvailability) | no | |
5092
- | article | [ProductArticle](#ProductArticle) | no | |
5093
- | message | string | no | |
5094
- | key | string | no | |
5095
- | price | [ProductPriceInfo](#ProductPriceInfo) | no | |
5109
+ | coupon | [CouponBreakup](#CouponBreakup) | no | |
5110
+ | loyalty_points | [LoyaltyPoints](#LoyaltyPoints) | no | |
5111
+ | display | [[DisplayBreakup](#DisplayBreakup)] | no | |
5112
+ | raw | [RawBreakup](#RawBreakup) | no | |
5096
5113
 
5097
5114
  ---
5098
5115
 
@@ -5103,10 +5120,10 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
5103
5120
 
5104
5121
  | Properties | Type | Nullable | Description |
5105
5122
  | ---------- | ---- | -------- | ----------- |
5106
- | message | string | no | |
5123
+ | items | [[CartProductInfo](#CartProductInfo)] | no | |
5107
5124
  | is_valid | boolean | no | |
5108
5125
  | breakup_values | [CartBreakup](#CartBreakup) | no | |
5109
- | items | [[CartProductInfo](#CartProductInfo)] | no | |
5126
+ | message | string | no | |
5110
5127
 
5111
5128
  ---
5112
5129
 
@@ -5117,9 +5134,9 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
5117
5134
 
5118
5135
  | Properties | Type | Nullable | Description |
5119
5136
  | ---------- | ---- | -------- | ----------- |
5137
+ | errors | string | no | Contains field name which has error as key and error message as value |
5120
5138
  | success | boolean | no | |
5121
5139
  | message | string | no | |
5122
- | errors | string | no | Contains field name which has error as key and error message as value |
5123
5140
 
5124
5141
  ---
5125
5142
 
@@ -5130,21 +5147,21 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
5130
5147
 
5131
5148
  | Properties | Type | Nullable | Description |
5132
5149
  | ---------- | ---- | -------- | ----------- |
5133
- | country_code | string | no | |
5150
+ | address | string | no | |
5151
+ | landmark | string | no | |
5152
+ | area_code_slug | string | no | |
5134
5153
  | name | string | no | |
5154
+ | pincode | number | no | |
5135
5155
  | phone | number | no | |
5136
- | address_type | string | no | |
5156
+ | meta | string | no | |
5137
5157
  | area_code | string | yes | |
5138
- | country | string | no | |
5158
+ | country_code | string | no | |
5159
+ | city | string | no | |
5139
5160
  | state | string | no | |
5140
- | address | string | no | |
5141
- | area | string | no | |
5142
5161
  | email | string | no | |
5143
- | meta | string | no | |
5144
- | landmark | string | no | |
5145
- | pincode | number | no | |
5146
- | area_code_slug | string | no | |
5147
- | city | string | no | |
5162
+ | address_type | string | no | |
5163
+ | area | string | no | |
5164
+ | country | string | no | |
5148
5165
 
5149
5166
  ---
5150
5167
 
@@ -5163,24 +5180,24 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
5163
5180
 
5164
5181
 
5165
5182
 
5166
- #### [PromiseFormatted](#PromiseFormatted)
5183
+ #### [PromiseTimestamp](#PromiseTimestamp)
5167
5184
 
5168
5185
  | Properties | Type | Nullable | Description |
5169
5186
  | ---------- | ---- | -------- | ----------- |
5170
- | max | string | no | |
5171
- | min | string | no | |
5187
+ | min | number | no | |
5188
+ | max | number | no | |
5172
5189
 
5173
5190
  ---
5174
5191
 
5175
5192
 
5176
5193
 
5177
5194
 
5178
- #### [PromiseTimestamp](#PromiseTimestamp)
5195
+ #### [PromiseFormatted](#PromiseFormatted)
5179
5196
 
5180
5197
  | Properties | Type | Nullable | Description |
5181
5198
  | ---------- | ---- | -------- | ----------- |
5182
- | max | number | no | |
5183
- | min | number | no | |
5199
+ | min | string | no | |
5200
+ | max | string | no | |
5184
5201
 
5185
5202
  ---
5186
5203
 
@@ -5191,8 +5208,8 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
5191
5208
 
5192
5209
  | Properties | Type | Nullable | Description |
5193
5210
  | ---------- | ---- | -------- | ----------- |
5194
- | formatted | [PromiseFormatted](#PromiseFormatted) | no | |
5195
5211
  | timestamp | [PromiseTimestamp](#PromiseTimestamp) | no | |
5212
+ | formatted | [PromiseFormatted](#PromiseFormatted) | no | |
5196
5213
 
5197
5214
  ---
5198
5215
 
@@ -5203,52 +5220,52 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
5203
5220
 
5204
5221
  | Properties | Type | Nullable | Description |
5205
5222
  | ---------- | ---- | -------- | ----------- |
5223
+ | breakup_values | [CartBreakup](#CartBreakup) | no | |
5206
5224
  | is_valid | boolean | no | |
5207
5225
  | delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
5208
- | items | [[CartProductInfo](#CartProductInfo)] | no | |
5209
5226
  | message | string | no | |
5210
- | breakup_values | [CartBreakup](#CartBreakup) | no | |
5227
+ | items | [[CartProductInfo](#CartProductInfo)] | no | |
5211
5228
 
5212
5229
  ---
5213
5230
 
5214
5231
 
5215
5232
 
5216
5233
 
5217
- #### [MultiTenderPaymentMeta](#MultiTenderPaymentMeta)
5234
+ #### [OpenApiFiles](#OpenApiFiles)
5218
5235
 
5219
5236
  | Properties | Type | Nullable | Description |
5220
5237
  | ---------- | ---- | -------- | ----------- |
5221
- | payment_id | string | no | |
5222
- | order_id | string | no | |
5223
- | extra_meta | string | no | |
5224
- | current_status | string | no | |
5225
- | payment_gateway | string | no | |
5238
+ | values | [string] | yes | |
5239
+ | key | string | yes | |
5226
5240
 
5227
5241
  ---
5228
5242
 
5229
5243
 
5230
5244
 
5231
5245
 
5232
- #### [MultiTenderPaymentMethod](#MultiTenderPaymentMethod)
5246
+ #### [MultiTenderPaymentMeta](#MultiTenderPaymentMeta)
5233
5247
 
5234
5248
  | Properties | Type | Nullable | Description |
5235
5249
  | ---------- | ---- | -------- | ----------- |
5236
- | name | string | no | Payment mode name |
5237
- | mode | string | yes | |
5238
- | amount | number | yes | Payment amount |
5239
- | meta | [MultiTenderPaymentMeta](#MultiTenderPaymentMeta) | no | |
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 | |
5240
5255
 
5241
5256
  ---
5242
5257
 
5243
5258
 
5244
5259
 
5245
5260
 
5246
- #### [OpenApiFiles](#OpenApiFiles)
5261
+ #### [MultiTenderPaymentMethod](#MultiTenderPaymentMethod)
5247
5262
 
5248
5263
  | Properties | Type | Nullable | Description |
5249
5264
  | ---------- | ---- | -------- | ----------- |
5250
- | key | string | yes | |
5251
- | values | [string] | yes | |
5265
+ | amount | number | yes | Payment amount |
5266
+ | meta | [MultiTenderPaymentMeta](#MultiTenderPaymentMeta) | no | |
5267
+ | name | string | no | Payment mode name |
5268
+ | mode | string | yes | |
5252
5269
 
5253
5270
  ---
5254
5271
 
@@ -5271,23 +5288,23 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
5271
5288
 
5272
5289
  | Properties | Type | Nullable | Description |
5273
5290
  | ---------- | ---- | -------- | ----------- |
5274
- | payment_methods | [[MultiTenderPaymentMethod](#MultiTenderPaymentMethod)] | yes | |
5291
+ | cod_charges | number | yes | |
5275
5292
  | delivery_charges | number | yes | |
5276
- | price_marked | number | yes | |
5277
- | price_effective | number | yes | |
5278
- | employee_discount | number | no | |
5279
- | cashback_applied | number | yes | |
5280
- | extra_meta | string | no | |
5281
5293
  | amount_paid | number | yes | |
5282
- | discount | number | yes | |
5283
- | quantity | number | no | |
5284
- | loyalty_discount | number | no | |
5285
- | cod_charges | number | yes | |
5294
+ | cashback_applied | number | yes | |
5295
+ | price_effective | number | yes | |
5286
5296
  | files | [[OpenApiFiles](#OpenApiFiles)] | no | |
5287
- | meta | [CartItemMeta](#CartItemMeta) | no | |
5297
+ | payment_methods | [[MultiTenderPaymentMethod](#MultiTenderPaymentMethod)] | yes | |
5288
5298
  | size | string | yes | |
5289
5299
  | product_id | number | yes | |
5300
+ | extra_meta | string | no | |
5301
+ | loyalty_discount | number | no | |
5302
+ | discount | number | yes | |
5290
5303
  | coupon_effective_discount | number | yes | |
5304
+ | price_marked | number | yes | |
5305
+ | meta | [CartItemMeta](#CartItemMeta) | no | |
5306
+ | quantity | number | no | |
5307
+ | employee_discount | number | no | |
5291
5308
 
5292
5309
  ---
5293
5310
 
@@ -5298,26 +5315,26 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
5298
5315
 
5299
5316
  | Properties | Type | Nullable | Description |
5300
5317
  | ---------- | ---- | -------- | ----------- |
5301
- | payment_methods | [[MultiTenderPaymentMethod](#MultiTenderPaymentMethod)] | yes | |
5318
+ | coupon_code | string | yes | |
5302
5319
  | coupon | string | no | |
5303
- | order_id | string | no | |
5304
- | delivery_charges | number | yes | |
5305
- | affiliate_order_id | string | no | |
5306
- | billing_address | [ShippingAddress](#ShippingAddress) | yes | |
5307
- | shipping_address | [ShippingAddress](#ShippingAddress) | no | |
5320
+ | cart_value | number | yes | |
5308
5321
  | cart_items | [[OpenApiOrderItem](#OpenApiOrderItem)] | yes | |
5309
- | coupon_value | number | yes | |
5310
- | currency_code | string | no | |
5322
+ | shipping_address | [ShippingAddress](#ShippingAddress) | no | |
5323
+ | files | [[OpenApiFiles](#OpenApiFiles)] | no | |
5324
+ | comment | string | no | |
5325
+ | affiliate_order_id | string | no | |
5311
5326
  | gstin | string | no | |
5312
- | payment_mode | string | no | |
5313
- | cart_value | number | yes | |
5327
+ | coupon_value | number | yes | |
5328
+ | billing_address | [ShippingAddress](#ShippingAddress) | yes | |
5314
5329
  | employee_discount | string | no | |
5315
- | comment | string | no | |
5330
+ | order_id | string | no | |
5331
+ | delivery_charges | number | yes | |
5332
+ | cod_charges | number | yes | |
5333
+ | currency_code | string | no | |
5316
5334
  | cashback_applied | number | yes | |
5335
+ | payment_mode | string | no | |
5317
5336
  | loyalty_discount | number | no | |
5318
- | files | [[OpenApiFiles](#OpenApiFiles)] | no | |
5319
- | cod_charges | number | yes | |
5320
- | coupon_code | string | yes | |
5337
+ | payment_methods | [[MultiTenderPaymentMethod](#MultiTenderPaymentMethod)] | yes | |
5321
5338
 
5322
5339
  ---
5323
5340
 
@@ -5328,9 +5345,9 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
5328
5345
 
5329
5346
  | Properties | Type | Nullable | Description |
5330
5347
  | ---------- | ---- | -------- | ----------- |
5348
+ | order_ref_id | string | no | Order id sent in request |
5331
5349
  | success | boolean | no | |
5332
5350
  | message | string | no | |
5333
- | order_ref_id | string | no | Order id sent in request |
5334
5351
  | order_id | string | yes | Fynd order id |
5335
5352
 
5336
5353
  ---
@@ -5343,38 +5360,38 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
5343
5360
  | Properties | Type | Nullable | Description |
5344
5361
  | ---------- | ---- | -------- | ----------- |
5345
5362
  | coupon | string | no | |
5346
- | order_id | string | no | |
5347
- | delivery_charges | string | no | |
5363
+ | buy_now | boolean | no | |
5348
5364
  | cashback | string | yes | |
5365
+ | bulk_coupon_discount | number | no | |
5349
5366
  | fynd_credits | string | no | |
5350
- | checkout_mode | string | no | |
5351
- | meta | string | no | |
5352
- | payments | string | no | |
5353
- | is_active | boolean | no | |
5354
- | last_modified | string | yes | |
5355
- | fc_index_map | [number] | no | |
5356
- | articles | [string] | yes | |
5367
+ | comment | string | no | |
5357
5368
  | app_id | string | no | |
5369
+ | discount | number | no | |
5370
+ | _id | string | yes | |
5371
+ | last_modified | string | yes | |
5372
+ | merge_qty | boolean | no | |
5373
+ | delivery_charges | string | no | |
5374
+ | cod_charges | string | no | |
5375
+ | shipments | [string] | no | |
5358
5376
  | created_on | string | yes | |
5359
- | is_archive | boolean | no | |
5360
- | payment_methods | [string] | no | |
5361
- | user_id | string | yes | |
5362
5377
  | pick_up_customer_details | string | no | |
5363
- | is_default | boolean | yes | |
5364
- | uid | number | yes | |
5365
- | buy_now | boolean | no | |
5366
- | merge_qty | boolean | no | |
5367
- | gstin | string | no | |
5368
- | payment_mode | string | no | |
5369
- | cart_value | number | no | |
5370
- | comment | string | no | |
5371
5378
  | promotion | string | no | |
5372
- | shipments | [string] | no | |
5373
- | _id | string | yes | |
5374
- | discount | number | no | |
5379
+ | meta | string | no | |
5380
+ | user_id | string | yes | |
5381
+ | payments | string | no | |
5382
+ | cart_value | number | no | |
5383
+ | fc_index_map | [number] | no | |
5384
+ | gstin | string | no | |
5375
5385
  | expire_at | string | yes | |
5376
- | cod_charges | string | no | |
5377
- | bulk_coupon_discount | number | no | |
5386
+ | is_active | boolean | no | |
5387
+ | uid | number | yes | |
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 | |
5378
5395
 
5379
5396
  ---
5380
5397
 
@@ -5387,34 +5404,34 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
5387
5404
  | ---------- | ---- | -------- | ----------- |
5388
5405
  | result | string | no | |
5389
5406
  | success | boolean | no | the request success is defined |
5390
- | page | [Page](#Page) | no | |
5391
5407
  | message | string | no | message of the response |
5392
5408
  | items | [[AbandonedCart](#AbandonedCart)] | no | |
5409
+ | page | [Page](#Page) | no | |
5393
5410
 
5394
5411
  ---
5395
5412
 
5396
5413
 
5397
5414
 
5398
5415
 
5399
- #### [PaymentSelectionLock](#PaymentSelectionLock)
5416
+ #### [CartCurrency](#CartCurrency)
5400
5417
 
5401
5418
  | Properties | Type | Nullable | Description |
5402
5419
  | ---------- | ---- | -------- | ----------- |
5403
- | enabled | boolean | no | |
5404
- | default_options | string | no | |
5405
- | payment_identifier | string | no | |
5420
+ | symbol | string | no | |
5421
+ | code | string | no | Currency code defined by ISO 4217:2015 |
5406
5422
 
5407
5423
  ---
5408
5424
 
5409
5425
 
5410
5426
 
5411
5427
 
5412
- #### [CartCurrency](#CartCurrency)
5428
+ #### [PaymentSelectionLock](#PaymentSelectionLock)
5413
5429
 
5414
5430
  | Properties | Type | Nullable | Description |
5415
5431
  | ---------- | ---- | -------- | ----------- |
5416
- | code | string | no | Currency code defined by ISO 4217:2015 |
5417
- | symbol | string | no | |
5432
+ | payment_identifier | string | no | |
5433
+ | default_options | string | no | |
5434
+ | enabled | boolean | no | |
5418
5435
 
5419
5436
  ---
5420
5437
 
@@ -5425,22 +5442,22 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
5425
5442
 
5426
5443
  | Properties | Type | Nullable | Description |
5427
5444
  | ---------- | ---- | -------- | ----------- |
5445
+ | currency | [CartCurrency](#CartCurrency) | no | |
5446
+ | breakup_values | [CartBreakup](#CartBreakup) | no | |
5428
5447
  | buy_now | boolean | no | |
5429
5448
  | is_valid | boolean | no | |
5430
- | gstin | string | no | |
5431
- | checkout_mode | string | no | |
5449
+ | delivery_charge_info | string | no | |
5432
5450
  | id | string | no | |
5433
- | comment | string | no | |
5434
- | restrict_checkout | boolean | no | |
5435
- | delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
5451
+ | message | string | no | |
5436
5452
  | coupon_text | string | no | |
5437
- | payment_selection_lock | [PaymentSelectionLock](#PaymentSelectionLock) | no | |
5453
+ | checkout_mode | string | no | |
5438
5454
  | items | [[CartProductInfo](#CartProductInfo)] | no | |
5439
- | delivery_charge_info | string | no | |
5440
- | currency | [CartCurrency](#CartCurrency) | no | |
5441
- | message | string | no | |
5455
+ | comment | string | no | |
5456
+ | gstin | string | no | |
5457
+ | delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
5458
+ | restrict_checkout | boolean | no | |
5442
5459
  | last_modified | string | no | |
5443
- | breakup_values | [CartBreakup](#CartBreakup) | no | |
5460
+ | payment_selection_lock | [PaymentSelectionLock](#PaymentSelectionLock) | no | |
5444
5461
 
5445
5462
  ---
5446
5463
 
@@ -5451,18 +5468,18 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
5451
5468
 
5452
5469
  | Properties | Type | Nullable | Description |
5453
5470
  | ---------- | ---- | -------- | ----------- |
5454
- | display | string | no | |
5455
- | store_id | number | no | |
5456
5471
  | seller_id | number | no | |
5472
+ | parent_item_identifiers | string | no | |
5473
+ | store_id | number | no | |
5457
5474
  | pos | boolean | no | |
5475
+ | display | string | no | |
5476
+ | item_size | string | no | |
5458
5477
  | product_group_tags | [string] | no | |
5478
+ | article_assignment | string | no | |
5459
5479
  | extra_meta | string | no | |
5460
5480
  | quantity | number | no | |
5461
- | parent_item_identifiers | string | no | |
5462
5481
  | article_id | string | no | |
5463
- | item_size | string | no | |
5464
5482
  | item_id | number | no | |
5465
- | article_assignment | string | no | |
5466
5483
 
5467
5484
  ---
5468
5485
 
@@ -5498,13 +5515,13 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
5498
5515
 
5499
5516
  | Properties | Type | Nullable | Description |
5500
5517
  | ---------- | ---- | -------- | ----------- |
5501
- | identifiers | [CartProductIdentifer](#CartProductIdentifer) | yes | |
5502
- | extra_meta | string | no | |
5503
- | quantity | number | no | |
5504
5518
  | parent_item_identifiers | string | no | |
5505
- | article_id | string | no | |
5519
+ | identifiers | [CartProductIdentifer](#CartProductIdentifer) | yes | |
5506
5520
  | item_size | string | no | |
5507
5521
  | item_id | number | no | |
5522
+ | extra_meta | string | no | |
5523
+ | article_id | string | no | |
5524
+ | quantity | number | no | |
5508
5525
  | item_index | number | no | |
5509
5526
 
5510
5527
  ---
@@ -5516,8 +5533,8 @@ Success. Updates and returns a cart object as shown below. Refer `UpdateCartDeta
5516
5533
 
5517
5534
  | Properties | Type | Nullable | Description |
5518
5535
  | ---------- | ---- | -------- | ----------- |
5519
- | operation | string | yes | |
5520
5536
  | items | [[UpdateProductCart](#UpdateProductCart)] | no | |
5537
+ | operation | string | yes | |
5521
5538
 
5522
5539
  ---
5523
5540