Skip to main content

OasPathApi

valkyrai-api

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

MethodHTTP requestDescription
deleteOasPathDELETE OasPathApiDelete a OasPath.

deleteOasPath

Void
deleteOasPath(id)

Delete a OasPath.

Deletes a specific OasPath.

Example

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


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

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

Parameters

NameTypeDescriptionNotes
idUUIDUnique identifier for the OasPath.

Return type

Void

Authorization

No authorization required

HTTP request headers

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

getOasPath

OasPath
getOasPath(id)

Retrieve a single OasPath

Retrieves a single OasPath for a specific uid.

Example

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


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

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

Parameters

NameTypeDescriptionNotes
idUUIDUnique identifier for the OasPath.

Return type

OasPath

Authorization

No authorization required

HTTP request headers

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

getOasPathList

OasPath
getOasPathList()

Retrieve a list of OasPaths

Retrieves a list of OasPaths.

Example

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


OasPathApi apiInstance = new OasPathApi();

try {
OasPath result = apiInstance.getOasPathList();
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling OasPathApi#getOasPathList");
e.printStackTrace();
}

Parameters

This endpoint does not need any parameter.

Return type

OasPath

Authorization

No authorization required

HTTP request headers

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

postOasPath

OasPath
postOasPath(oasPath)

Create a new OasPath

Creates a new OasPath.

Example

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


OasPathApi apiInstance = new OasPathApi();
OasPath oasPath = new OasPath(); // OasPath | OasPath details.

try {
OasPath result = apiInstance.postOasPath(oasPath);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling OasPathApi#postOasPath");
e.printStackTrace();
}

Parameters

NameTypeDescriptionNotes
oasPathOasPathOasPath details.

Return type

OasPath

Authorization

No authorization required

HTTP request headers

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

updateOasPath

OasPath
updateOasPath(idoasPath)

Update an existing OasPath

Updates an existing OasPath.

Example

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


OasPathApi apiInstance = new OasPathApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the OasPath.
OasPath oasPath = new OasPath(); // OasPath | Updated OasPath details.

try {
OasPath result = apiInstance.updateOasPath(idoasPath);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling OasPathApi#updateOasPath");
e.printStackTrace();
}

Parameters

NameTypeDescriptionNotes
idUUIDUnique identifier for the OasPath.
oasPathOasPathUpdated OasPath details.

Return type

OasPath

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]