March
24/03/2026
Planned interruption of Product-Live Data Factory between 18:30 and 20:30 CET (Paris time zone)
As part of routine maintenance, we will be performing updates on our infrastructure.
During this window, job processing will be temporarily paused. All jobs are expected to resume automatically once maintenance is complete.
For updates and more information, please visit our status page
18/03/2026
App: 5.79.0
Settings: 5.79.0
Improvements
📥 Publication/Collect
Create suggestion with composite field from external systems
You can now create suggestions on your products from other systems (ERP, PIM, DAM...) with composite fields with the Suggestions API enabling you to easily update your products in Products-Live from your own systems.
bash
curl -X 'POST' \
'https://api.product-live.com/v1/publications' \
-H 'accept: */*' \
-H 'X-Api-Key: <REDACTED>'
-d '{
"object": "suggestion-create",
"itemId": "1958624",
"screenId": "531059",
"hasCreatedItem": true,
"emitterName": "38643",
"fields": [
{
"key": "ID",
"value": {
"data": "8710103533825"
}
},
{
"key": "TITLE",
"value": {
"data": [
{
"data": [
{
"key": "LOCAL_LANGUAGE",
"value": {
"data": "FRA"
}
},
{
"key": "LOCAL_TITLE",
"value": {
"data": "Smartphone 13 mini 5,4\"\" 5G 512 Go Double SIM Vert"
}
}
],
"id": "01KJZ2B0RYBZ8NCMVXFRTTE9VK",
"position": 0
},
{
"data": [
{
"key": "LOCAL_LANGUAGE",
"value": {
"data": "ENG"
}
},
{
"key": "LOCAL_TITLE",
"value": {
"data": "Smartphone 13 mini 5.4\"\" 5G 512GB Dual SIM Green"
}
}
],
"id": "01KJZ2B37XE4731VHS0AF8KZBN",
"position": 1
},
{
"data": [
{
"key": "LOCAL_LANGUAGE",
"value": {
"data": "DEU"
}
},
{
"key": "LOCAL_TITLE",
"value": {
"data": "Smartphone 13 mini 5.4\"\" 5G 512GB Dual SIM Groen"
}
}
],
"id": "01KJZ2B3XYZJGVD8YHTB7Z4MCS",
"position": 2
}
]
}
}
]
}'1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
json
{
"object": "suggestion",
"id": "2185",
"updatedAt": "2022-05-13T07:54:59.000Z",
"createdAt": "2022-05-13T07:54:55.000Z",
"toItemId": "1958624",
"hasCreatedItem": false,
"isAcknowledged": false,
"fromAccountId": "3568",
"screenId": "531059",
"fields": [
{
"key": "ID",
"type": "IDENTIFIER",
"value": {
"data": "8710103533825"
}
},
{
"key": "TITLE",
"type": "COMPOSITE",
"multiValued": true,
"value": {
"data": [
{
"data": [
{
"key": "LOCAL_LANGUAGE",
"type": "SINGLE-SELECT",
"value": {
"data": "FRA"
}
},
{
"key": "LOCAL_TITLE",
"type": "SINGLE-LINE-TEXT",
"value": {
"data": "Smartphone 13 mini 5,4\"\" 5G 512 Go Double SIM Vert"
}
}
],
"id": "01KJZ2B0RYBZ8NCMVXFRTTE9VK",
"position": 0
},
{
"data": [
{
"key": "LOCAL_LANGUAGE",
"type": "SINGLE-SELECT",
"value": {
"data": "ENG"
}
},
{
"key": "LOCAL_TITLE",
"type": "SINGLE-LINE-TEXT",
"value": {
"data": "Smartphone 13 mini 5.4\"\" 5G 512GB Dual SIM Green"
}
}
],
"id": "01KJZ2B37XE4731VHS0AF8KZBN",
"position": 1
},
{
"data": [
{
"key": "LOCAL_LANGUAGE",
"type": "SINGLE-SELECT",
"value": {
"data": "DEU"
}
},
{
"key": "LOCAL_TITLE",
"type": "SINGLE-LINE-TEXT",
"value": {
"data": "Smartphone 13 mini 5.4\"\" 5G 512GB Dual SIM Groen"
}
}
],
"id": "01KJZ2B3XYZJGVD8YHTB7Z4MCS",
"position": 2
}
]
}
}
],
"deletedCompositeRows": [],
"deletedFields": []
}1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
💻 User Experience
Composite image & file field quick drag & drop
It is now possible within composite fields to quickly drag & drop files and images onto fields without having to open their editors allowing you to update your products faster.
Improve composite line uniqueness message
When a field is configured as unique within a composite field, you now have an explicite message informing you.

