SheetRowApi
valkyrai-api
All URIs are relative to http://localhost:8080/v1
Method | HTTP request | Description |
---|---|---|
deleteSheetRow | DELETE SheetRowApi | Delete a SheetRow. |
deleteSheetRow
Void
deleteSheetRow(id)
Delete a SheetRow.
Deletes a specific SheetRow.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.SheetRowApi;
SheetRowApi apiInstance = new SheetRowApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the SheetRow.
try {
Void result = apiInstance.deleteSheetRow(id);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling SheetRowApi#deleteSheetRow");
e.printStackTrace();
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
id | UUID | Unique identifier for the SheetRow. |
Return type
Authorization
No authorization required
HTTP request headers
- Content-Type: Not defined
- Accept: Not defined
getSheetRow
SheetRow
getSheetRow(id)
Retrieve a single SheetRow
Retrieves a single SheetRow for a specific uid.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.SheetRowApi;
SheetRowApi apiInstance = new SheetRowApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the SheetRow.
try {
SheetRow result = apiInstance.getSheetRow(id);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling SheetRowApi#getSheetRow");
e.printStackTrace();
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
id | UUID | Unique identifier for the SheetRow. |
Return type
Authorization
No authorization required
HTTP request headers
- Content-Type: Not defined
- Accept: application/json
getSheetRowList
SheetRow
getSheetRowList()
Retrieve a list of SheetRows
Retrieves a list of SheetRows.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.SheetRowApi;
SheetRowApi apiInstance = new SheetRowApi();
try {
SheetRow result = apiInstance.getSheetRowList();
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling SheetRowApi#getSheetRowList");
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
postSheetRow
SheetRow
postSheetRow(sheetRow)
Create a new SheetRow
Creates a new SheetRow.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.SheetRowApi;
SheetRowApi apiInstance = new SheetRowApi();
SheetRow sheetRow = new SheetRow(); // SheetRow | SheetRow details.
try {
SheetRow result = apiInstance.postSheetRow(sheetRow);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling SheetRowApi#postSheetRow");
e.printStackTrace();
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
sheetRow | SheetRow | SheetRow details. |
Return type
Authorization
No authorization required
HTTP request headers
- Content-Type: application/json
- Accept: application/json
updateSheetRow
SheetRow
updateSheetRow(idsheetRow)
Update an existing SheetRow
Updates an existing SheetRow.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.SheetRowApi;
SheetRowApi apiInstance = new SheetRowApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the SheetRow.
SheetRow sheetRow = new SheetRow(); // SheetRow | Updated SheetRow details.
try {
SheetRow result = apiInstance.updateSheetRow(idsheetRow);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling SheetRowApi#updateSheetRow");
e.printStackTrace();
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
id | UUID | Unique identifier for the SheetRow. | |
sheetRow | SheetRow | Updated SheetRow 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] |