PtgRefApi
valkyrai-api
All URIs are relative to http://localhost:8080/v1
| Method | HTTP request | Description |
|---|---|---|
| deletePtgRef | DELETE PtgRefApi | Delete a PtgRef. |
deletePtgRef
Void
deletePtgRef(id)
Delete a PtgRef.
Deletes a specific PtgRef.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.PtgRefApi;
PtgRefApi apiInstance = new PtgRefApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the PtgRef.
try {
Void result = apiInstance.deletePtgRef(id);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling PtgRefApi#deletePtgRef");
e.printStackTrace();
}
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| id | UUID | Unique identifier for the PtgRef. |