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