You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: api-specifications/marketingsolutions_preview.json
+56-31Lines changed: 56 additions & 31 deletions
Original file line number
Diff line number
Diff line change
@@ -14206,6 +14206,12 @@
14206
14206
],
14207
14207
"type": "string",
14208
14208
"nullable": true
14209
+
},
14210
+
"id": {
14211
+
"type": "string",
14212
+
"description": "Id of the entity (duplicate of the parent id).",
14213
+
"nullable": true,
14214
+
"x-nullable": true
14209
14215
}
14210
14216
},
14211
14217
"description": "campaign read model"
@@ -14540,10 +14546,10 @@
14540
14546
"lookbackWindow": {
14541
14547
"enum": [
14542
14548
"unknown",
14543
-
"sameSession",
14544
-
"twentyFourHours",
14545
-
"sevenDays",
14546
-
"thirtyDays"
14549
+
"30M",
14550
+
"24H",
14551
+
"7D",
14552
+
"30D"
14547
14553
],
14548
14554
"type": "string",
14549
14555
"description": "The lookback window. Optional, should be specified only for attribution methods PostClick and LastClick.",
@@ -14820,10 +14826,10 @@
14820
14826
"lookbackWindow": {
14821
14827
"enum": [
14822
14828
"unknown",
14823
-
"sameSession",
14824
-
"twentyFourHours",
14825
-
"sevenDays",
14826
-
"thirtyDays"
14829
+
"30M",
14830
+
"24H",
14831
+
"7D",
14832
+
"30D"
14827
14833
],
14828
14834
"type": "string",
14829
14835
"description": "The lookback window. Optional, should be specified only for attribution methods PostClick and LastClick.",
@@ -15012,10 +15018,10 @@
15012
15018
"value": {
15013
15019
"enum": [
15014
15020
"unknown",
15015
-
"sameSession",
15016
-
"twentyFourHours",
15017
-
"sevenDays",
15018
-
"thirtyDays"
15021
+
"30M",
15022
+
"24H",
15023
+
"7D",
15024
+
"30D"
15019
15025
],
15020
15026
"type": "string",
15021
15027
"nullable": true,
@@ -20776,17 +20782,31 @@
20776
20782
"description": "Entity to create a product filter configuration"
20777
20783
},
20778
20784
"ProductSet": {
20785
+
"required": [
20786
+
"clientType",
20787
+
"creationDate",
20788
+
"datasetId",
20789
+
"keepVariantProducts",
20790
+
"minimumNumberOfProducts",
20791
+
"name",
20792
+
"numberOfProducts",
20793
+
"rules",
20794
+
"status"
20795
+
],
20779
20796
"type": "object",
20780
20797
"properties": {
20781
20798
"datasetId": {
20782
20799
"type": "string",
20783
-
"description": "The dataset to which the product set belong",
20784
-
"nullable": true
20800
+
"description": "The dataset to which the product set belong"
20785
20801
},
20786
20802
"name": {
20787
20803
"type": "string",
20788
-
"description": "The name of the product set",
20789
-
"nullable": true
20804
+
"description": "The name of the product set"
20805
+
},
20806
+
"minimumNumberOfProducts": {
20807
+
"type": "integer",
20808
+
"description": "Minimum amount of products that should match the product set to consider it valid.\r\nGreater or equal than one.",
20809
+
"format": "int32"
20790
20810
},
20791
20811
"status": {
20792
20812
"enum": [
@@ -20798,37 +20818,42 @@
20798
20818
"Deleted"
20799
20819
],
20800
20820
"type": "string",
20801
-
"description": "The status of the product set",
20802
-
"nullable": true
20803
-
},
20804
-
"isEnabled": {
20805
-
"type": "boolean",
20806
-
"description": "True if the product set is active",
20807
-
"nullable": true
20821
+
"description": "The status of the product set"
20808
20822
},
20809
20823
"numberOfProducts": {
20810
20824
"type": "integer",
20811
-
"description": "The number of product matching the product set",
20825
+
"description": "The number of product matching the product set.\r\nCan be null for newly created product set.",
20812
20826
"format": "int32",
20813
-
"nullable": true
20827
+
"nullable": true,
20828
+
"x-nullable": true
20814
20829
},
20815
20830
"creationDate": {
20816
20831
"type": "string",
20817
-
"description": "Optional: The creation date of the product set (UTC time in ISO8601 format). Example: \"02/25/2022 14:51:26\"\r\nCan be null if the value doesn't exist.",
20818
-
"nullable": true
20832
+
"description": "The creation date of the product set (UTC time in ISO8601 format). Example: \"02/25/2022 14:51:26\".\r\nCan be null if the value isn't available."
20819
20833
},
20820
20834
"rules": {
20821
-
"uniqueItems": false,
20822
20835
"type": "array",
20823
20836
"items": {
20824
20837
"$ref": "#/components/schemas/ProductSetRule"
20825
20838
},
20826
-
"description": "The rules identifying the product belonging to the set",
20827
-
"nullable": true
20839
+
"description": "The rules identifying the product belonging to the set"
20840
+
},
20841
+
"clientType": {
20842
+
"enum": [
20843
+
"Unknown",
20844
+
"CGrowth",
20845
+
"CMax"
20846
+
],
20847
+
"type": "string",
20848
+
"description": "The client type of the product set"
0 commit comments