AIsuru Docs
AIsuru API
AIsuru API
  • Introduzione
  • Engine
    • ChatLogs
    • ContextVars
    • CorrelationPairs
    • CustomDictionary
    • Dialog
    • EventLogs
    • ExpertReferences
    • Functions
    • Intents
    • LocalizationKeys
    • Media
    • Memories
    • NLP
    • People
    • Search
    • Session
    • Stats
    • Topics
    • UnansweredQuestions
    • User
    • WebHooks
    • Models
  • Backend
    • ActionLog
    • Analysis
    • Asset
    • Badge
    • CompletionConfig
    • ConsumptionLog
    • ImportExport
    • Integration
    • Invitation
    • Memori
    • MemoriList
    • Notification
    • Process
    • Tenant
    • User
    • Models
Powered by GitBook
On this page
  1. Backend

ActionLog

PreviousBackendNextAnalysis

Gets the Action Log objects for a specific User in a specific date interval.

get

Access to Action Log objects not belonging to the current logged in user is granted only to administrative users.

Path parameters
strTokenstringRequired

The login token

strUserIDstringRequired

The ID of the User object

strDateFromstringOptional

The optional begin of the date interval, in UTC time, in the format yyyyMMddHHmmssfff

strDateTostringOptional

The optional end of the date interval, in UTC time, in the format yyyyMMddHHmmssfff

Responses
200
Success
get
GET /api/v2/UserActionLogs/{strToken}/{strUserID}/{strDateFrom}/{strDateTo} HTTP/1.1
Host: 
Accept: */*
200

Success

{
  "actionLogs": [
    {
      "actionLogID": "text",
      "timestamp": "2025-06-07T18:21:30.688Z",
      "type": "text",
      "userID": "text",
      "loginToken": "text",
      "memoriID": "text",
      "integrationID": "text",
      "invitationID": "text",
      "assetURL": "text",
      "userAgent": "text",
      "ipAddress": "text"
    }
  ],
  "requestID": 1,
  "requestDateTime": "2025-06-07T18:21:30.688Z",
  "resultCode": 1,
  "resultMessage": "text"
}

Gets the Action Log objects for a specific Memori in a specific date interval.

get

Access to Action Log objects not belonging to the current logged in user is granted only to administrative users.

Path parameters
strTokenstringRequired

The login token

strMemoriIDstringRequired

The ID of the Memori object

strDateFromstringOptional

The optional begin of the date interval, in the format yyyyMMddHHmmssfff

strDateTostringOptional

The optional end of the date interval, in the format yyyyMMddHHmmssfff

Responses
200
Success
get
GET /api/v2/MemoriActionLogs/{strToken}/{strMemoriID}/{strDateFrom}/{strDateTo} HTTP/1.1
Host: 
Accept: */*
200

Success

{
  "actionLogs": [
    {
      "actionLogID": "text",
      "timestamp": "2025-06-07T18:21:30.688Z",
      "type": "text",
      "userID": "text",
      "loginToken": "text",
      "memoriID": "text",
      "integrationID": "text",
      "invitationID": "text",
      "assetURL": "text",
      "userAgent": "text",
      "ipAddress": "text"
    }
  ],
  "requestID": 1,
  "requestDateTime": "2025-06-07T18:21:30.688Z",
  "resultCode": 1,
  "resultMessage": "text"
}
  • GETGets the Action Log objects for a specific User in a specific date interval.
  • GETGets the Action Log objects for a specific Memori in a specific date interval.