ThorUXComponentApi
valkyrai-api
All URIs are relative to http://localhost:8080/v1
Method | HTTP request | Description |
---|---|---|
deleteThorUXComponent | DELETE ThorUXComponentApi | Delete 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
Name | Type | Description | Notes |
---|---|---|---|
id | UUID | Unique identifier for the ThorUXComponent. |
Return type
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
Name | Type | Description | Notes |
---|---|---|---|
id | UUID | Unique identifier for the ThorUXComponent. |
Return type
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
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
Name | Type | Description | Notes |
---|---|---|---|
thorUXComponent | ThorUXComponent | ThorUXComponent details. |
Return type
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
Name | Type | Description | Notes |
---|---|---|---|
id | UUID | Unique identifier for the ThorUXComponent. | |
thorUXComponent | ThorUXComponent | Updated ThorUXComponent 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-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-04-09T20:27:13.881184-07:00[America/Los_Angeles] |