LogoutApi
valkyrai-api
All URIs are relative to http://localhost:8080/v1
Method | HTTP request | Description |
---|---|---|
deleteLogout | DELETE LogoutApi | Delete a Logout. |
deleteLogout
Void
deleteLogout(id)
Delete a Logout.
Deletes a specific Logout.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.LogoutApi;
LogoutApi apiInstance = new LogoutApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the Logout.
try {
Void result = apiInstance.deleteLogout(id);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling LogoutApi#deleteLogout");
e.printStackTrace();
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
id | UUID | Unique identifier for the Logout. |
Return type
Authorization
No authorization required
HTTP request headers
- Content-Type: Not defined
- Accept: Not defined
getLogout
Logout
getLogout(id)
Retrieve a single Logout
Retrieves a single Logout for a specific uid.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.LogoutApi;
LogoutApi apiInstance = new LogoutApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the Logout.
try {
Logout result = apiInstance.getLogout(id);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling LogoutApi#getLogout");
e.printStackTrace();
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
id | UUID | Unique identifier for the Logout. |
Return type
Authorization
No authorization required
HTTP request headers
- Content-Type: Not defined
- Accept: application/json
getLogoutList
Logout
getLogoutList()
Retrieve a list of Logouts
Retrieves a list of Logouts.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.LogoutApi;
LogoutApi apiInstance = new LogoutApi();
try {
Logout result = apiInstance.getLogoutList();
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling LogoutApi#getLogoutList");
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
postLogout
Logout
postLogout(logout)
Create a new Logout
Creates a new Logout.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.LogoutApi;
LogoutApi apiInstance = new LogoutApi();
Logout logout = new Logout(); // Logout | Logout details.
try {
Logout result = apiInstance.postLogout(logout);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling LogoutApi#postLogout");
e.printStackTrace();
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
logout | Logout | Logout details. |
Return type
Authorization
No authorization required
HTTP request headers
- Content-Type: application/json
- Accept: application/json
updateLogout
Logout
updateLogout(idlogout)
Update an existing Logout
Updates an existing Logout.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.LogoutApi;
LogoutApi apiInstance = new LogoutApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the Logout.
Logout logout = new Logout(); // Logout | Updated Logout details.
try {
Logout result = apiInstance.updateLogout(idlogout);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling LogoutApi#updateLogout");
e.printStackTrace();
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
id | UUID | Unique identifier for the Logout. | |
logout | Logout | Updated Logout 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] |