WebAPI.Host (3.0)
Download OpenAPI description
Languages
Servers
Mock server
https://{{your_venus_webapi_ip_address}}/
Body
- application/json; x-api-version=3.0
- text/json; x-api-version=3.0
- application/*+json; x-api-version=3.0
Possible values:
- 0 - SystemDefault
- 1 - Recovery
- 2 - SubdirectoryOfSystemDefault
- 3 - UserDefined
Enum0123
- Mock server
https://{{your_venus_webapi_ip_address}}/api/vector/v3/files/import-method-package
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://{{your_venus_webapi_ip_address}}/api/vector/v3/files/import-method-package?archivePath=string' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json; x-api-version=3.0' \
-d '{
"includeOriginalFiles": true,
"importMode": 0,
"directoryOption": [
{
"directoryKey": 0,
"pathValue": "string"
}
]
}'Response
{ "result": true, "message": "string", "resetRunExec": true }
- Mock server
https://{{your_venus_webapi_ip_address}}/api/vector/v3/files/verify-manifest
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://{{your_venus_webapi_ip_address}}/api/vector/v3/files/verify-manifest?source=string&dest=string&manifestPath=string' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
{ "result": true, "message": "string", "resetRunExec": true }
Body
- application/json; x-api-version=3.0
- text/json; x-api-version=3.0
- application/*+json; x-api-version=3.0
- Mock server
https://{{your_venus_webapi_ip_address}}/api/vector/v3/files/export-diagnostic-files
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://{{your_venus_webapi_ip_address}}/api/vector/v3/files/export-diagnostic-files' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json; x-api-version=3.0' \
-d '{
"methodPath": "string",
"runGuid": "string",
"filePath": "string",
"exportMethod": true,
"exportCommTrace": true,
"exportVenusLogs": true
}'Response
{ "result": true, "message": "string", "resetRunExec": true }