LoginApi
valkyrai-api
All URIs are relative to http://localhost:8080/v1
| Method | HTTP request | Description |
|---|---|---|
| deleteLogin | DELETE LoginApi | Delete a Login. |
deleteLogin
Void
deleteLogin(id)
Delete a Login.
Deletes a specific Login.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.LoginApi;
LoginApi apiInstance = new LoginApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the Login.
try {
Void result = apiInstance.deleteLogin(id);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling LoginApi#deleteLogin");
e.printStackTrace();
}
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| id | UUID | Unique identifier for the Login. |
Return type
Authorization
No authorization required
HTTP request headers
- Content-Type: Not defined
- Accept: Not defined
getLogin
Login
getLogin(id)
Retrieve a single Login
Retrieves a single Login for a specific uid.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.LoginApi;
LoginApi apiInstance = new LoginApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the Login.
try {
Login result = apiInstance.getLogin(id);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling LoginApi#getLogin");
e.printStackTrace();
}
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| id | UUID | Unique identifier for the Login. |
Return type
Authorization
No authorization required
HTTP request headers
- Content-Type: Not defined
- Accept: application/json
getLoginList
Login
getLoginList(pagesizesort)
Retrieve a list of Logins
Retrieves a list of Logins.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.LoginApi;
LoginApi apiInstance = new LoginApi();
Integer page = 0; // Integer |
Integer size = 20; // Integer |
List<String> sort = Arrays.asList(); // List<String> |
try {
Login result = apiInstance.getLoginList(pagesizesort);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling LoginApi#getLoginList");
e.printStackTrace();
}
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| page | Integer | [optional] [default to 0] | |
| size | Integer | [optional] [default to 20] | |
| sort | List<String> | [optional] |
Return type
Authorization
No authorization required
HTTP request headers
- Content-Type: Not defined
- Accept: application/json
postLogin
Login
postLogin(login)
Create a new Login
Creates a new Login.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.LoginApi;
LoginApi apiInstance = new LoginApi();
Login login = new Login(); // Login | Login details.
try {
Login result = apiInstance.postLogin(login);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling LoginApi#postLogin");
e.printStackTrace();
}
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| login | Login | Login details. |
Return type
Authorization
No authorization required
HTTP request headers
- Content-Type: application/json
- Accept: application/json
updateLogin
Login
updateLogin(idlogin)
Update an existing Login
Updates an existing Login.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.LoginApi;
LoginApi apiInstance = new LoginApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the Login.
Login login = new Login(); // Login | Updated Login details.
try {
Login result = apiInstance.updateLogin(idlogin);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling LoginApi#updateLogin");
e.printStackTrace();
}
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| id | UUID | Unique identifier for the Login. | |
| login | Login | Updated Login 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.1-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-09-03T16:35:42.569765-07:00[America/Los_Angeles] |