WebAPI.Host (3.0)
Download OpenAPI description
Languages
Servers
Mock server
https://{{your_venus_webapi_ip_address}}/
- Mock server
https://{{your_venus_webapi_ip_address}}/api/vector/v3/files/artifacts/{artifactName}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://{{your_venus_webapi_ip_address}}/api/vector/v3/files/artifacts/{artifactName}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
"string"
- Mock server
https://{{your_venus_webapi_ip_address}}/api/vector/v3/files/streamingassets/{streamingAssetName}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://{{your_venus_webapi_ip_address}}/api/vector/v3/files/streamingassets/{streamingAssetName}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
"string"
Body
- application/json; x-api-version=3.0
- text/json; x-api-version=3.0
- application/*+json; x-api-version=3.0
Venus log file cleanup options.
- Mock server
https://{{your_venus_webapi_ip_address}}/api/vector/v3/files/cleanup
- 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/cleanup' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json; x-api-version=3.0' \
-d '{
"removePermanently": true,
"cleanupCutoffUtc": "2019-08-24T14:15:22Z",
"archiveFilePath": "string"
}'Response
{ "result": true, "message": "string", "resetRunExec": true }