User Actions API

Introduction

SEON's User Actions API is a security information and event management solution under active development. User Actions API takes events from the Logs page on the SEON Admin Panel that occurred between two specified points in time and sends them to the defined endpoint.

About User Actions API

Our new User Actions API is a security information and event management (SIEM) integration tool for our enterprise partners, helping them ensure network and data security. Easily share team activity logs from SEON with your broader event management systems.

User Actions API supports your organization's compliance and security, ensuring that security teams can monitor actions wherever they occur in your tech stack.

Thanks to SEON's simple User Actions API, you can include any actions carried out by your team in SEON in your central security information and event system. 

User Actions API takes all entries in the SEON Admin Panel's Logs page between two timestamps specified in your API request and shares them with your systems.

Request

Attributes

TypeRequired
startTime
stringyes
endTime 
stringyes

HTTP Endpoint

GET

https://api.seon.io/SeonAdminService/v1/siem/logs?startTime=[startTime]&endTime=[endTime]
cURL
Generic
Generic

Response

JSON attributes

  
id
integer 
details
string 
date
string 
action
string 
userId
string 
role
string 
user
string 
img
string 
ip
string 
referenceId
string 
referenceType
string 
subjectId
string 
subjectType
string 
Response
[
 {
  "id": 180136,
  "details": "Successful login",
  "date": "2023-10-04T13:57:36.270Z",
  "action": "login",
  "userId": "809118",
  "role": "Administrator",
  "user": "SEON Test Administrator",
  "img": "account/[customerID]/123456/default_picture.svg",
  "ip": "99.182.226.98",
  "referenceId": null,
  "referenceType": null,
  "subjectId": null,
  "subjectType": null
 }
]