POST
https://test-api.finerworks.com/v3/list_event_logs
List Event Logs
Provides a list of event logs. Requires special permissions to be able to use this endpoint.
Body
| Name | Description | Type | Additional information |
|---|---|---|---|
| type | Optional - Filter by type. This can be be "error", "warning", "success", or "other". | text | None. |
| search_term | Optional - Will search by word or phrase in the event details or name. | text | None. |
| page_number | Optional - Page number. | number | None. |
| per_page | Optional - Default is 10 however you can display up to 50 at a time. | number | None. |
| sort_field | Optional - Default is by id. Alternatively these fields can also be used: name or type. | text | None. |
| sort_direction | Optional - Default is "DESC" for descending order however if you want it to be ascending order, use "ASC". | text | None. |
Example JSON Body
application/json, text/json
{
"type": "sample string 1",
"search_term": "sample string 2",
"page_number": 3,
"per_page": 4,
"sort_field": "sample string 5",
"sort_direction": "sample string 6"
}
Sample Code Library
curl --location --request POST 'https://test-api.finerworks.com/v3/list_event_logs' \
--header 'Content-Type: application/json' \
--header 'web_api_key: my-web-api-key-goes-here' \
--header 'app_key: my-app-key-goes-here' \
--data-raw '{
"type": "sample string 1",
"search_term": "sample string 2",
"page_number": 3,
"per_page": 4,
"sort_field": "sample string 5",
"sort_direction": "sample string 6"
}'require_once 'HTTP/Request2.php';
$request = new HTTP_Request2();
$request->setUrl('https://test-api.finerworks.com/v3/list_event_logs');
$request->setMethod(HTTP_Request2::METHOD_POST);
$request->setConfig(array(
'follow_redirects' => TRUE
));
$request->setHeader(array(
'Content-Type' => 'application/json',
'web_api_key' => 'my-web-api-key-goes-here',
'app_key' => 'my-app-key-goes-here'
));
$request->setBody('{
'type': 'sample string 1',
'search_term': 'sample string 2',
'page_number': 3,
'per_page': 4,
'sort_field': 'sample string 5',
'sort_direction': 'sample string 6'
}');
try {
$response = $request->send();
if ($response->getStatus() == 200) {
echo $response->getBody();
}
else {
echo 'Unexpected HTTP status: ' . $response->getStatus() . ' ' .
$response->getReasonPhrase();
}
}
catch(HTTP_Request2_Exception $e) {
echo 'Error: ' . $e->getMessage();
}var client = new RestClient("https://test-api.finerworks.com/v3/list_event_logs");
client.Timeout = -1;
var request = new RestRequest(Method.POST);
request.AddHeader("Content-Type", "application/json");
request.AddHeader("web_api_key", "my-web-api-key-goes-here");
request.AddHeader("app_key", "my-app-key-goes-here");
request.AddParameter("application/json", "{
'type': 'sample string 1',
'search_term': 'sample string 2',
'page_number': 3,
'per_page': 4,
'sort_field': 'sample string 5',
'sort_direction': 'sample string 6'
}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);var settings = {
"url": "https://test-api.finerworks.com/v3/list_event_logs",
"method": "POST",
"timeout": 0,
"headers": {
"Content-Type": "application/json",
"web_api_key": "my-web-api-key-goes-here",
"app_key": "my-app-key-goes-here"
},
"data": JSON.stringify({
'type': 'sample string 1',
'search_term': 'sample string 2',
'page_number': 3,
'per_page': 4,
'sort_field': 'sample string 5',
'sort_direction': 'sample string 6'
}),
};
$.ajax(settings).done(function (response) {
console.log(response);
});var https = require('follow-redirects').https;
var options = {
'method': 'POST',
'hostname': 'test-api.finerworks.com',
'path': '/v3/list_event_logs',
'headers': {
'Content-Type': 'application/json',
'web_api_key': 'my-web-api-key-goes-here',
'app_key': 'my-app-key-goes-here'
},
'maxRedirects': 20
};
var req = https.request(options, function (res) {
var chunks = [];
res.on("data", function (chunk) { chunks.push(chunk); });
res.on("end", function () {
var body = Buffer.concat(chunks);
console.log(body.toString());
});
res.on("error", function (error) { console.error(error); });
});
var postData = JSON.stringify({
'type': 'sample string 1',
'search_term': 'sample string 2',
'page_number': 3,
'per_page': 4,
'sort_field': 'sample string 5',
'sort_direction': 'sample string 6'
});
req.write(postData);
req.end();require "uri"
require "net/http"
url = URI("https://test-api.finerworks.com/v3/list_event_logs")
https = Net::HTTP.new(url.host, url.port)
https.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = "application/json"
request["web_api_key"] = "my-web-api-key-goes-here"
request["app_key"] = "my-app-key-goes-here"
request.body = "{
'type': 'sample string 1',
'search_term': 'sample string 2',
'page_number': 3,
'per_page': 4,
'sort_field': 'sample string 5',
'sort_direction': 'sample string 6'
}"
response = https.request(request)
puts response.read_body| Name | Description | Type | Additional information |
|---|---|---|---|
| events | An array of events | array (event_log) | None. |
| count | Number of events found. | number | None. |
| status | Response status details | response_status | None. |
Example JSON Response
application/json, text/json
{
"events": [
{
"id": 1,
"type": "sample string 2",
"name": "sample string 3",
"details": "sample string 4",
"account_id": 5,
"site_id": 6,
"date_time": "2026-07-30T16:20:48.5796149-05:00"
},
{
"id": 1,
"type": "sample string 2",
"name": "sample string 3",
"details": "sample string 4",
"account_id": 5,
"site_id": 6,
"date_time": "2026-07-30T16:20:48.5796149-05:00"
}
],
"count": 1,
"status": {
"success": true,
"status_code": 100,
"message": "sample string 2",
"debug": {},
"reference_id": "sample string 4",
"domain": "sample string 5"
}
}