{"id":26395661,"url":"https://github.com/elasticemail/elasticemail-python","last_synced_at":"2025-03-17T11:18:55.871Z","repository":{"id":84264473,"uuid":"366327599","full_name":"ElasticEmail/elasticemail-python","owner":"ElasticEmail","description":"ElasticEmail - the Python library for the Elastic Email REST API","archived":false,"fork":false,"pushed_at":"2024-04-12T10:18:16.000Z","size":1372,"stargazers_count":9,"open_issues_count":2,"forks_count":3,"subscribers_count":0,"default_branch":"master","last_synced_at":"2024-04-14T07:27:31.003Z","etag":null,"topics":["api","email","emails","emailservice","json-api","massmailing","openapi","openapi3","python","smtp","transactional-emails"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ElasticEmail.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"docs/SecurityApi.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-05-11T09:30:41.000Z","updated_at":"2024-04-14T07:27:31.004Z","dependencies_parsed_at":"2024-12-05T14:28:56.447Z","dependency_job_id":"c4d28f63-7182-42cb-8df4-c9e791bb6154","html_url":"https://github.com/ElasticEmail/elasticemail-python","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ElasticEmail%2Felasticemail-python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ElasticEmail%2Felasticemail-python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ElasticEmail%2Felasticemail-python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ElasticEmail%2Felasticemail-python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ElasticEmail","download_url":"https://codeload.github.com/ElasticEmail/elasticemail-python/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244022684,"owners_count":20385134,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","email","emails","emailservice","json-api","massmailing","openapi","openapi3","python","smtp","transactional-emails"],"created_at":"2025-03-17T11:18:55.354Z","updated_at":"2025-03-17T11:18:55.845Z","avatar_url":"https://github.com/ElasticEmail.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ElasticEmail\nThis API is based on the REST API architecture, allowing the user to easily manage their data with this resource-based approach.\r\n\r\nEvery API call is established on which specific request type (GET, POST, PUT, DELETE) will be used.\r\n\r\nThe API has a limit of 20 concurrent connections and a hard timeout of 600 seconds per request.\r\n\r\nTo start using this API, you will need your Access Token (available [here](https://app.elasticemail.com/marketing/settings/new/manage-api)). Remember to keep it safe. Required access levels are listed in the given request’s description.\r\n\r\nDownloadable library clients can be found in our Github repository [here](https://github.com/ElasticEmail/elasticemail-python)\n\nThis Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:\n\n- API version: 4.0.0\n- Package version: 4.1.3\n- Generator version: 7.5.0\n- Build package: org.openapitools.codegen.languages.PythonClientCodegen\n\n## Requirements.\n\nPython 3.7+\n\n## Installation \u0026 Usage\n### pip install\n\nIf the python package is hosted on a repository, you can install directly using:\n\n```sh\npip install git+https://github.com/elasticemail/elasticemail-python.git\n```\n(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/elasticemail/elasticemail-python.git`)\n\nThen import the package:\n```python\nimport ElasticEmail\n```\n\n### Setuptools\n\nInstall via [Setuptools](http://pypi.python.org/pypi/setuptools).\n\n```sh\npython setup.py install --user\n```\n(or `sudo python setup.py install` to install the package for all users)\n\nThen import the package:\n```python\nimport ElasticEmail\n```\n\n### Tests\n\nExecute `pytest` to run the tests.\n\n## Getting Started\n\nPlease follow the [installation procedure](#installation--usage) and then run the following:\n\n```python\n\nimport ElasticEmail\nfrom ElasticEmail.rest import ApiException\nfrom pprint import pprint\n\n# Defining the host is optional and defaults to https://api.elasticemail.com/v4\n# See configuration.py for a list of all supported configuration parameters.\nconfiguration = ElasticEmail.Configuration(\n    host = \"https://api.elasticemail.com/v4\"\n)\n\n# The client must configure the authentication and authorization parameters\n# in accordance with the API server security policy.\n# Examples for each auth method are provided below, use the example that\n# satisfies your auth use case.\n\n# Configure API key authorization: apikey\nconfiguration.api_key['apikey'] = os.environ[\"API_KEY\"]\n\n# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed\n# configuration.api_key_prefix['apikey'] = 'Bearer'\n\n\n# Enter a context with an instance of the API client\nwith ElasticEmail.ApiClient(configuration) as api_client:\n    # Create an instance of the API class\n    api_instance = ElasticEmail.CampaignsApi(api_client)\n    name = 'name_example' # str | Name of Campaign to delete\n\n    try:\n        # Delete Campaign\n        api_instance.campaigns_by_name_delete(name)\n    except ApiException as e:\n        print(\"Exception when calling CampaignsApi-\u003ecampaigns_by_name_delete: %s\\n\" % e)\n\n```\n\n\n## Examples\n\nFunction ||\n------------ | ------------- \n[addCampaign](examples/functions/addCampaign.py) | [readme](examples/functions/addCampaign.md)\n[addContacts](examples/functions/addContacts.py) | [readme](examples/functions/addContacts.md)\n[addList](examples/functions/addList.py) | [readme](examples/functions/addList.md)\n[addTemplate](examples/functions/addTemplate.py) | [readme](examples/functions/addTemplate.md)\n[deleteCampaign](examples/functions/deleteCampaign.py) | [readme](examples/functions/deleteCampaign.md)\n[deleteContacts](examples/functions/deleteContacts.py) | [readme](examples/functions/deleteContacts.md)\n[deleteList](examples/functions/deleteList.py) | [readme](examples/functions/deleteList.md)\n[deleteTemplate](examples/functions/deleteTemplate.py) | [readme](examples/functions/deleteTemplate.md)\n[exportContacts](examples/functions/exportContacts.py) | [readme](examples/functions/exportContacts.md)\n[loadCampaign](examples/functions/loadCampaign.py) | [readme](examples/functions/loadCampaign.md)\n[loadCampaignsStats](examples/functions/loadCampaignsStats.py) | [readme](examples/functions/loadCampaignsStats.md)\n[loadChannelsStats](examples/functions/loadChannelsStats.py) | [readme](examples/functions/loadChannelsStats.md)\n[loadList](examples/functions/loadList.py) | [readme](examples/functions/loadList.md)\n[loadStatistics](examples/functions/loadStatistics.py) | [readme](examples/functions/loadStatistics.md)\n[loadTemplate](examples/functions/loadTemplate.py) | [readme](examples/functions/loadTemplate.md)\n[sendBulkEmails](examples/functions/sendBulkEmails.py) | [readme](examples/functions/sendBulkEmails.md)\n[sendTransactionalEmails](examples/functions/sendTransactionalEmails.py) | [readme](examples/functions/sendTransactionalEmails.md)\n[updateCampaign](examples/functions/updateCampaign.py) | [readme](examples/functions/updateCampaign.md)\n[uploadContacts](examples/functions/uploadContacts.py) | [readme](examples/functions/uploadContacts.md)\n\n## Documentation for API Endpoints\n\nAll URIs are relative to *https://api.elasticemail.com/v4*\n\nClass | Method | HTTP request | Description\n------------ | ------------- | ------------- | -------------\n*CampaignsApi* | [**campaigns_by_name_delete**](docs/CampaignsApi.md#campaigns_by_name_delete) | **DELETE** /campaigns/{name} | Delete Campaign\n*CampaignsApi* | [**campaigns_by_name_get**](docs/CampaignsApi.md#campaigns_by_name_get) | **GET** /campaigns/{name} | Load Campaign\n*CampaignsApi* | [**campaigns_by_name_pause_put**](docs/CampaignsApi.md#campaigns_by_name_pause_put) | **PUT** /campaigns/{name}/pause | Pause Campaign\n*CampaignsApi* | [**campaigns_by_name_put**](docs/CampaignsApi.md#campaigns_by_name_put) | **PUT** /campaigns/{name} | Update Campaign\n*CampaignsApi* | [**campaigns_get**](docs/CampaignsApi.md#campaigns_get) | **GET** /campaigns | Load Campaigns\n*CampaignsApi* | [**campaigns_post**](docs/CampaignsApi.md#campaigns_post) | **POST** /campaigns | Add Campaign\n*ContactsApi* | [**contacts_by_email_delete**](docs/ContactsApi.md#contacts_by_email_delete) | **DELETE** /contacts/{email} | Delete Contact\n*ContactsApi* | [**contacts_by_email_get**](docs/ContactsApi.md#contacts_by_email_get) | **GET** /contacts/{email} | Load Contact\n*ContactsApi* | [**contacts_by_email_put**](docs/ContactsApi.md#contacts_by_email_put) | **PUT** /contacts/{email} | Update Contact\n*ContactsApi* | [**contacts_delete_post**](docs/ContactsApi.md#contacts_delete_post) | **POST** /contacts/delete | Delete Contacts Bulk\n*ContactsApi* | [**contacts_export_by_id_status_get**](docs/ContactsApi.md#contacts_export_by_id_status_get) | **GET** /contacts/export/{id}/status | Check Export Status\n*ContactsApi* | [**contacts_export_post**](docs/ContactsApi.md#contacts_export_post) | **POST** /contacts/export | Export Contacts\n*ContactsApi* | [**contacts_get**](docs/ContactsApi.md#contacts_get) | **GET** /contacts | Load Contacts\n*ContactsApi* | [**contacts_import_post**](docs/ContactsApi.md#contacts_import_post) | **POST** /contacts/import | Upload Contacts\n*ContactsApi* | [**contacts_post**](docs/ContactsApi.md#contacts_post) | **POST** /contacts | Add Contact\n*DomainsApi* | [**domains_by_domain_delete**](docs/DomainsApi.md#domains_by_domain_delete) | **DELETE** /domains/{domain} | Delete Domain\n*DomainsApi* | [**domains_by_domain_get**](docs/DomainsApi.md#domains_by_domain_get) | **GET** /domains/{domain} | Load Domain\n*DomainsApi* | [**domains_by_domain_put**](docs/DomainsApi.md#domains_by_domain_put) | **PUT** /domains/{domain} | Update Domain\n*DomainsApi* | [**domains_by_domain_restricted_get**](docs/DomainsApi.md#domains_by_domain_restricted_get) | **GET** /domains/{domain}/restricted | Check for domain restriction\n*DomainsApi* | [**domains_by_domain_verification_put**](docs/DomainsApi.md#domains_by_domain_verification_put) | **PUT** /domains/{domain}/verification | Verify Domain\n*DomainsApi* | [**domains_by_email_default_patch**](docs/DomainsApi.md#domains_by_email_default_patch) | **PATCH** /domains/{email}/default | Set Default\n*DomainsApi* | [**domains_get**](docs/DomainsApi.md#domains_get) | **GET** /domains | Load Domains\n*DomainsApi* | [**domains_post**](docs/DomainsApi.md#domains_post) | **POST** /domains | Add Domain\n*EmailsApi* | [**emails_by_msgid_view_get**](docs/EmailsApi.md#emails_by_msgid_view_get) | **GET** /emails/{msgid}/view | View Email\n*EmailsApi* | [**emails_by_transactionid_status_get**](docs/EmailsApi.md#emails_by_transactionid_status_get) | **GET** /emails/{transactionid}/status | Get Status\n*EmailsApi* | [**emails_mergefile_post**](docs/EmailsApi.md#emails_mergefile_post) | **POST** /emails/mergefile | Send Bulk Emails CSV\n*EmailsApi* | [**emails_post**](docs/EmailsApi.md#emails_post) | **POST** /emails | Send Bulk Emails\n*EmailsApi* | [**emails_transactional_post**](docs/EmailsApi.md#emails_transactional_post) | **POST** /emails/transactional | Send Transactional Email\n*EventsApi* | [**events_by_transactionid_get**](docs/EventsApi.md#events_by_transactionid_get) | **GET** /events/{transactionid} | Load Email Events\n*EventsApi* | [**events_channels_by_name_export_post**](docs/EventsApi.md#events_channels_by_name_export_post) | **POST** /events/channels/{name}/export | Export Channel Events\n*EventsApi* | [**events_channels_by_name_get**](docs/EventsApi.md#events_channels_by_name_get) | **GET** /events/channels/{name} | Load Channel Events\n*EventsApi* | [**events_channels_export_by_id_status_get**](docs/EventsApi.md#events_channels_export_by_id_status_get) | **GET** /events/channels/export/{id}/status | Check Channel Export Status\n*EventsApi* | [**events_export_by_id_status_get**](docs/EventsApi.md#events_export_by_id_status_get) | **GET** /events/export/{id}/status | Check Export Status\n*EventsApi* | [**events_export_post**](docs/EventsApi.md#events_export_post) | **POST** /events/export | Export Events\n*EventsApi* | [**events_get**](docs/EventsApi.md#events_get) | **GET** /events | Load Events\n*FilesApi* | [**files_by_name_delete**](docs/FilesApi.md#files_by_name_delete) | **DELETE** /files/{name} | Delete File\n*FilesApi* | [**files_by_name_get**](docs/FilesApi.md#files_by_name_get) | **GET** /files/{name} | Download File\n*FilesApi* | [**files_by_name_info_get**](docs/FilesApi.md#files_by_name_info_get) | **GET** /files/{name}/info | Load File Details\n*FilesApi* | [**files_get**](docs/FilesApi.md#files_get) | **GET** /files | List Files\n*FilesApi* | [**files_post**](docs/FilesApi.md#files_post) | **POST** /files | Upload File\n*InboundRouteApi* | [**inboundroute_by_id_delete**](docs/InboundRouteApi.md#inboundroute_by_id_delete) | **DELETE** /inboundroute/{id} | Delete Route\n*InboundRouteApi* | [**inboundroute_by_id_get**](docs/InboundRouteApi.md#inboundroute_by_id_get) | **GET** /inboundroute/{id} | Get Route\n*InboundRouteApi* | [**inboundroute_by_id_put**](docs/InboundRouteApi.md#inboundroute_by_id_put) | **PUT** /inboundroute/{id} | Update Route\n*InboundRouteApi* | [**inboundroute_get**](docs/InboundRouteApi.md#inboundroute_get) | **GET** /inboundroute | Get Routes\n*InboundRouteApi* | [**inboundroute_order_put**](docs/InboundRouteApi.md#inboundroute_order_put) | **PUT** /inboundroute/order | Update Sorting\n*InboundRouteApi* | [**inboundroute_post**](docs/InboundRouteApi.md#inboundroute_post) | **POST** /inboundroute | Create Route\n*ListsApi* | [**lists_by_listname_contacts_get**](docs/ListsApi.md#lists_by_listname_contacts_get) | **GET** /lists/{listname}/contacts | Load Contacts in List\n*ListsApi* | [**lists_by_name_contacts_post**](docs/ListsApi.md#lists_by_name_contacts_post) | **POST** /lists/{name}/contacts | Add Contacts to List\n*ListsApi* | [**lists_by_name_contacts_remove_post**](docs/ListsApi.md#lists_by_name_contacts_remove_post) | **POST** /lists/{name}/contacts/remove | Remove Contacts from List\n*ListsApi* | [**lists_by_name_delete**](docs/ListsApi.md#lists_by_name_delete) | **DELETE** /lists/{name} | Delete List\n*ListsApi* | [**lists_by_name_get**](docs/ListsApi.md#lists_by_name_get) | **GET** /lists/{name} | Load List\n*ListsApi* | [**lists_by_name_put**](docs/ListsApi.md#lists_by_name_put) | **PUT** /lists/{name} | Update List\n*ListsApi* | [**lists_get**](docs/ListsApi.md#lists_get) | **GET** /lists | Load Lists\n*ListsApi* | [**lists_post**](docs/ListsApi.md#lists_post) | **POST** /lists | Add List\n*SecurityApi* | [**security_apikeys_by_name_delete**](docs/SecurityApi.md#security_apikeys_by_name_delete) | **DELETE** /security/apikeys/{name} | Delete ApiKey\n*SecurityApi* | [**security_apikeys_by_name_get**](docs/SecurityApi.md#security_apikeys_by_name_get) | **GET** /security/apikeys/{name} | Load ApiKey\n*SecurityApi* | [**security_apikeys_by_name_put**](docs/SecurityApi.md#security_apikeys_by_name_put) | **PUT** /security/apikeys/{name} | Update ApiKey\n*SecurityApi* | [**security_apikeys_get**](docs/SecurityApi.md#security_apikeys_get) | **GET** /security/apikeys | List ApiKeys\n*SecurityApi* | [**security_apikeys_post**](docs/SecurityApi.md#security_apikeys_post) | **POST** /security/apikeys | Add ApiKey\n*SecurityApi* | [**security_smtp_by_name_delete**](docs/SecurityApi.md#security_smtp_by_name_delete) | **DELETE** /security/smtp/{name} | Delete SMTP Credential\n*SecurityApi* | [**security_smtp_by_name_get**](docs/SecurityApi.md#security_smtp_by_name_get) | **GET** /security/smtp/{name} | Load SMTP Credential\n*SecurityApi* | [**security_smtp_by_name_put**](docs/SecurityApi.md#security_smtp_by_name_put) | **PUT** /security/smtp/{name} | Update SMTP Credential\n*SecurityApi* | [**security_smtp_get**](docs/SecurityApi.md#security_smtp_get) | **GET** /security/smtp | List SMTP Credentials\n*SecurityApi* | [**security_smtp_post**](docs/SecurityApi.md#security_smtp_post) | **POST** /security/smtp | Add SMTP Credential\n*SegmentsApi* | [**segments_by_name_delete**](docs/SegmentsApi.md#segments_by_name_delete) | **DELETE** /segments/{name} | Delete Segment\n*SegmentsApi* | [**segments_by_name_get**](docs/SegmentsApi.md#segments_by_name_get) | **GET** /segments/{name} | Load Segment\n*SegmentsApi* | [**segments_by_name_put**](docs/SegmentsApi.md#segments_by_name_put) | **PUT** /segments/{name} | Update Segment\n*SegmentsApi* | [**segments_get**](docs/SegmentsApi.md#segments_get) | **GET** /segments | Load Segments\n*SegmentsApi* | [**segments_post**](docs/SegmentsApi.md#segments_post) | **POST** /segments | Add Segment\n*StatisticsApi* | [**statistics_campaigns_by_name_get**](docs/StatisticsApi.md#statistics_campaigns_by_name_get) | **GET** /statistics/campaigns/{name} | Load Campaign Stats\n*StatisticsApi* | [**statistics_campaigns_get**](docs/StatisticsApi.md#statistics_campaigns_get) | **GET** /statistics/campaigns | Load Campaigns Stats\n*StatisticsApi* | [**statistics_channels_by_name_get**](docs/StatisticsApi.md#statistics_channels_by_name_get) | **GET** /statistics/channels/{name} | Load Channel Stats\n*StatisticsApi* | [**statistics_channels_get**](docs/StatisticsApi.md#statistics_channels_get) | **GET** /statistics/channels | Load Channels Stats\n*StatisticsApi* | [**statistics_get**](docs/StatisticsApi.md#statistics_get) | **GET** /statistics | Load Statistics\n*SubAccountsApi* | [**subaccounts_by_email_credits_patch**](docs/SubAccountsApi.md#subaccounts_by_email_credits_patch) | **PATCH** /subaccounts/{email}/credits | Add, Subtract Email Credits\n*SubAccountsApi* | [**subaccounts_by_email_delete**](docs/SubAccountsApi.md#subaccounts_by_email_delete) | **DELETE** /subaccounts/{email} | Delete SubAccount\n*SubAccountsApi* | [**subaccounts_by_email_get**](docs/SubAccountsApi.md#subaccounts_by_email_get) | **GET** /subaccounts/{email} | Load SubAccount\n*SubAccountsApi* | [**subaccounts_by_email_settings_email_put**](docs/SubAccountsApi.md#subaccounts_by_email_settings_email_put) | **PUT** /subaccounts/{email}/settings/email | Update SubAccount Email Settings\n*SubAccountsApi* | [**subaccounts_get**](docs/SubAccountsApi.md#subaccounts_get) | **GET** /subaccounts | Load SubAccounts\n*SubAccountsApi* | [**subaccounts_post**](docs/SubAccountsApi.md#subaccounts_post) | **POST** /subaccounts | Add SubAccount\n*SuppressionsApi* | [**suppressions_bounces_get**](docs/SuppressionsApi.md#suppressions_bounces_get) | **GET** /suppressions/bounces | Get Bounce List\n*SuppressionsApi* | [**suppressions_bounces_import_post**](docs/SuppressionsApi.md#suppressions_bounces_import_post) | **POST** /suppressions/bounces/import | Add Bounces Async\n*SuppressionsApi* | [**suppressions_bounces_post**](docs/SuppressionsApi.md#suppressions_bounces_post) | **POST** /suppressions/bounces | Add Bounces\n*SuppressionsApi* | [**suppressions_by_email_delete**](docs/SuppressionsApi.md#suppressions_by_email_delete) | **DELETE** /suppressions/{email} | Delete Suppression\n*SuppressionsApi* | [**suppressions_by_email_get**](docs/SuppressionsApi.md#suppressions_by_email_get) | **GET** /suppressions/{email} | Get Suppression\n*SuppressionsApi* | [**suppressions_complaints_get**](docs/SuppressionsApi.md#suppressions_complaints_get) | **GET** /suppressions/complaints | Get Complaints List\n*SuppressionsApi* | [**suppressions_complaints_import_post**](docs/SuppressionsApi.md#suppressions_complaints_import_post) | **POST** /suppressions/complaints/import | Add Complaints Async\n*SuppressionsApi* | [**suppressions_complaints_post**](docs/SuppressionsApi.md#suppressions_complaints_post) | **POST** /suppressions/complaints | Add Complaints\n*SuppressionsApi* | [**suppressions_get**](docs/SuppressionsApi.md#suppressions_get) | **GET** /suppressions | Get Suppressions\n*SuppressionsApi* | [**suppressions_unsubscribes_get**](docs/SuppressionsApi.md#suppressions_unsubscribes_get) | **GET** /suppressions/unsubscribes | Get Unsubscribes List\n*SuppressionsApi* | [**suppressions_unsubscribes_import_post**](docs/SuppressionsApi.md#suppressions_unsubscribes_import_post) | **POST** /suppressions/unsubscribes/import | Add Unsubscribes Async\n*SuppressionsApi* | [**suppressions_unsubscribes_post**](docs/SuppressionsApi.md#suppressions_unsubscribes_post) | **POST** /suppressions/unsubscribes | Add Unsubscribes\n*TemplatesApi* | [**templates_by_name_delete**](docs/TemplatesApi.md#templates_by_name_delete) | **DELETE** /templates/{name} | Delete Template\n*TemplatesApi* | [**templates_by_name_get**](docs/TemplatesApi.md#templates_by_name_get) | **GET** /templates/{name} | Load Template\n*TemplatesApi* | [**templates_by_name_put**](docs/TemplatesApi.md#templates_by_name_put) | **PUT** /templates/{name} | Update Template\n*TemplatesApi* | [**templates_get**](docs/TemplatesApi.md#templates_get) | **GET** /templates | Load Templates\n*TemplatesApi* | [**templates_post**](docs/TemplatesApi.md#templates_post) | **POST** /templates | Add Template\n*VerificationsApi* | [**verifications_by_email_delete**](docs/VerificationsApi.md#verifications_by_email_delete) | **DELETE** /verifications/{email} | Delete Email Verification Result\n*VerificationsApi* | [**verifications_by_email_get**](docs/VerificationsApi.md#verifications_by_email_get) | **GET** /verifications/{email} | Get Email Verification Result\n*VerificationsApi* | [**verifications_by_email_post**](docs/VerificationsApi.md#verifications_by_email_post) | **POST** /verifications/{email} | Verify Email\n*VerificationsApi* | [**verifications_files_by_id_delete**](docs/VerificationsApi.md#verifications_files_by_id_delete) | **DELETE** /verifications/files/{id} | Delete File Verification Result\n*VerificationsApi* | [**verifications_files_by_id_result_download_get**](docs/VerificationsApi.md#verifications_files_by_id_result_download_get) | **GET** /verifications/files/{id}/result/download | Download File Verification Result\n*VerificationsApi* | [**verifications_files_by_id_result_get**](docs/VerificationsApi.md#verifications_files_by_id_result_get) | **GET** /verifications/files/{id}/result | Get Detailed File Verification Result\n*VerificationsApi* | [**verifications_files_by_id_verification_post**](docs/VerificationsApi.md#verifications_files_by_id_verification_post) | **POST** /verifications/files/{id}/verification | Start verification\n*VerificationsApi* | [**verifications_files_post**](docs/VerificationsApi.md#verifications_files_post) | **POST** /verifications/files | Upload File with Emails\n*VerificationsApi* | [**verifications_files_result_get**](docs/VerificationsApi.md#verifications_files_result_get) | **GET** /verifications/files/result | Get Files Verification Results\n*VerificationsApi* | [**verifications_get**](docs/VerificationsApi.md#verifications_get) | **GET** /verifications | Get Emails Verification Results\n\n\n## Documentation For Models\n\n - [AccessLevel](docs/AccessLevel.md)\n - [AccountStatusEnum](docs/AccountStatusEnum.md)\n - [ApiKey](docs/ApiKey.md)\n - [ApiKeyPayload](docs/ApiKeyPayload.md)\n - [BodyContentType](docs/BodyContentType.md)\n - [BodyPart](docs/BodyPart.md)\n - [Campaign](docs/Campaign.md)\n - [CampaignOptions](docs/CampaignOptions.md)\n - [CampaignRecipient](docs/CampaignRecipient.md)\n - [CampaignStatus](docs/CampaignStatus.md)\n - [CampaignTemplate](docs/CampaignTemplate.md)\n - [CertificateValidationStatus](docs/CertificateValidationStatus.md)\n - [ChannelLogStatusSummary](docs/ChannelLogStatusSummary.md)\n - [CompressionFormat](docs/CompressionFormat.md)\n - [ConsentData](docs/ConsentData.md)\n - [ConsentTracking](docs/ConsentTracking.md)\n - [Contact](docs/Contact.md)\n - [ContactActivity](docs/ContactActivity.md)\n - [ContactPayload](docs/ContactPayload.md)\n - [ContactSource](docs/ContactSource.md)\n - [ContactStatus](docs/ContactStatus.md)\n - [ContactUpdatePayload](docs/ContactUpdatePayload.md)\n - [ContactsList](docs/ContactsList.md)\n - [DeliveryOptimizationType](docs/DeliveryOptimizationType.md)\n - [DomainData](docs/DomainData.md)\n - [DomainDetail](docs/DomainDetail.md)\n - [DomainOwner](docs/DomainOwner.md)\n - [DomainPayload](docs/DomainPayload.md)\n - [DomainUpdatePayload](docs/DomainUpdatePayload.md)\n - [EmailContent](docs/EmailContent.md)\n - [EmailData](docs/EmailData.md)\n - [EmailJobFailedStatus](docs/EmailJobFailedStatus.md)\n - [EmailJobStatus](docs/EmailJobStatus.md)\n - [EmailMessageData](docs/EmailMessageData.md)\n - [EmailPredictedValidationStatus](docs/EmailPredictedValidationStatus.md)\n - [EmailRecipient](docs/EmailRecipient.md)\n - [EmailSend](docs/EmailSend.md)\n - [EmailStatus](docs/EmailStatus.md)\n - [EmailTransactionalMessageData](docs/EmailTransactionalMessageData.md)\n - [EmailValidationResult](docs/EmailValidationResult.md)\n - [EmailValidationStatus](docs/EmailValidationStatus.md)\n - [EmailView](docs/EmailView.md)\n - [EmailsPayload](docs/EmailsPayload.md)\n - [EncodingType](docs/EncodingType.md)\n - [EventType](docs/EventType.md)\n - [EventsOrderBy](docs/EventsOrderBy.md)\n - [ExportFileFormats](docs/ExportFileFormats.md)\n - [ExportLink](docs/ExportLink.md)\n - [ExportStatus](docs/ExportStatus.md)\n - [FileInfo](docs/FileInfo.md)\n - [FilePayload](docs/FilePayload.md)\n - [FileUploadResult](docs/FileUploadResult.md)\n - [InboundPayload](docs/InboundPayload.md)\n - [InboundRoute](docs/InboundRoute.md)\n - [InboundRouteActionType](docs/InboundRouteActionType.md)\n - [InboundRouteFilterType](docs/InboundRouteFilterType.md)\n - [ListPayload](docs/ListPayload.md)\n - [ListUpdatePayload](docs/ListUpdatePayload.md)\n - [LogJobStatus](docs/LogJobStatus.md)\n - [LogStatusSummary](docs/LogStatusSummary.md)\n - [MergeEmailPayload](docs/MergeEmailPayload.md)\n - [MessageAttachment](docs/MessageAttachment.md)\n - [MessageCategory](docs/MessageCategory.md)\n - [MessageCategoryEnum](docs/MessageCategoryEnum.md)\n - [NewApiKey](docs/NewApiKey.md)\n - [NewSmtpCredentials](docs/NewSmtpCredentials.md)\n - [Options](docs/Options.md)\n - [RecipientEvent](docs/RecipientEvent.md)\n - [Segment](docs/Segment.md)\n - [SegmentPayload](docs/SegmentPayload.md)\n - [SmtpCredentials](docs/SmtpCredentials.md)\n - [SmtpCredentialsPayload](docs/SmtpCredentialsPayload.md)\n - [SortOrderItem](docs/SortOrderItem.md)\n - [SplitOptimizationType](docs/SplitOptimizationType.md)\n - [SplitOptions](docs/SplitOptions.md)\n - [SubAccountInfo](docs/SubAccountInfo.md)\n - [SubaccountEmailCreditsPayload](docs/SubaccountEmailCreditsPayload.md)\n - [SubaccountEmailSettings](docs/SubaccountEmailSettings.md)\n - [SubaccountEmailSettingsPayload](docs/SubaccountEmailSettingsPayload.md)\n - [SubaccountPayload](docs/SubaccountPayload.md)\n - [SubaccountSettingsInfo](docs/SubaccountSettingsInfo.md)\n - [SubaccountSettingsInfoPayload](docs/SubaccountSettingsInfoPayload.md)\n - [Suppression](docs/Suppression.md)\n - [Template](docs/Template.md)\n - [TemplatePayload](docs/TemplatePayload.md)\n - [TemplateScope](docs/TemplateScope.md)\n - [TemplateType](docs/TemplateType.md)\n - [TrackingType](docs/TrackingType.md)\n - [TrackingValidationStatus](docs/TrackingValidationStatus.md)\n - [TransactionalRecipient](docs/TransactionalRecipient.md)\n - [Utm](docs/Utm.md)\n - [VerificationFileResult](docs/VerificationFileResult.md)\n - [VerificationFileResultDetails](docs/VerificationFileResultDetails.md)\n - [VerificationStatus](docs/VerificationStatus.md)\n\n\n\u003ca id=\"documentation-for-authorization\"\u003e\u003c/a\u003e\n## Documentation For Authorization\n\n\nAuthentication schemes defined for the API:\n\u003ca id=\"apikey\"\u003e\u003c/a\u003e\n### apikey\n\n- **Type**: API key\n- **API key parameter name**: X-ElasticEmail-ApiKey\n- **Location**: HTTP header\n\n\n## Author\n\nsupport@elasticemail.com\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felasticemail%2Felasticemail-python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Felasticemail%2Felasticemail-python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felasticemail%2Felasticemail-python/lists"}