Content Management Audit Log API
The Accounts API is in phase and is not yet available to users. You can contact the Product-Live team at contact@product-live.com if you want more details and get an early access.
Introduction
An audit log, is a comprehensive record of events that occur within Product-Live App and Data Factory. Audit Logs are recorded in Azure Logs. It is used to track changes and user activities.
The Audit Logs API Swagger definition is available on our Product-Live API portal here.
General Information
- Rate limit: 50 requests per minute
List Audit Logs
Request URL
Path parameters
None
Request parameters
Parameter | Type | Description |
---|---|---|
page | integer | Optional The page number to retrieve. Default value if missing : 0 |
size | integer | Optional The number of items per page. Default value if missing : 10 |
Request headers
Header | Type | Value |
---|---|---|
accept | string | application/json |
X-Api-Key | string | Your account API key |
Request Body
None
Request Example
bash
curl -X 'GET' \
'https://api.product-live.com/v1/audit_logs?size=1&page=0' \
-H 'accept: application/json' \
-H 'X-Api-Key: <REDACTED>'
1
2
3
4
2
3
4
Response example
json
{
"object": "list",
"data": [
{
"object": "audit_log",
"timeGenerated": "2025-02-21T14:58:15.584Z",
"entityType": "item",
"version": "2",
"details": {
"accountId": "4201",
"userId": "3",
"itemId": "6588231",
"status": "SUCCESS",
"actionOrigin": "DF_TABLE_IMPORT_ITEMS",
"updatedFieldList": {
"LIBCOLMODFR": "ROSE VIF",
"COLLECTION_THEME": "2036",
"COLOR_CODE": "1079"
},
"triggeredBy": "USER",
"issuedAt": "2025-02-21T14:41:21.7820000Z",
"tableId": "1467",
"contextId": "4201",
"jobId": "674f4c6b796b6a7e699ad916",
"cid": "FSVVJs7sxm6zHif1RbDRKuxJhWzaPaL8TM4EwfcFJkU2tDwiiylYuLMiB8kQMTqx:4201:mXpV3BMC-1740148688131278068815233845416783033101:1"
},
"type": "item.update"
}
]
}
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
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
Find Audit Logs
Request URL
Path parameters
None
Request parameters
Parameter | Type | Description |
---|---|---|
page | integer | Optional The page number to retrieve. Default value if missing : 0 |
size | integer | Optional The number of items per page. Default value if missing : 10 |
Request headers
Header | Type | Value |
---|---|---|
accept | string | application/json |
X-Api-Key | string | Your account API key |
Request Body
See more details on the find request body in the dedicated page Find request.
json
{
"type": "eq",
"caseSensitive": true,
"field": "entityType",
"value": "item"
}
1
2
3
4
5
6
2
3
4
5
6
json
{
"type": "and",
"queries": [
{
"type": "eq",
"caseSensitive": true,
"field": "entityType",
"value": "item"
},
{
"type": "greaterOrEqual",
"caseSensitive": true,
"field": "timeGenerated",
"value": "2025-02-21T14:58:15.584Z"
}
]
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Request Example
bash
curl -X 'POST' \
'https://api.product-live.com/v1/audit_logs/find?size=10&page=0' \
-H 'accept: */*' \
-H 'X-Api-Key: <REDACTED>'
-d '{
"type": "and",
"queries": [
{
"type": "search",
"caseSensitive": true,
"field": "name",
"value": "RETAIL"
},
{
"type": "greaterOrEqual",
"caseSensitive": true,
"field": "createdAt",
"value": "2021-12-30T10:17:29.000Z"
}
]
}'
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Response example
json
{
"object": "list",
"data": [
{
"object": "audit_log",
"timeGenerated": "2025-02-21T14:58:15.584Z",
"entityType": "item",
"version": "2",
"details": {
"accountId": "4201",
"userId": "3",
"itemId": "6588231",
"status": "SUCCESS",
"actionOrigin": "DF_TABLE_IMPORT_ITEMS",
"updatedFieldList": {
"LIBCOLMODFR": "ROSE VIF",
"COLLECTION_THEME": "2036",
"COLOR_CODE": "1079"
},
"triggeredBy": "USER",
"issuedAt": "2025-02-21T14:41:21.7820000Z",
"tableId": "1467",
"contextId": "4201",
"jobId": "674f4c6b796b6a7e699ad916",
"cid": "FSVVJs7sxm6zHif1RbDRKuxJhWzaPaL8TM4EwfcFJkU2tDwiiylYuLMiB8kQMTqx:4201:mXpV3BMC-1740148688131278068815233845416783033101:1"
},
"type": "item.update"
}
]
}
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
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