Skip to main content

BlankRangeApi

valkyrai-api

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

MethodHTTP requestDescription
deleteBlankRangeDELETE BlankRangeApiDelete a BlankRange.

deleteBlankRange

Void
deleteBlankRange(id)

Delete a BlankRange.

Deletes a specific BlankRange.

Example

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


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

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

Parameters

NameTypeDescriptionNotes
idUUIDUnique identifier for the BlankRange.

Return type

Void

Authorization

No authorization required

HTTP request headers

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

getBlankRange

BlankRange
getBlankRange(id)

Retrieve a single BlankRange

Retrieves a single BlankRange for a specific uid.

Example

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


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

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

Parameters

NameTypeDescriptionNotes
idUUIDUnique identifier for the BlankRange.

Return type

BlankRange

Authorization

No authorization required

HTTP request headers

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

getBlankRangeList

BlankRange
getBlankRangeList()

Retrieve a list of BlankRanges

Retrieves a list of BlankRanges.

Example

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


BlankRangeApi apiInstance = new BlankRangeApi();

try {
BlankRange result = apiInstance.getBlankRangeList();
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling BlankRangeApi#getBlankRangeList");
e.printStackTrace();
}

Parameters

This endpoint does not need any parameter.

Return type

BlankRange

Authorization

No authorization required

HTTP request headers

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

postBlankRange

BlankRange
postBlankRange(blankRange)

Create a new BlankRange

Creates a new BlankRange.

Example

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


BlankRangeApi apiInstance = new BlankRangeApi();
BlankRange blankRange = new BlankRange(); // BlankRange | BlankRange details.

try {
BlankRange result = apiInstance.postBlankRange(blankRange);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling BlankRangeApi#postBlankRange");
e.printStackTrace();
}

Parameters

NameTypeDescriptionNotes
blankRangeBlankRangeBlankRange details.

Return type

BlankRange

Authorization

No authorization required

HTTP request headers

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

updateBlankRange

BlankRange
updateBlankRange(idblankRange)

Update an existing BlankRange

Updates an existing BlankRange.

Example

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


BlankRangeApi apiInstance = new BlankRangeApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the BlankRange.
BlankRange blankRange = new BlankRange(); // BlankRange | Updated BlankRange details.

try {
BlankRange result = apiInstance.updateBlankRange(idblankRange);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling BlankRangeApi#updateBlankRange");
e.printStackTrace();
}

Parameters

NameTypeDescriptionNotes
idUUIDUnique identifier for the BlankRange.
blankRangeBlankRangeUpdated BlankRange details.

Return type

BlankRange

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]