McpResponsePartApi
valkyrai-api
All URIs are relative to http://localhost:8080/v1
| Method | HTTP request | Description |
|---|---|---|
| deleteMcpResponsePart | DELETE McpResponsePartApi | Delete a McpResponsePart. |
deleteMcpResponsePart
Void
deleteMcpResponsePart(id)
Delete a McpResponsePart.
Deletes a specific McpResponsePart.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.McpResponsePartApi;
McpResponsePartApi apiInstance = new McpResponsePartApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the McpResponsePart.
try {
Void result = apiInstance.deleteMcpResponsePart(id);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling McpResponsePartApi#deleteMcpResponsePart");
e.printStackTrace();
}
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| id | UUID | Unique identifier for the McpResponsePart. |
Return type
Void
Authorization
No authorization required
HTTP request headers
- Content-Type: Not defined
- Accept: Not defined
getMcpResponsePart
McpResponsePart
getMcpResponsePart(id)
Retrieve a single McpResponsePart
Retrieves a single McpResponsePart for a specific uid.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.McpResponsePartApi;
McpResponsePartApi apiInstance = new McpResponsePartApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the McpResponsePart.
try {
McpResponsePart result = apiInstance.getMcpResponsePart(id);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling McpResponsePartApi#getMcpResponsePart");
e.printStackTrace();
}
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| id | UUID | Unique identifier for the McpResponsePart. |
Return type
McpResponsePart
Authorization
No authorization required
HTTP request headers
- Content-Type: Not defined
- Accept: application/json
getMcpResponsePartList
McpResponsePart
getMcpResponsePartList(pagesizesort)
Retrieve a list of McpResponseParts
Retrieves a list of McpResponseParts.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.McpResponsePartApi;
McpResponsePartApi apiInstance = new McpResponsePartApi();
Integer page = 0; // Integer |
Integer size = 20; // Integer |
List<String> sort = Arrays.asList(); // List<String> |
try {
McpResponsePart result = apiInstance.getMcpResponsePartList(pagesizesort);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling McpResponsePartApi#getMcpResponsePartList");
e.printStackTrace();
}
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| page | Integer | [optional] [default to 0] | |
| size | Integer | [optional] [default to 20] | |
| sort | List<String> | [optional] |
Return type
McpResponsePart
Authorization
No authorization required
HTTP request headers
- Content-Type: Not defined
- Accept: application/json
patchMcpResponsePartById
McpResponsePart
patchMcpResponsePartById(idmcpResponsePart)
Partially update an existing McpResponsePart
Updates an existing McpResponsePart.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.McpResponsePartApi;
McpResponsePartApi apiInstance = new McpResponsePartApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the McpResponsePart.
McpResponsePart mcpResponsePart = new McpResponsePart(); // McpResponsePart | Merge-patch fields for McpResponsePart.
try {
McpResponsePart result = apiInstance.patchMcpResponsePartById(idmcpResponsePart);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling McpResponsePartApi#patchMcpResponsePartById");
e.printStackTrace();
}
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| id | UUID | Unique identifier for the McpResponsePart. | |
| mcpResponsePart | McpResponsePart | Merge-patch fields for McpResponsePart. |
Return type
McpResponsePart
Authorization
No authorization required
HTTP request headers
- Content-Type: application/merge-patch+jsonapplication/json-patch+jsonapplication/json
- Accept: application/json
postMcpResponsePart
McpResponsePart
postMcpResponsePart(mcpResponsePart)
Create a new McpResponsePart
Creates a new McpResponsePart.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.McpResponsePartApi;
McpResponsePartApi apiInstance = new McpResponsePartApi();
McpResponsePart mcpResponsePart = new McpResponsePart(); // McpResponsePart | McpResponsePart details.
try {
McpResponsePart result = apiInstance.postMcpResponsePart(mcpResponsePart);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling McpResponsePartApi#postMcpResponsePart");
e.printStackTrace();
}
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| mcpResponsePart | McpResponsePart | McpResponsePart details. |
Return type
McpResponsePart
Authorization
No authorization required
HTTP request headers
- Content-Type: application/json
- Accept: application/json
updateMcpResponsePart
McpResponsePart
updateMcpResponsePart(idmcpResponsePart)
Update an existing McpResponsePart
Updates an existing McpResponsePart.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.McpResponsePartApi;
McpResponsePartApi apiInstance = new McpResponsePartApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the McpResponsePart.
McpResponsePart mcpResponsePart = new McpResponsePart(); // McpResponsePart | Updated McpResponsePart details.
try {
McpResponsePart result = apiInstance.updateMcpResponsePart(idmcpResponsePart);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling McpResponsePartApi#updateMcpResponsePart");
e.printStackTrace();
}
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| id | UUID | Unique identifier for the McpResponsePart. | |
| mcpResponsePart | McpResponsePart | Updated McpResponsePart details. |
Return type
McpResponsePart
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.3-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 | 2026-05-18T19:22:19.957049-07:00[America/Los_Angeles] |