All URIs are relative to http://localhost/service/rest
| Method | HTTP request | Description |
|---|---|---|
| get_repositories1 | GET /v1/repositories | List repositories |
list[RepositoryXO] get_repositories1()
List repositories
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.RepositoriesApi(api_client)
try:
# List repositories
api_response = api_instance.get_repositories1()
pprint(api_response)
except ApiException as e:
print("Exception when calling RepositoriesApi->get_repositories1: %s\n" % e)This endpoint does not need any parameter.
No authorization required
- Content-Type: Not defined
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | successful operation | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]