Skip to main content

GoalDependencyApi

valkyrai-api

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

MethodHTTP requestDescription
deleteGoalDependencyDELETE GoalDependencyApiDelete 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

NameTypeDescriptionNotes
idUUIDUnique identifier for the GoalDependency.

Return type

Void

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

NameTypeDescriptionNotes
idUUIDUnique identifier for the GoalDependency.

Return type

GoalDependency

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

GoalDependency

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

NameTypeDescriptionNotes
goalDependencyGoalDependencyGoalDependency details.

Return type

GoalDependency

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

NameTypeDescriptionNotes
idUUIDUnique identifier for the GoalDependency.
goalDependencyGoalDependencyUpdated GoalDependency details.

Return type

GoalDependency

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]