Skip to main content

McpDownloadResponseApi

valkyrai-api

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

MethodHTTP requestDescription
deleteMcpDownloadResponseDELETE McpDownloadResponseApiDelete 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

NameTypeDescriptionNotes
idUUIDUnique identifier for the McpDownloadResponse.

Return type

Void

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

NameTypeDescriptionNotes
idUUIDUnique identifier for the McpDownloadResponse.

Return type

McpDownloadResponse

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

McpDownloadResponse

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

NameTypeDescriptionNotes
mcpDownloadResponseMcpDownloadResponseMcpDownloadResponse details.

Return type

McpDownloadResponse

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

NameTypeDescriptionNotes
idUUIDUnique identifier for the McpDownloadResponse.
mcpDownloadResponseMcpDownloadResponseUpdated McpDownloadResponse details.

Return type

McpDownloadResponse

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.0-SNAPSHOT
API ARTIFACTcom.valkyrlabs.valkyrai-api.jar
GENERATOR VERSIONorg.openapitools.openapi-generator:7.5.0
GENERATOR CLASSorg.openapitools.codegen.languages.SpringCodegen
GENERATED DATE2025-08-11T09:38:12.618574-07:00[America/Los_Angeles]