Skip to main content

SheetApi

valkyrai-api

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

MethodHTTP requestDescription
deleteSheetDELETE SheetApiDelete 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

NameTypeDescriptionNotes
idUUIDUnique identifier for the Sheet.

Return type

Void

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

NameTypeDescriptionNotes
idUUIDUnique identifier for the Sheet.

Return type

Sheet

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

Sheet

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

NameTypeDescriptionNotes
sheetSheetSheet details.

Return type

Sheet

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

NameTypeDescriptionNotes
idUUIDUnique identifier for the Sheet.
sheetSheetUpdated Sheet details.

Return type

Sheet

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]