All URIs are relative to https://api.wordlift.io
Method | HTTP request | Description |
---|---|---|
get | GET /webasyncs/{id} | Get by id |
list | GET /webasyncs | List |
WebAsync get(id)
Get by id
Get a Web Async operation by its id.
- Api Key Authentication (ApiKey):
import wordlift_client
from wordlift_client.models.web_async import WebAsync
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.WebAsyncsMetadataApi(api_client)
id = 'id_example' # str | The Web Async id
try:
# Get by id
api_response = await api_instance.get(id)
print("The response of WebAsyncsMetadataApi->get:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling WebAsyncsMetadataApi->get: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
id | str | The Web Async id |
- Content-Type: Not defined
- Accept: /
Status code | Description | Response headers |
---|---|---|
200 | Found. | - |
401 | Authentication Failure | - |
404 | Not Found | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
List[WebAsync] list()
List
List all Web Async operations.
- Api Key Authentication (ApiKey):
import wordlift_client
from wordlift_client.models.web_async import WebAsync
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.WebAsyncsMetadataApi(api_client)
try:
# List
api_response = await api_instance.list()
print("The response of WebAsyncsMetadataApi->list:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling WebAsyncsMetadataApi->list: %s\n" % e)
This endpoint does not need any parameter.
- Content-Type: Not defined
- Accept: /
Status code | Description | Response headers |
---|---|---|
200 | Found. | - |
401 | Authentication Failure | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]