Skip to main content

LogoutApi

valkyrai-api

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

MethodHTTP requestDescription
deleteLogoutDELETE LogoutApiDelete 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

NameTypeDescriptionNotes
idUUIDUnique identifier for the Logout.

Return type

Void

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

NameTypeDescriptionNotes
idUUIDUnique identifier for the Logout.

Return type

Logout

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

Logout

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

NameTypeDescriptionNotes
logoutLogoutLogout details.

Return type

Logout

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

NameTypeDescriptionNotes
idUUIDUnique identifier for the Logout.
logoutLogoutUpdated Logout details.

Return type

Logout

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]