Skip to main content

SheetRowApi

valkyrai-api

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

MethodHTTP requestDescription
deleteSheetRowDELETE SheetRowApiDelete 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

NameTypeDescriptionNotes
idUUIDUnique identifier for the SheetRow.

Return type

Void

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

NameTypeDescriptionNotes
idUUIDUnique identifier for the SheetRow.

Return type

SheetRow

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

SheetRow

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

NameTypeDescriptionNotes
sheetRowSheetRowSheetRow details.

Return type

SheetRow

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

NameTypeDescriptionNotes
idUUIDUnique identifier for the SheetRow.
sheetRowSheetRowUpdated SheetRow details.

Return type

SheetRow

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]