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