Query Application Information - QueryMVApp
Overview
Query user-created application information
Definition
Public Parameters
| Parameter Name | Type | Description Information | Required |
|---|---|---|---|
| Action | string | Corresponding API command name, the current API is QueryMVApp. | Yes |
| PublicKey | string | The user’s public key can be obtained from Console  | Yes |
| Signature | string | User signature generated based on public key and API command, see Signature Algorithm | Yes |
Request Parameters
| Parameter Name | Type | Description Information | Required |
|---|---|---|---|
| APPID | string | Application ID (Returns all application lists by default) | No |
Response Field
| Field Name | Type | Description Information | Required |
|---|---|---|---|
| RetCode | int | Return status code. If it is 0, it means successful return. If it is not 0, it means failure. | Yes |
| Action | string | Operation command name. | Yes |
| Message | string | Returns an error message, providing detailed description when RetCode is non-zero. | No |
| Msg | string | When the Code is non-zero, it describes the error information. | Yes |
| AppInfo | array[AppInfo] | Application Information List | Yes |
Data Model
AppInfo
| Field Name | Type | Description Information | Required |
|---|---|---|---|
| AppName | string | Application Name | No |
| AppID | string | Application ID | No |
| AppType | int | Application Type | No |
| AppDes | string | Application Description | No |
| AppState | int | Application Status | No |
| LLMID | string | Language Model ID | No |
| LLMTemperature | int | Model Sampling Temperature | No |
| LLMTopP | int | Another method of model sampling temperature (nucleus sampling) | No |
| CreateTime | int | Application Creation Time | No |
| UpdateTime | int | Application Update Time | No |
Example
Request Example
https://api.sigcalcloud.com/?Action=QueryMVApp
&APPID=OGAYdYPuResponse Example
{
"Action": "QueryMVAppResponse",
"AppInfo": [
{
"AppDes": "XwyCASli",
"AppID": "cBEhCtzE",
"AppName": "tBbnlYmg",
"AppState": 7,
"AppType": 7,
"CreateTime": 8,
"LLMID": "eqdVXNFp",
"LLMTemperature": null,
"LLMTopP": null,
"UpdateTime": 2
}
],
"Msg": "uiZdxpWO",
"RetCode": 0
}