OasPathApi
valkyrai-api
All URIs are relative to http://localhost:8080/v1
| Method | HTTP request | Description |
|---|---|---|
| deleteOasPath | DELETE OasPathApi | Delete 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
| Name | Type | Description | Notes |
|---|---|---|---|
| id | UUID | Unique identifier for the OasPath. |
Return type
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
| Name | Type | Description | Notes |
|---|---|---|---|
| id | UUID | Unique identifier for the OasPath. |
Return type
Authorization
No authorization required
HTTP request headers
- Content-Type: Not defined
- Accept: application/json
getOasPathList
OasPath
getOasPathList(pagesizesort)
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();
Integer page = 0; // Integer |
Integer size = 20; // Integer |
List<String> sort = Arrays.asList(); // List<String> |
try {
OasPath result = apiInstance.getOasPathList(pagesizesort);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling OasPathApi#getOasPathList");
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
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
| Name | Type | Description | Notes |
|---|---|---|---|
| oasPath | OasPath | OasPath details. |
Return type
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
| Name | Type | Description | Notes |
|---|---|---|---|
| id | UUID | Unique identifier for the OasPath. | |
| oasPath | OasPath | Updated OasPath 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] |