BlankRangeApi
valkyrai-api
All URIs are relative to http://localhost:8080/v1
Method | HTTP request | Description |
---|---|---|
deleteBlankRange | DELETE BlankRangeApi | Delete 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
Name | Type | Description | Notes |
---|---|---|---|
id | UUID | Unique identifier for the BlankRange. |
Return type
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
Name | Type | Description | Notes |
---|---|---|---|
id | UUID | Unique identifier for the BlankRange. |
Return type
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
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
Name | Type | Description | Notes |
---|---|---|---|
blankRange | BlankRange | BlankRange details. |
Return type
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
Name | Type | Description | Notes |
---|---|---|---|
id | UUID | Unique identifier for the BlankRange. | |
blankRange | BlankRange | Updated BlankRange 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] |