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. |