All URIs are relative to https://api.evident.io
| Method | HTTP request | Description |
|---|---|---|
| show | GET /api/v2/subscriptions/{id}.json_api | Show a single Subscription |
Subscription show(id, include=include)
Show a single Subscription
from __future__ import print_statement
import time
import esp_sdk
from esp_sdk.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = esp_sdk.SubscriptionsApi()
id = 56 # int | Subscription ID
include = 'include_example' # str | Related objects that can be included in the response: organization, plan See Including Objects for more information. (optional)
try:
# Show a single Subscription
api_response = api_instance.show(id, include=include)
pprint(api_response)
except ApiException as e:
print("Exception when calling SubscriptionsApi->show: %s\n" % e)| Name | Type | Description | Notes |
|---|---|---|---|
| id | int | Subscription ID | |
| include | str | Related objects that can be included in the response: organization, plan See Including Objects for more information. | [optional] |
See https://github.com/EvidentSecurity/esp-sdk-python#set-your-hmac-security-keys
- Content-Type: application/vnd.api+json
- Accept: application/vnd.api+json
[Back to top] [Back to API list] [Back to Model list] [Back to README]