All URIs are relative to http://localhost/service/rest
| Method | HTTP request | Description |
|---|---|---|
| supportzip | POST /v1/support/supportzip | Creates and downloads a support zip |
supportzip(body=body)
Creates and downloads a support zip
from __future__ import print_function
import time
import nexus_api_python_client
from nexus_api_python_client.rest import ApiException
from pprint import pprint
# Enter a context with an instance of the API client
with nexus_api_python_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = nexus_api_python_client.SupportApi(api_client)
body = nexus_api_python_client.Request() # Request | (optional)
try:
# Creates and downloads a support zip
api_instance.supportzip(body=body)
except ApiException as e:
print("Exception when calling SupportApi->supportzip: %s\n" % e)| Name | Type | Description | Notes |
|---|---|---|---|
| body | Request | [optional] |
void (empty response body)
No authorization required
- Content-Type: application/json
- Accept: Not defined
| Status code | Description | Response headers |
|---|---|---|
| 0 | successful operation | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]