Enable composite usage at the same time as detail view and actions
It is now possible to open a composite field while keeping the detail view opened allowing you to easily see item composite field conformity while editing its values.
Improve composite fields navigation
You can now search fields within composite fields allowing you to easily find the required field to check and complete.

We also introduce a keyboard short Ctrl + Shift + F to search fields in the grid, in the detail view or in the composite field according to the active cell.
Improve composite field preview
You can now see how many records exist in a composite field allowing you to quickly see if there are as many records as required without opening it.
Resolved issues
📥 Publication/Collect
Fix an issue on the Suggestions api
When creating suggestions from publications with the Suggestions api, only the published deleted fields are added to the suggested deleted fields ensuring accurate suggested changes on your products.
12/03/2026
App: 5.78.0
Settings: 5.78.0
Improvements
🌐 API
Create publications with composite fields
It is now possible to create publications with composite fields through the Publications API enabling you to publish updates to your partners including complex data.
bash
curl -X 'POST' \
'https://api.product-live.com/v1/publications' \
-H 'accept: */*' \
-H 'X-Api-Key: <REDACTED>'
-d '{
"fromItemId": "80303",
"toAccountId": "6326",
"screenId": "5642"
}'1
2
3
4
5
6
7
8
9
2
3
4
5
6
7
8
9
json
{
"object": "publication",
"id": "38643",
"updatedAt": "2024-05-17T07:39:23.000Z",
"createdAt": "2024-05-17T07:38:54.000Z",
"sentAt": "2024-05-17T07:38:54.000Z",
"fromItemId": "80303",
"toAccountId": "6326",
"tableId": "1353",
"partitionId": "2342",
"screenId": "7421",
"status": "SENT",
"fields": [
{
"key": "EAN",
"type": "IDENTIFIER",
"value": {
"data": "3610011803438"
}
},
{
"key": "TITLE",
"type": "COMPOSITE",
"multiValued": true,
"value": {
"data": [
{
"data": [
{
"key": "LOCAL_LANGUAGE",
"type": "SINGLE-SELECT",
"value": {
"data": "FRA"
}
},
{
"key": "LOCAL_TITLE",
"type": "SINGLE-LINE-TEXT",
"value": {
"data": "Smartphone 13 mini 5,4\"\" 5G 512 Go Double SIM Vert"
}
}
],
"id": "01KJZ2B0RYBZ8NCMVXFRTTE9VK",
"position": 0
},
{
"data": [
{
"key": "LOCAL_LANGUAGE",
"type": "SINGLE-SELECT",
"value": {
"data": "ENG"
}
},
{
"key": "LOCAL_TITLE",
"type": "SINGLE-LINE-TEXT",
"value": {
"data": "Smartphone 13 mini 5.4\"\" 5G 512GB Dual SIM Green"
}
}
],
"id": "01KJZ2B37XE4731VHS0AF8KZBN",
"position": 1
},
{
"data": [
{
"key": "LOCAL_LANGUAGE",
"type": "SINGLE-SELECT",
"value": {
"data": "DEU"
}
},
{
"key": "LOCAL_TITLE",
"type": "SINGLE-LINE-TEXT",
"value": {
"data": "Smartphone 13 mini 5.4\"\" 5G 512GB Dual SIM Groen"
}
}
],
"id": "01KJZ2B3XYZJGVD8YHTB7Z4MCS",
"position": 2
}
]
}
}
]
}1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
:::
Create suggestions with composite fields
It is now possible to create suggestions with composite fields through the Suggestions API enabling you to collect updates from your partners including complex data. For now only new and updated composite fields lines and values can be collected. Deleted composite field lines cannot yet be collected.
bash
curl -X 'POST' \
'https://api.product-live.com/v1/publications' \
-H 'accept: */*' \
-H 'X-Api-Key: <REDACTED>'
-d '{
"object": "suggestion-create",
"itemId": "1958624",
"screenId": "531059",
"hasCreatedItem": true,
"publicationId": "38643"
}'1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
json
{
"object": "suggestion",
"id": "2185",
"updatedAt": "2022-05-13T07:54:59.000Z",
"createdAt": "2022-05-13T07:54:55.000Z",
"toItemId": "1958624",
"hasCreatedItem": false,
"isAcknowledged": false,
"fromAccountId": "3568",
"screenId": "531059",
"fields": [
{
"key": "ID",
"type": "IDENTIFIER",
"value": {
"data": "8710103533825"
}
},
{
"key": "TITLE",
"type": "COMPOSITE",
"multiValued": true,
"value": {
"data": [
{
"data": [
{
"key": "LOCAL_LANGUAGE",
"type": "SINGLE-SELECT",
"value": {
"data": "FRA"
}
},
{
"key": "LOCAL_TITLE",
"type": "SINGLE-LINE-TEXT",
"value": {
"data": "Smartphone 13 mini 5,4\"\" 5G 512 Go Double SIM Vert"
}
}
],
"id": "01KJZ2B0RYBZ8NCMVXFRTTE9VK",
"position": 0
},
{
"data": [
{
"key": "LOCAL_LANGUAGE",
"type": "SINGLE-SELECT",
"value": {
"data": "ENG"
}
},
{
"key": "LOCAL_TITLE",
"type": "SINGLE-LINE-TEXT",
"value": {
"data": "Smartphone 13 mini 5.4\"\" 5G 512GB Dual SIM Green"
}
}
],
"id": "01KJZ2B37XE4731VHS0AF8KZBN",
"position": 1
},
{
"data": [
{
"key": "LOCAL_LANGUAGE",
"type": "SINGLE-SELECT",
"value": {
"data": "DEU"
}
},
{
"key": "LOCAL_TITLE",
"type": "SINGLE-LINE-TEXT",
"value": {
"data": "Smartphone 13 mini 5.4\"\" 5G 512GB Dual SIM Groen"
}
}
],
"id": "01KJZ2B3XYZJGVD8YHTB7Z4MCS",
"position": 2
}
]
}
}
],
"deletedCompositeRows": [],
"deletedFields": []
}1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
:::
📥 Publication/Collect
Improve Publications with composite fields
You can now see the composite fields you will publish to your partner in your draft publication. This enables a full view of all data that will be published simplifying controls.
You can now see your the composite fields published to your partner in your publication history. This enables a full view of all published data simplifying controls.
| Draft Publication | Past publication |
|---|---|
![]() | ![]() |
Resolved issues
🧰 Data Factory
Fix invalid number handling
Now, throughout the entire Product-Live platform, number validity is correctly enforced. Any number exceeding a total of 15 digits (including digits before and after the decimal point) is automatically rejected.
📥 Publication/Collect
Fix an issue on suggestions
You can now see your item current specific fields in the suggestion pane enabling you to easily compare the suggested values from your partner with you current product values so that you can accurately agree to update your product or not.
💻 User Experience
Fix an issue preventing to see images in suggestions
You can now correctly see your and the suggested images in your suggestions enabling to control them before updating your product.
| Before | Now |
|---|---|
![]() | ![]() |
11/03/2026
Planned interruption of Product-Live Data Factory between 18:30 and 20:20 CET (Paris time zone)
As part of routine maintenance, we will be performing updates on our infrastructure.
During this window, job processing will be temporarily paused. All jobs are expected to resume automatically once maintenance is complete.
For updates and more information, please visit our status page
10/03/2026
Planned interruption of Product-Live Data Factory between 12:00 and 12:30 CET (Paris time zone)
As part of routine maintenance, we will be performing updates on our CDN and tooling.
During this window, job processing will be temporarily paused. All jobs are expected to resume automatically once maintenance is complete.
For updates and more information, please visit our status page
05/03/2026
App: 5.77.0
Settings: 5.77.0
Improvements
🧰 Data Factory
Define Composite collect strategies
Simplify Composite field collect for referencing and enrichment phases enabling collect automation and guiding users in applying suggestion on the correct lines.
xml
<Field key="TITLE" type="COMPOSITE" level="PRODUCT" multi-valued="true">
<Title>Title</Title>
<CollectStrategies>
<CollectStrategy type="BY_FIELDS" priority="1">
<Field key="LOCAL_LANGUAGE" />
</CollectStrategy>
<CollectStrategy type="BY_ID" priority="2" />
<CollectStrategy type="BY_POSITION" priority="3" />
</CollectStrategies>
<Field key="LOCAL_TITLE" type="SINGLE-LINE-TEXT">
<Title>Local title</Title>
</Field>
<Field key="LOCAL_LANGUAGE" type="SINGLE-SELECT">
<Title>Local language</Title>
<Options>
<Option key="FRA">
<Title>French</Title>
</Option>
<Option key="ENG">
<Title>English</Title>
</Option>
<Option key="DEU">
<Title>German</Title>
</Option>
<Option key="SPA">
<Title>Spanish</Title>
</Option>
</Options>
</Field>
</Field>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Resolved issues
🗨️ Comments
Fix an issue preventing to comment items
You can now start new comment threads with your partner, regardless of existing threads, to improve and speed up your communication.



