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(pagesizesort)

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();
Integer page = 0; // Integer |
Integer size = 20; // Integer |
List<String> sort = Arrays.asList(); // List<String> |

try {
Logout result = apiInstance.getLogoutList(pagesizesort);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling LogoutApi#getLogoutList");
e.printStackTrace();
}

Parameters

NameTypeDescriptionNotes
pageInteger[optional] [default to 0]
sizeInteger[optional] [default to 20]
sortList<String>[optional]

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.1-SNAPSHOT
API ARTIFACTcom.valkyrlabs.valkyrai-api.jar
GENERATOR VERSIONorg.openapitools.openapi-generator:7.5.0
GENERATOR CLASSorg.openapitools.codegen.languages.SpringCodegen
GENERATED DATE2025-09-03T16:35:42.569765-07:00[America/Los_Angeles]