List Logins

post/fetch/LAT

Retrieves the login application log – LoginAuditTrail (LAT).

Securitybasic or X-PriceFx-jwt
Request
Request Body schema: application/json
endRow
integer
oldValues
object or null
operationType
string
startRow
integer
textMatchStyle
string
Responses
200

OK

Response Schema: application/json
object
node
string
startRow
integer
Array of objects (LoginAuditTrail)
Array
typedId
string
createdBy
integer
lastUpdateDate
string <date-time>
clientIP
string <= 255 characters
details
string <= 20 characters
userName
string <= 255 characters
version
integer
timestamp
string
createDate
string <date-time>
lastUpdateBy
integer
endRow
integer
totalRows
integer
status
integer
401

Unauthorized. Wrong password.

403

Forbidden. Authenticated, but the user has been deactivated.

Request samples
application/json
{
  • "endRow": 300,
  • "oldValues": null,
  • "operationType": "fetch",
  • "startRow": 0,
  • "textMatchStyle": "exact"
}
Response samples
application/json
{
  • "response": {
    • "node": "pricefx-cluster-app-frontend",
    • "startRow": 0,
    • "data": [
      • {
        • "version": 0,
        • "typedId": "2149212731.LAT",
        • "clientIP": "77.78.82.210,130.176.219.42",
        • "userName": "admin",
        • "details": "SUCCESS",
        • "timestamp": "2024-07-01T08:54:08",
        • "createDate": "2024-07-01T08:54:08",
        • "createdBy": 2147490696,
        • "lastUpdateDate": "2024-07-01T08:54:08",
        • "lastUpdateBy": 2147490696
        }
      ],
    • "endRow": 1,
    • "totalRows": 1,
    • "status": 0
    }
}