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