Skip to content

Get store log entries for the given time range and action types

GET
/api/stores/{storeId}/log/{fromDate}/{toDate}/actions/{storeLogActionIds}

Authorizations

api_key

Requests manipulating data need to supply a CSRF token

TypeAPI Key (header: X-CSRF-Token)

Parameters

Path Parameters

storeId*
Typeinteger
Required
Minimum1
fromDate*
Typestring
Required
Format"date-time"
toDate*
Typestring
Required
Format"date-time"
storeLogActionIds*
Typestring
Required
Pattern"\\d+(,\\d+)*"

Query Parameters

limit
Typeinteger
Defaultnull
offset
Typeinteger
Defaultnull

Responses

Success.

application/json
JSON
[
{
"performedAt": "string",
"actionType": 0,
"actor": {
"id": 342528,
"name": "Franzi",
"avatar": "99d1fb45-9748-3510-ac02-87b46c40048c",
"isSleeping": true
},
"target": {
"id": 342528,
"name": "Franzi",
"avatar": "99d1fb45-9748-3510-ac02-87b46c40048c",
"isSleeping": true
},
"dateReference": "string",
"content": "string",
"reason": "string"
}
]

Playground

Authorization
Variables
Key
Value

Samples

cURL
JavaScript
PHP
Python