Skip to main content

PivotTableApi

valkyrai-api

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

MethodHTTP requestDescription
deletePivotTableDELETE PivotTableApiDelete a PivotTable.

deletePivotTable

Void
deletePivotTable(id)

Delete a PivotTable.

Deletes a specific PivotTable.

Example

Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.PivotTableApi;


PivotTableApi apiInstance = new PivotTableApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the PivotTable.

try {
Void result = apiInstance.deletePivotTable(id);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling PivotTableApi#deletePivotTable");
e.printStackTrace();
}

Parameters

NameTypeDescriptionNotes
idUUIDUnique identifier for the PivotTable.

Return type

Void

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

getPivotTable

PivotTable
getPivotTable(id)

Retrieve a single PivotTable

Retrieves a single PivotTable for a specific uid.

Example

Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.PivotTableApi;


PivotTableApi apiInstance = new PivotTableApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the PivotTable.

try {
PivotTable result = apiInstance.getPivotTable(id);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling PivotTableApi#getPivotTable");
e.printStackTrace();
}

Parameters

NameTypeDescriptionNotes
idUUIDUnique identifier for the PivotTable.

Return type

PivotTable

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

getPivotTableList

PivotTable
getPivotTableList(pagesizesort)

Retrieve a list of PivotTables

Retrieves a list of PivotTables.

Example

Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.PivotTableApi;


PivotTableApi apiInstance = new PivotTableApi();
Integer page = 0; // Integer |
Integer size = 20; // Integer |
List<String> sort = Arrays.asList(); // List<String> |

try {
PivotTable result = apiInstance.getPivotTableList(pagesizesort);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling PivotTableApi#getPivotTableList");
e.printStackTrace();
}

Parameters

NameTypeDescriptionNotes
pageInteger[optional] [default to 0]
sizeInteger[optional] [default to 20]
sortList<String>[optional]

Return type

PivotTable

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

postPivotTable

PivotTable
postPivotTable(pivotTable)

Create a new PivotTable

Creates a new PivotTable.

Example

Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.PivotTableApi;


PivotTableApi apiInstance = new PivotTableApi();
PivotTable pivotTable = new PivotTable(); // PivotTable | PivotTable details.

try {
PivotTable result = apiInstance.postPivotTable(pivotTable);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling PivotTableApi#postPivotTable");
e.printStackTrace();
}

Parameters

NameTypeDescriptionNotes
pivotTablePivotTablePivotTable details.

Return type

PivotTable

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

updatePivotTable

PivotTable
updatePivotTable(idpivotTable)

Update an existing PivotTable

Updates an existing PivotTable.

Example

Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.PivotTableApi;


PivotTableApi apiInstance = new PivotTableApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the PivotTable.
PivotTable pivotTable = new PivotTable(); // PivotTable | Updated PivotTable details.

try {
PivotTable result = apiInstance.updatePivotTable(idpivotTable);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling PivotTableApi#updatePivotTable");
e.printStackTrace();
}

Parameters

NameTypeDescriptionNotes
idUUIDUnique identifier for the PivotTable.
pivotTablePivotTableUpdated PivotTable details.

Return type

PivotTable

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.1-SNAPSHOT
API ARTIFACTcom.valkyrlabs.valkyrai-api.jar
GENERATOR VERSIONorg.openapitools.openapi-generator:7.5.0
GENERATOR CLASSorg.openapitools.codegen.languages.SpringCodegen
GENERATED DATE2025-09-03T16:35:42.569765-07:00[America/Los_Angeles]