All URIs are relative to https://api.wordlift.io
| Method | HTTP request | Description |
|---|---|---|
| update_diagnostic_plugin_collection | PUT /accounts/me/plugin/diagnostics/plugins-collection | Update |
update_diagnostic_plugin_collection(account, diagnostic_plugin_request)
Update
Replace the list of the plugins for the current account with the one provided by the client
- Api Key Authentication (ApiKey):
import wordlift_client
from wordlift_client.models.account import Account
from wordlift_client.models.diagnostic_plugin_request import DiagnosticPluginRequest
from wordlift_client.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to https://api.wordlift.io
# See configuration.py for a list of all supported configuration parameters.
configuration = wordlift_client.Configuration(
host = "https://api.wordlift.io"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure API key authorization: ApiKey
configuration.api_key['ApiKey'] = os.environ["API_KEY"]
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['ApiKey'] = 'Bearer'
# Enter a context with an instance of the API client
async with wordlift_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = wordlift_client.PluginDiagnosticsApi(api_client)
account = wordlift_client.Account() # Account |
diagnostic_plugin_request = [wordlift_client.DiagnosticPluginRequest()] # List[DiagnosticPluginRequest] |
try:
# Update
await api_instance.update_diagnostic_plugin_collection(account, diagnostic_plugin_request)
except Exception as e:
print("Exception when calling PluginDiagnosticsApi->update_diagnostic_plugin_collection: %s\n" % e)| Name | Type | Description | Notes |
|---|---|---|---|
| account | Account | ||
| diagnostic_plugin_request | List[DiagnosticPluginRequest] |
void (empty response body)
- Content-Type: application/json
- Accept: Not defined
| Status code | Description | Response headers |
|---|---|---|
| 200 | Found. | - |
| 204 | No Content | - |
| 401 | Authentication Failure | - |
| 404 | Not Found | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]