McpDownloadResponseApi
valkyrai-api
All URIs are relative to http://localhost:8080/v1
Method | HTTP request | Description |
---|---|---|
deleteMcpDownloadResponse | DELETE McpDownloadResponseApi | Delete a McpDownloadResponse. |
deleteMcpDownloadResponse
Void
deleteMcpDownloadResponse(id)
Delete a McpDownloadResponse.
Deletes a specific McpDownloadResponse.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.McpDownloadResponseApi;
McpDownloadResponseApi apiInstance = new McpDownloadResponseApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the McpDownloadResponse.
try {
Void result = apiInstance.deleteMcpDownloadResponse(id);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling McpDownloadResponseApi#deleteMcpDownloadResponse");
e.printStackTrace();
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
id | UUID | Unique identifier for the McpDownloadResponse. |
Return type
Authorization
No authorization required
HTTP request headers
- Content-Type: Not defined
- Accept: Not defined
getMcpDownloadResponse
McpDownloadResponse
getMcpDownloadResponse(id)
Retrieve a single McpDownloadResponse
Retrieves a single McpDownloadResponse for a specific uid.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.McpDownloadResponseApi;
McpDownloadResponseApi apiInstance = new McpDownloadResponseApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the McpDownloadResponse.
try {
McpDownloadResponse result = apiInstance.getMcpDownloadResponse(id);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling McpDownloadResponseApi#getMcpDownloadResponse");
e.printStackTrace();
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
id | UUID | Unique identifier for the McpDownloadResponse. |
Return type
Authorization
No authorization required
HTTP request headers
- Content-Type: Not defined
- Accept: application/json
getMcpDownloadResponseList
McpDownloadResponse
getMcpDownloadResponseList()
Retrieve a list of McpDownloadResponses
Retrieves a list of McpDownloadResponses.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.McpDownloadResponseApi;
McpDownloadResponseApi apiInstance = new McpDownloadResponseApi();
try {
McpDownloadResponse result = apiInstance.getMcpDownloadResponseList();
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling McpDownloadResponseApi#getMcpDownloadResponseList");
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
postMcpDownloadResponse
McpDownloadResponse
postMcpDownloadResponse(mcpDownloadResponse)
Create a new McpDownloadResponse
Creates a new McpDownloadResponse.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.McpDownloadResponseApi;
McpDownloadResponseApi apiInstance = new McpDownloadResponseApi();
McpDownloadResponse mcpDownloadResponse = new McpDownloadResponse(); // McpDownloadResponse | McpDownloadResponse details.
try {
McpDownloadResponse result = apiInstance.postMcpDownloadResponse(mcpDownloadResponse);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling McpDownloadResponseApi#postMcpDownloadResponse");
e.printStackTrace();
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
mcpDownloadResponse | McpDownloadResponse | McpDownloadResponse details. |
Return type
Authorization
No authorization required
HTTP request headers
- Content-Type: application/json
- Accept: application/json
updateMcpDownloadResponse
McpDownloadResponse
updateMcpDownloadResponse(idmcpDownloadResponse)
Update an existing McpDownloadResponse
Updates an existing McpDownloadResponse.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.McpDownloadResponseApi;
McpDownloadResponseApi apiInstance = new McpDownloadResponseApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the McpDownloadResponse.
McpDownloadResponse mcpDownloadResponse = new McpDownloadResponse(); // McpDownloadResponse | Updated McpDownloadResponse details.
try {
McpDownloadResponse result = apiInstance.updateMcpDownloadResponse(idmcpDownloadResponse);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling McpDownloadResponseApi#updateMcpDownloadResponse");
e.printStackTrace();
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
id | UUID | Unique identifier for the McpDownloadResponse. | |
mcpDownloadResponse | McpDownloadResponse | Updated McpDownloadResponse 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.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-08-11T09:38:12.618574-07:00[America/Los_Angeles] |