ThorUXMetaApi
valkyrai-api
All URIs are relative to http://localhost:8080/v1
Method | HTTP request | Description |
---|---|---|
deleteThorUXMeta | DELETE ThorUXMetaApi | Delete a ThorUXMeta. |
deleteThorUXMeta
Void
deleteThorUXMeta(id)
Delete a ThorUXMeta.
Deletes a specific ThorUXMeta.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.ThorUXMetaApi;
ThorUXMetaApi apiInstance = new ThorUXMetaApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the ThorUXMeta.
try {
Void result = apiInstance.deleteThorUXMeta(id);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling ThorUXMetaApi#deleteThorUXMeta");
e.printStackTrace();
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
id | UUID | Unique identifier for the ThorUXMeta. |
Return type
Authorization
No authorization required
HTTP request headers
- Content-Type: Not defined
- Accept: Not defined
getThorUXMeta
ThorUXMeta
getThorUXMeta(id)
Retrieve a single ThorUXMeta
Retrieves a single ThorUXMeta for a specific uid.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.ThorUXMetaApi;
ThorUXMetaApi apiInstance = new ThorUXMetaApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the ThorUXMeta.
try {
ThorUXMeta result = apiInstance.getThorUXMeta(id);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling ThorUXMetaApi#getThorUXMeta");
e.printStackTrace();
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
id | UUID | Unique identifier for the ThorUXMeta. |
Return type
Authorization
No authorization required
HTTP request headers
- Content-Type: Not defined
- Accept: application/json
getThorUXMetaList
ThorUXMeta
getThorUXMetaList(pagesizesort)
Retrieve a list of ThorUXMetas
Retrieves a list of ThorUXMetas.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.ThorUXMetaApi;
ThorUXMetaApi apiInstance = new ThorUXMetaApi();
Integer page = 0; // Integer |
Integer size = 20; // Integer |
List<String> sort = Arrays.asList(); // List<String> |
try {
ThorUXMeta result = apiInstance.getThorUXMetaList(pagesizesort);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling ThorUXMetaApi#getThorUXMetaList");
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
postThorUXMeta
ThorUXMeta
postThorUXMeta(thorUXMeta)
Create a new ThorUXMeta
Creates a new ThorUXMeta.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.ThorUXMetaApi;
ThorUXMetaApi apiInstance = new ThorUXMetaApi();
ThorUXMeta thorUXMeta = new ThorUXMeta(); // ThorUXMeta | ThorUXMeta details.
try {
ThorUXMeta result = apiInstance.postThorUXMeta(thorUXMeta);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling ThorUXMetaApi#postThorUXMeta");
e.printStackTrace();
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
thorUXMeta | ThorUXMeta | ThorUXMeta details. |
Return type
Authorization
No authorization required
HTTP request headers
- Content-Type: application/json
- Accept: application/json
updateThorUXMeta
ThorUXMeta
updateThorUXMeta(idthorUXMeta)
Update an existing ThorUXMeta
Updates an existing ThorUXMeta.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.ThorUXMetaApi;
ThorUXMetaApi apiInstance = new ThorUXMetaApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the ThorUXMeta.
ThorUXMeta thorUXMeta = new ThorUXMeta(); // ThorUXMeta | Updated ThorUXMeta details.
try {
ThorUXMeta result = apiInstance.updateThorUXMeta(idthorUXMeta);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling ThorUXMetaApi#updateThorUXMeta");
e.printStackTrace();
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
id | UUID | Unique identifier for the ThorUXMeta. | |
thorUXMeta | ThorUXMeta | Updated ThorUXMeta 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] |