All URIs are relative to https://api.elasticemail.com/v4
| Method | HTTP request | Description |
|---|---|---|
| templates_by_name_delete | DELETE /templates/{name} | Delete Template |
| templates_by_name_get | GET /templates/{name} | Load Template |
| templates_by_name_put | PUT /templates/{name} | Update Template |
| templates_get | GET /templates | Load Templates |
| templates_post | POST /templates | Add Template |
templates_by_name_delete(name)
Delete Template
Delete template with the specified name. Required Access Level: ModifyTemplates
- Api Key Authentication (apikey):
import ElasticEmail
from ElasticEmail.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to https://api.elasticemail.com/v4
# See configuration.py for a list of all supported configuration parameters.
configuration = ElasticEmail.Configuration(
host = "https://api.elasticemail.com/v4"
)
# 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
with ElasticEmail.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = ElasticEmail.TemplatesApi(api_client)
name = 'Template01' # str | Name of template.
try:
# Delete Template
api_instance.templates_by_name_delete(name)
except Exception as e:
print("Exception when calling TemplatesApi->templates_by_name_delete: %s\n" % e)| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | Name of template. |
void (empty response body)
- Content-Type: Not defined
- Accept: Not defined
| Status code | Description | Response headers |
|---|---|---|
| 200 | OK | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Template templates_by_name_get(name)
Load Template
Load detailed information of the specified template. Required Access Level: ViewTemplates
- Api Key Authentication (apikey):
import ElasticEmail
from ElasticEmail.models.template import Template
from ElasticEmail.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to https://api.elasticemail.com/v4
# See configuration.py for a list of all supported configuration parameters.
configuration = ElasticEmail.Configuration(
host = "https://api.elasticemail.com/v4"
)
# 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
with ElasticEmail.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = ElasticEmail.TemplatesApi(api_client)
name = 'Template01' # str | Name of template.
try:
# Load Template
api_response = api_instance.templates_by_name_get(name)
print("The response of TemplatesApi->templates_by_name_get:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling TemplatesApi->templates_by_name_get: %s\n" % e)| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | Name of template. |
- Content-Type: Not defined
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | Serialized template | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Template templates_by_name_put(name, template_payload)
Update Template
Update existing template, overwriting existing data. Required Access Level: ModifyTemplates
- Api Key Authentication (apikey):
import ElasticEmail
from ElasticEmail.models.template import Template
from ElasticEmail.models.template_payload import TemplatePayload
from ElasticEmail.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to https://api.elasticemail.com/v4
# See configuration.py for a list of all supported configuration parameters.
configuration = ElasticEmail.Configuration(
host = "https://api.elasticemail.com/v4"
)
# 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
with ElasticEmail.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = ElasticEmail.TemplatesApi(api_client)
name = 'Template01' # str | Name of template.
template_payload = ElasticEmail.TemplatePayload() # TemplatePayload |
try:
# Update Template
api_response = api_instance.templates_by_name_put(name, template_payload)
print("The response of TemplatesApi->templates_by_name_put:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling TemplatesApi->templates_by_name_put: %s\n" % e)| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | Name of template. | |
| template_payload | TemplatePayload |
- Content-Type: application/json
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | OK | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
List[Template] templates_get(scope_type, template_types=template_types, limit=limit, offset=offset)
Load Templates
Returns a list of templates for the specified type. Required Access Level: ViewTemplates
- Api Key Authentication (apikey):
import ElasticEmail
from ElasticEmail.models.template import Template
from ElasticEmail.models.template_scope import TemplateScope
from ElasticEmail.models.template_type import TemplateType
from ElasticEmail.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to https://api.elasticemail.com/v4
# See configuration.py for a list of all supported configuration parameters.
configuration = ElasticEmail.Configuration(
host = "https://api.elasticemail.com/v4"
)
# 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
with ElasticEmail.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = ElasticEmail.TemplatesApi(api_client)
scope_type = [ElasticEmail.TemplateScope()] # List[TemplateScope] | Return templates with specified scope only
template_types = [ElasticEmail.TemplateType()] # List[TemplateType] | Return templates with specified type only (optional)
limit = 100 # int | Maximum number of returned items. (optional)
offset = 20 # int | How many items should be returned ahead. (optional)
try:
# Load Templates
api_response = api_instance.templates_get(scope_type, template_types=template_types, limit=limit, offset=offset)
print("The response of TemplatesApi->templates_get:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling TemplatesApi->templates_get: %s\n" % e)| Name | Type | Description | Notes |
|---|---|---|---|
| scope_type | List[TemplateScope] | Return templates with specified scope only | |
| template_types | List[TemplateType] | Return templates with specified type only | [optional] |
| limit | int | Maximum number of returned items. | [optional] |
| offset | int | How many items should be returned ahead. | [optional] |
- Content-Type: Not defined
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | OK | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Template templates_post(template_payload)
Add Template
Add a new Template. Required Access Level: ModifyTemplates
- Api Key Authentication (apikey):
import ElasticEmail
from ElasticEmail.models.template import Template
from ElasticEmail.models.template_payload import TemplatePayload
from ElasticEmail.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to https://api.elasticemail.com/v4
# See configuration.py for a list of all supported configuration parameters.
configuration = ElasticEmail.Configuration(
host = "https://api.elasticemail.com/v4"
)
# 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
with ElasticEmail.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = ElasticEmail.TemplatesApi(api_client)
template_payload = ElasticEmail.TemplatePayload() # TemplatePayload |
try:
# Add Template
api_response = api_instance.templates_post(template_payload)
print("The response of TemplatesApi->templates_post:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling TemplatesApi->templates_post: %s\n" % e)| Name | Type | Description | Notes |
|---|---|---|---|
| template_payload | TemplatePayload |
- Content-Type: application/json
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 201 | Template | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]