PivotTableApi
valkyrai-api
All URIs are relative to http://localhost:8080/v1
Method | HTTP request | Description |
---|---|---|
deletePivotTable | DELETE PivotTableApi | Delete 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
Name | Type | Description | Notes |
---|---|---|---|
id | UUID | Unique identifier for the PivotTable. |
Return type
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
Name | Type | Description | Notes |
---|---|---|---|
id | UUID | Unique identifier for the PivotTable. |
Return type
Authorization
No authorization required
HTTP request headers
- Content-Type: Not defined
- Accept: application/json
getPivotTableList
PivotTable
getPivotTableList()
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();
try {
PivotTable result = apiInstance.getPivotTableList();
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling PivotTableApi#getPivotTableList");
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
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
Name | Type | Description | Notes |
---|---|---|---|
pivotTable | PivotTable | PivotTable details. |
Return type
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
Name | Type | Description | Notes |
---|---|---|---|
id | UUID | Unique identifier for the PivotTable. | |
pivotTable | PivotTable | Updated PivotTable 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] |