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()
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();
try {
ThorUXMeta result = apiInstance.getThorUXMetaList();
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling ThorUXMetaApi#getThorUXMetaList");
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
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-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] |