EventLogApi
valkyrai-api
All URIs are relative to http://localhost:8080/v1
Method | HTTP request | Description |
---|---|---|
deleteEventLog | DELETE EventLogApi | Delete 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
Name | Type | Description | Notes |
---|---|---|---|
id | UUID | Unique identifier for the EventLog. |
Return type
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
Name | Type | Description | Notes |
---|---|---|---|
id | UUID | Unique identifier for the EventLog. |
Return type
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
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
Name | Type | Description | Notes |
---|---|---|---|
eventLog | EventLog | EventLog details. |
Return type
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
Name | Type | Description | Notes |
---|---|---|---|
id | UUID | Unique identifier for the EventLog. | |
eventLog | EventLog | Updated EventLog details. |
Return type
Authorization
No authorization required
HTTP request headers
- Content-Type: application/json
- Accept: application/json
Generated Version Details
~ | value |
---|---|
GENERATOR VERSION | com.valkyrlabs:ValkyrAI API 1.0-SNAPSHOT |
API ARTIFACT | com.valkyrlabs.valkyrai-api.jar |
GENERATOR VERSION | org.openapitools.openapi-generator:7.5.0 |
GENERATOR CLASS | org.openapitools.codegen.languages.SpringCodegen |
GENERATED DATE | 2025-04-09T20:27:13.881184-07:00[America/Los_Angeles] |