Skip to main content

ThorUXMetaApi

valkyrai-api

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

MethodHTTP requestDescription
deleteThorUXMetaDELETE ThorUXMetaApiDelete 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

NameTypeDescriptionNotes
idUUIDUnique identifier for the ThorUXMeta.

Return type

Void

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

NameTypeDescriptionNotes
idUUIDUnique identifier for the ThorUXMeta.

Return type

ThorUXMeta

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

ThorUXMeta

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

NameTypeDescriptionNotes
thorUXMetaThorUXMetaThorUXMeta details.

Return type

ThorUXMeta

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

NameTypeDescriptionNotes
idUUIDUnique identifier for the ThorUXMeta.
thorUXMetaThorUXMetaUpdated ThorUXMeta details.

Return type

ThorUXMeta

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]