Skip to main content

ThorUXComponentApi

valkyrai-api

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

MethodHTTP requestDescription
deleteThorUXComponentDELETE ThorUXComponentApiDelete a ThorUXComponent.

deleteThorUXComponent

Void
deleteThorUXComponent(id)

Delete a ThorUXComponent.

Deletes a specific ThorUXComponent.

Example

Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.ThorUXComponentApi;


ThorUXComponentApi apiInstance = new ThorUXComponentApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the ThorUXComponent.

try {
Void result = apiInstance.deleteThorUXComponent(id);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling ThorUXComponentApi#deleteThorUXComponent");
e.printStackTrace();
}

Parameters

NameTypeDescriptionNotes
idUUIDUnique identifier for the ThorUXComponent.

Return type

Void

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

getThorUXComponent

ThorUXComponent
getThorUXComponent(id)

Retrieve a single ThorUXComponent

Retrieves a single ThorUXComponent for a specific uid.

Example

Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.ThorUXComponentApi;


ThorUXComponentApi apiInstance = new ThorUXComponentApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the ThorUXComponent.

try {
ThorUXComponent result = apiInstance.getThorUXComponent(id);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling ThorUXComponentApi#getThorUXComponent");
e.printStackTrace();
}

Parameters

NameTypeDescriptionNotes
idUUIDUnique identifier for the ThorUXComponent.

Return type

ThorUXComponent

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

getThorUXComponentList

ThorUXComponent
getThorUXComponentList()

Retrieve a list of ThorUXComponents

Retrieves a list of ThorUXComponents.

Example

Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.ThorUXComponentApi;


ThorUXComponentApi apiInstance = new ThorUXComponentApi();

try {
ThorUXComponent result = apiInstance.getThorUXComponentList();
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling ThorUXComponentApi#getThorUXComponentList");
e.printStackTrace();
}

Parameters

This endpoint does not need any parameter.

Return type

ThorUXComponent

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

postThorUXComponent

ThorUXComponent
postThorUXComponent(thorUXComponent)

Create a new ThorUXComponent

Creates a new ThorUXComponent.

Example

Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.ThorUXComponentApi;


ThorUXComponentApi apiInstance = new ThorUXComponentApi();
ThorUXComponent thorUXComponent = new ThorUXComponent(); // ThorUXComponent | ThorUXComponent details.

try {
ThorUXComponent result = apiInstance.postThorUXComponent(thorUXComponent);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling ThorUXComponentApi#postThorUXComponent");
e.printStackTrace();
}

Parameters

NameTypeDescriptionNotes
thorUXComponentThorUXComponentThorUXComponent details.

Return type

ThorUXComponent

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

updateThorUXComponent

ThorUXComponent
updateThorUXComponent(idthorUXComponent)

Update an existing ThorUXComponent

Updates an existing ThorUXComponent.

Example

Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.ThorUXComponentApi;


ThorUXComponentApi apiInstance = new ThorUXComponentApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the ThorUXComponent.
ThorUXComponent thorUXComponent = new ThorUXComponent(); // ThorUXComponent | Updated ThorUXComponent details.

try {
ThorUXComponent result = apiInstance.updateThorUXComponent(idthorUXComponent);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling ThorUXComponentApi#updateThorUXComponent");
e.printStackTrace();
}

Parameters

NameTypeDescriptionNotes
idUUIDUnique identifier for the ThorUXComponent.
thorUXComponentThorUXComponentUpdated ThorUXComponent details.

Return type

ThorUXComponent

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]