All URIs are relative to http://localhost
Method | HTTP request | Description |
---|---|---|
get_notification_log_get | GET /notifications/{id} | |
get_notification_log_get_all | GET /notifications | |
post_notification_log_resend | POST /notifications/{id}/resend |
NotificationSchema get_notification_log_get(id)
- Api Key Authentication (auth_token):
import time
import os
import labs_alert_manager_client
from labs_alert_manager_client.models.notification_schema import NotificationSchema
from labs_alert_manager_client.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = labs_alert_manager_client.Configuration(
host = "http://localhost"
)
# 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: auth_token
configuration.api_key['auth_token'] = os.environ["API_KEY"]
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['auth_token'] = 'Bearer'
# Enter a context with an instance of the API client
with labs_alert_manager_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = labs_alert_manager_client.NotificationsApi(api_client)
id = 'id_example' # str |
try:
api_response = api_instance.get_notification_log_get(id)
print("The response of NotificationsApi->get_notification_log_get:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling NotificationsApi->get_notification_log_get: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
id | str |
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | A successful response | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
PaginationSchema get_notification_log_get_all()
- Api Key Authentication (auth_token):
import time
import os
import labs_alert_manager_client
from labs_alert_manager_client.models.pagination_schema import PaginationSchema
from labs_alert_manager_client.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = labs_alert_manager_client.Configuration(
host = "http://localhost"
)
# 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: auth_token
configuration.api_key['auth_token'] = os.environ["API_KEY"]
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['auth_token'] = 'Bearer'
# Enter a context with an instance of the API client
with labs_alert_manager_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = labs_alert_manager_client.NotificationsApi(api_client)
try:
api_response = api_instance.get_notification_log_get_all()
print("The response of NotificationsApi->get_notification_log_get_all:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling NotificationsApi->get_notification_log_get_all: %s\n" % e)
This endpoint does not need any parameter.
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | A successful response | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
NotificationSchema post_notification_log_resend(id)
- Api Key Authentication (auth_token):
import time
import os
import labs_alert_manager_client
from labs_alert_manager_client.models.notification_schema import NotificationSchema
from labs_alert_manager_client.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = labs_alert_manager_client.Configuration(
host = "http://localhost"
)
# 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: auth_token
configuration.api_key['auth_token'] = os.environ["API_KEY"]
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['auth_token'] = 'Bearer'
# Enter a context with an instance of the API client
with labs_alert_manager_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = labs_alert_manager_client.NotificationsApi(api_client)
id = 'id_example' # str |
try:
api_response = api_instance.post_notification_log_resend(id)
print("The response of NotificationsApi->post_notification_log_resend:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling NotificationsApi->post_notification_log_resend: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
id | str |
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | A successful response | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]