Skip to main content

EventLogApi

valkyrai-api

All URIs are relative to http://localhost:8080/v1

MethodHTTP requestDescription
deleteEventLogDELETE EventLogApiDelete a EventLog.

deleteEventLog

Void
deleteEventLog(id)

Delete a EventLog.

Deletes a specific EventLog.

Example

Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.EventLogApi;


EventLogApi apiInstance = new EventLogApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the EventLog.

try {
Void result = apiInstance.deleteEventLog(id);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling EventLogApi#deleteEventLog");
e.printStackTrace();
}

Parameters

NameTypeDescriptionNotes
idUUIDUnique identifier for the EventLog.

Return type

Void

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

getEventLog

EventLog
getEventLog(id)

Retrieve a single EventLog

Retrieves a single EventLog for a specific uid.

Example

Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.EventLogApi;


EventLogApi apiInstance = new EventLogApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the EventLog.

try {
EventLog result = apiInstance.getEventLog(id);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling EventLogApi#getEventLog");
e.printStackTrace();
}

Parameters

NameTypeDescriptionNotes
idUUIDUnique identifier for the EventLog.

Return type

EventLog

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

getEventLogList

EventLog
getEventLogList()

Retrieve a list of EventLogs

Retrieves a list of EventLogs.

Example

Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.EventLogApi;


EventLogApi apiInstance = new EventLogApi();

try {
EventLog result = apiInstance.getEventLogList();
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling EventLogApi#getEventLogList");
e.printStackTrace();
}

Parameters

This endpoint does not need any parameter.

Return type

EventLog

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

postEventLog

EventLog
postEventLog(eventLog)

Create a new EventLog

Creates a new EventLog.

Example

Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.EventLogApi;


EventLogApi apiInstance = new EventLogApi();
EventLog eventLog = new EventLog(); // EventLog | EventLog details.

try {
EventLog result = apiInstance.postEventLog(eventLog);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling EventLogApi#postEventLog");
e.printStackTrace();
}

Parameters

NameTypeDescriptionNotes
eventLogEventLogEventLog details.

Return type

EventLog

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

updateEventLog

EventLog
updateEventLog(ideventLog)

Update an existing EventLog

Updates an existing EventLog.

Example

Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.EventLogApi;


EventLogApi apiInstance = new EventLogApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the EventLog.
EventLog eventLog = new EventLog(); // EventLog | Updated EventLog details.

try {
EventLog result = apiInstance.updateEventLog(ideventLog);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling EventLogApi#updateEventLog");
e.printStackTrace();
}

Parameters

NameTypeDescriptionNotes
idUUIDUnique identifier for the EventLog.
eventLogEventLogUpdated EventLog details.

Return type

EventLog

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

Generated Version Details

~value
GENERATOR VERSIONcom.valkyrlabs:ValkyrAI API 1.0-SNAPSHOT
API ARTIFACTcom.valkyrlabs.valkyrai-api.jar
GENERATOR VERSIONorg.openapitools.openapi-generator:7.5.0
GENERATOR CLASSorg.openapitools.codegen.languages.SpringCodegen
GENERATED DATE2025-04-09T20:27:13.881184-07:00[America/Los_Angeles]