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