Skip to main content

LoginApi

valkyrai-api

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

MethodHTTP requestDescription
deleteLoginDELETE LoginApiDelete 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

NameTypeDescriptionNotes
idUUIDUnique identifier for the Login.

Return type

Void

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

NameTypeDescriptionNotes
idUUIDUnique identifier for the Login.

Return type

Login

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

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

Return type

Login

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

NameTypeDescriptionNotes
loginLoginLogin details.

Return type

Login

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

NameTypeDescriptionNotes
idUUIDUnique identifier for the Login.
loginLoginUpdated Login details.

Return type

Login

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]