{"id":26395644,"url":"https://github.com/elasticemail/elasticemail-go","last_synced_at":"2025-03-17T11:18:53.156Z","repository":{"id":57616080,"uuid":"366327789","full_name":"ElasticEmail/elasticemail-go","owner":"ElasticEmail","description":"ElasticEmail - Go library for the Elastic Email REST API","archived":false,"fork":false,"pushed_at":"2024-12-05T12:37:42.000Z","size":1017,"stargazers_count":2,"open_issues_count":0,"forks_count":4,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-12-05T13:34:19.716Z","etag":null,"topics":["api","go","golang"],"latest_commit_sha":null,"homepage":"","language":null,"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:31:17.000Z","updated_at":"2024-12-05T12:37:45.000Z","dependencies_parsed_at":"2024-06-20T09:19:20.308Z","dependency_job_id":"67a161a0-ffd3-430f-af64-7ae8259e194c","html_url":"https://github.com/ElasticEmail/elasticemail-go","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ElasticEmail%2Felasticemail-go","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ElasticEmail%2Felasticemail-go/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ElasticEmail%2Felasticemail-go/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ElasticEmail%2Felasticemail-go/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ElasticEmail","download_url":"https://codeload.github.com/ElasticEmail/elasticemail-go/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","go","golang"],"created_at":"2025-03-17T11:18:52.439Z","updated_at":"2025-03-17T11:18:53.145Z","avatar_url":"https://github.com/ElasticEmail.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Go API client for ElasticEmail\n\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?tab=repositories\u0026q=%22rest+api%22+in%3Areadme)\n\n## Overview\nThis API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project.  By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client.\n\n- API version: 4.0.0\n- Package version: 4.0.25\n- Generator version: 7.5.0\n- Build package: org.openapitools.codegen.languages.GoClientCodegen\n\n## Installation\n\nInstall the following dependencies:\n\n```sh\ngo get github.com/stretchr/testify/assert\ngo get golang.org/x/net/context\n```\n\nPut the package under your project folder and add the following in import:\n\n```go\nimport ElasticEmail \"github.com/elasticemail/elasticemail-go\"\n```\n\nTo use a proxy, set the environment variable `HTTP_PROXY`:\n\n```go\nos.Setenv(\"HTTP_PROXY\", \"http://proxy_name:proxy_port\")\n```\n\n## Configuration of Server URL\n\nDefault configuration comes with `Servers` field that contains server objects as defined in the OpenAPI specification.\n\n### Select Server Configuration\n\nFor using other server than the one defined on index 0 set context value `ElasticEmail.ContextServerIndex` of type `int`.\n\n```go\nctx := context.WithValue(context.Background(), ElasticEmail.ContextServerIndex, 1)\n```\n\n### Templated Server URL\n\nTemplated server URL is formatted using default variables from configuration or from context value `ElasticEmail.ContextServerVariables` of type `map[string]string`.\n\n```go\nctx := context.WithValue(context.Background(), ElasticEmail.ContextServerVariables, map[string]string{\n\t\"basePath\": \"v2\",\n})\n```\n\nNote, enum values are always validated and all unused variables are silently ignored.\n\n### URLs Configuration per Operation\n\nEach operation can use different server URL defined using `OperationServers` map in the `Configuration`.\nAn operation is uniquely identified by `\"{classname}Service.{nickname}\"` string.\nSimilar rules for overriding default operation server index and variables applies by using `ElasticEmail.ContextOperationServerIndices` and `ElasticEmail.ContextOperationServerVariables` context maps.\n\n```go\nctx := context.WithValue(context.Background(), ElasticEmail.ContextOperationServerIndices, map[string]int{\n\t\"{classname}Service.{nickname}\": 2,\n})\nctx = context.WithValue(context.Background(), ElasticEmail.ContextOperationServerVariables, map[string]map[string]string{\n\t\"{classname}Service.{nickname}\": {\n\t\t\"port\": \"8443\",\n\t},\n})\n```\n\n\n\nAll URIs are relative to *https://api.elasticemail.com/v4*\n\nClass | Method | HTTP request | Description\n------------ | ------------- | ------------- | -------------\n*CampaignsAPI* | [**CampaignsByNameDelete**](docs/CampaignsAPI.md#campaignsbynamedelete) | **Delete** /campaigns/{name} | Delete Campaign\n*CampaignsAPI* | [**CampaignsByNameGet**](docs/CampaignsAPI.md#campaignsbynameget) | **Get** /campaigns/{name} | Load Campaign\n*CampaignsAPI* | [**CampaignsByNamePausePut**](docs/CampaignsAPI.md#campaignsbynamepauseput) | **Put** /campaigns/{name}/pause | Pause Campaign\n*CampaignsAPI* | [**CampaignsByNamePut**](docs/CampaignsAPI.md#campaignsbynameput) | **Put** /campaigns/{name} | Update Campaign\n*CampaignsAPI* | [**CampaignsGet**](docs/CampaignsAPI.md#campaignsget) | **Get** /campaigns | Load Campaigns\n*CampaignsAPI* | [**CampaignsPost**](docs/CampaignsAPI.md#campaignspost) | **Post** /campaigns | Add Campaign\n*ContactsAPI* | [**ContactsByEmailDelete**](docs/ContactsAPI.md#contactsbyemaildelete) | **Delete** /contacts/{email} | Delete Contact\n*ContactsAPI* | [**ContactsByEmailGet**](docs/ContactsAPI.md#contactsbyemailget) | **Get** /contacts/{email} | Load Contact\n*ContactsAPI* | [**ContactsByEmailPut**](docs/ContactsAPI.md#contactsbyemailput) | **Put** /contacts/{email} | Update Contact\n*ContactsAPI* | [**ContactsDeletePost**](docs/ContactsAPI.md#contactsdeletepost) | **Post** /contacts/delete | Delete Contacts Bulk\n*ContactsAPI* | [**ContactsExportByIdStatusGet**](docs/ContactsAPI.md#contactsexportbyidstatusget) | **Get** /contacts/export/{id}/status | Check Export Status\n*ContactsAPI* | [**ContactsExportPost**](docs/ContactsAPI.md#contactsexportpost) | **Post** /contacts/export | Export Contacts\n*ContactsAPI* | [**ContactsGet**](docs/ContactsAPI.md#contactsget) | **Get** /contacts | Load Contacts\n*ContactsAPI* | [**ContactsImportPost**](docs/ContactsAPI.md#contactsimportpost) | **Post** /contacts/import | Upload Contacts\n*ContactsAPI* | [**ContactsPost**](docs/ContactsAPI.md#contactspost) | **Post** /contacts | Add Contact\n*DomainsAPI* | [**DomainsByDomainDelete**](docs/DomainsAPI.md#domainsbydomaindelete) | **Delete** /domains/{domain} | Delete Domain\n*DomainsAPI* | [**DomainsByDomainGet**](docs/DomainsAPI.md#domainsbydomainget) | **Get** /domains/{domain} | Load Domain\n*DomainsAPI* | [**DomainsByDomainPut**](docs/DomainsAPI.md#domainsbydomainput) | **Put** /domains/{domain} | Update Domain\n*DomainsAPI* | [**DomainsByDomainRestrictedGet**](docs/DomainsAPI.md#domainsbydomainrestrictedget) | **Get** /domains/{domain}/restricted | Check for domain restriction\n*DomainsAPI* | [**DomainsByDomainVerificationPut**](docs/DomainsAPI.md#domainsbydomainverificationput) | **Put** /domains/{domain}/verification | Verify Domain\n*DomainsAPI* | [**DomainsByEmailDefaultPatch**](docs/DomainsAPI.md#domainsbyemaildefaultpatch) | **Patch** /domains/{email}/default | Set Default\n*DomainsAPI* | [**DomainsGet**](docs/DomainsAPI.md#domainsget) | **Get** /domains | Load Domains\n*DomainsAPI* | [**DomainsPost**](docs/DomainsAPI.md#domainspost) | **Post** /domains | Add Domain\n*EmailsAPI* | [**EmailsByMsgidViewGet**](docs/EmailsAPI.md#emailsbymsgidviewget) | **Get** /emails/{msgid}/view | View Email\n*EmailsAPI* | [**EmailsByTransactionidStatusGet**](docs/EmailsAPI.md#emailsbytransactionidstatusget) | **Get** /emails/{transactionid}/status | Get Status\n*EmailsAPI* | [**EmailsMergefilePost**](docs/EmailsAPI.md#emailsmergefilepost) | **Post** /emails/mergefile | Send Bulk Emails CSV\n*EmailsAPI* | [**EmailsPost**](docs/EmailsAPI.md#emailspost) | **Post** /emails | Send Bulk Emails\n*EmailsAPI* | [**EmailsTransactionalPost**](docs/EmailsAPI.md#emailstransactionalpost) | **Post** /emails/transactional | Send Transactional Email\n*EventsAPI* | [**EventsByTransactionidGet**](docs/EventsAPI.md#eventsbytransactionidget) | **Get** /events/{transactionid} | Load Email Events\n*EventsAPI* | [**EventsChannelsByNameExportPost**](docs/EventsAPI.md#eventschannelsbynameexportpost) | **Post** /events/channels/{name}/export | Export Channel Events\n*EventsAPI* | [**EventsChannelsByNameGet**](docs/EventsAPI.md#eventschannelsbynameget) | **Get** /events/channels/{name} | Load Channel Events\n*EventsAPI* | [**EventsChannelsExportByIdStatusGet**](docs/EventsAPI.md#eventschannelsexportbyidstatusget) | **Get** /events/channels/export/{id}/status | Check Channel Export Status\n*EventsAPI* | [**EventsExportByIdStatusGet**](docs/EventsAPI.md#eventsexportbyidstatusget) | **Get** /events/export/{id}/status | Check Export Status\n*EventsAPI* | [**EventsExportPost**](docs/EventsAPI.md#eventsexportpost) | **Post** /events/export | Export Events\n*EventsAPI* | [**EventsGet**](docs/EventsAPI.md#eventsget) | **Get** /events | Load Events\n*FilesAPI* | [**FilesByNameDelete**](docs/FilesAPI.md#filesbynamedelete) | **Delete** /files/{name} | Delete File\n*FilesAPI* | [**FilesByNameGet**](docs/FilesAPI.md#filesbynameget) | **Get** /files/{name} | Download File\n*FilesAPI* | [**FilesByNameInfoGet**](docs/FilesAPI.md#filesbynameinfoget) | **Get** /files/{name}/info | Load File Details\n*FilesAPI* | [**FilesGet**](docs/FilesAPI.md#filesget) | **Get** /files | List Files\n*FilesAPI* | [**FilesPost**](docs/FilesAPI.md#filespost) | **Post** /files | Upload File\n*InboundRouteAPI* | [**InboundrouteByIdDelete**](docs/InboundRouteAPI.md#inboundroutebyiddelete) | **Delete** /inboundroute/{id} | Delete Route\n*InboundRouteAPI* | [**InboundrouteByIdGet**](docs/InboundRouteAPI.md#inboundroutebyidget) | **Get** /inboundroute/{id} | Get Route\n*InboundRouteAPI* | [**InboundrouteByIdPut**](docs/InboundRouteAPI.md#inboundroutebyidput) | **Put** /inboundroute/{id} | Update Route\n*InboundRouteAPI* | [**InboundrouteGet**](docs/InboundRouteAPI.md#inboundrouteget) | **Get** /inboundroute | Get Routes\n*InboundRouteAPI* | [**InboundrouteOrderPut**](docs/InboundRouteAPI.md#inboundrouteorderput) | **Put** /inboundroute/order | Update Sorting\n*InboundRouteAPI* | [**InboundroutePost**](docs/InboundRouteAPI.md#inboundroutepost) | **Post** /inboundroute | Create Route\n*ListsAPI* | [**ListsByListnameContactsGet**](docs/ListsAPI.md#listsbylistnamecontactsget) | **Get** /lists/{listname}/contacts | Load Contacts in List\n*ListsAPI* | [**ListsByNameContactsPost**](docs/ListsAPI.md#listsbynamecontactspost) | **Post** /lists/{name}/contacts | Add Contacts to List\n*ListsAPI* | [**ListsByNameContactsRemovePost**](docs/ListsAPI.md#listsbynamecontactsremovepost) | **Post** /lists/{name}/contacts/remove | Remove Contacts from List\n*ListsAPI* | [**ListsByNameDelete**](docs/ListsAPI.md#listsbynamedelete) | **Delete** /lists/{name} | Delete List\n*ListsAPI* | [**ListsByNameGet**](docs/ListsAPI.md#listsbynameget) | **Get** /lists/{name} | Load List\n*ListsAPI* | [**ListsByNamePut**](docs/ListsAPI.md#listsbynameput) | **Put** /lists/{name} | Update List\n*ListsAPI* | [**ListsGet**](docs/ListsAPI.md#listsget) | **Get** /lists | Load Lists\n*ListsAPI* | [**ListsPost**](docs/ListsAPI.md#listspost) | **Post** /lists | Add List\n*SecurityAPI* | [**SecurityApikeysByNameDelete**](docs/SecurityAPI.md#securityapikeysbynamedelete) | **Delete** /security/apikeys/{name} | Delete ApiKey\n*SecurityAPI* | [**SecurityApikeysByNameGet**](docs/SecurityAPI.md#securityapikeysbynameget) | **Get** /security/apikeys/{name} | Load ApiKey\n*SecurityAPI* | [**SecurityApikeysByNamePut**](docs/SecurityAPI.md#securityapikeysbynameput) | **Put** /security/apikeys/{name} | Update ApiKey\n*SecurityAPI* | [**SecurityApikeysGet**](docs/SecurityAPI.md#securityapikeysget) | **Get** /security/apikeys | List ApiKeys\n*SecurityAPI* | [**SecurityApikeysPost**](docs/SecurityAPI.md#securityapikeyspost) | **Post** /security/apikeys | Add ApiKey\n*SecurityAPI* | [**SecuritySmtpByNameDelete**](docs/SecurityAPI.md#securitysmtpbynamedelete) | **Delete** /security/smtp/{name} | Delete SMTP Credential\n*SecurityAPI* | [**SecuritySmtpByNameGet**](docs/SecurityAPI.md#securitysmtpbynameget) | **Get** /security/smtp/{name} | Load SMTP Credential\n*SecurityAPI* | [**SecuritySmtpByNamePut**](docs/SecurityAPI.md#securitysmtpbynameput) | **Put** /security/smtp/{name} | Update SMTP Credential\n*SecurityAPI* | [**SecuritySmtpGet**](docs/SecurityAPI.md#securitysmtpget) | **Get** /security/smtp | List SMTP Credentials\n*SecurityAPI* | [**SecuritySmtpPost**](docs/SecurityAPI.md#securitysmtppost) | **Post** /security/smtp | Add SMTP Credential\n*SegmentsAPI* | [**SegmentsByNameDelete**](docs/SegmentsAPI.md#segmentsbynamedelete) | **Delete** /segments/{name} | Delete Segment\n*SegmentsAPI* | [**SegmentsByNameGet**](docs/SegmentsAPI.md#segmentsbynameget) | **Get** /segments/{name} | Load Segment\n*SegmentsAPI* | [**SegmentsByNamePut**](docs/SegmentsAPI.md#segmentsbynameput) | **Put** /segments/{name} | Update Segment\n*SegmentsAPI* | [**SegmentsGet**](docs/SegmentsAPI.md#segmentsget) | **Get** /segments | Load Segments\n*SegmentsAPI* | [**SegmentsPost**](docs/SegmentsAPI.md#segmentspost) | **Post** /segments | Add Segment\n*StatisticsAPI* | [**StatisticsCampaignsByNameGet**](docs/StatisticsAPI.md#statisticscampaignsbynameget) | **Get** /statistics/campaigns/{name} | Load Campaign Stats\n*StatisticsAPI* | [**StatisticsCampaignsGet**](docs/StatisticsAPI.md#statisticscampaignsget) | **Get** /statistics/campaigns | Load Campaigns Stats\n*StatisticsAPI* | [**StatisticsChannelsByNameGet**](docs/StatisticsAPI.md#statisticschannelsbynameget) | **Get** /statistics/channels/{name} | Load Channel Stats\n*StatisticsAPI* | [**StatisticsChannelsGet**](docs/StatisticsAPI.md#statisticschannelsget) | **Get** /statistics/channels | Load Channels Stats\n*StatisticsAPI* | [**StatisticsGet**](docs/StatisticsAPI.md#statisticsget) | **Get** /statistics | Load Statistics\n*SubAccountsAPI* | [**SubaccountsByEmailCreditsPatch**](docs/SubAccountsAPI.md#subaccountsbyemailcreditspatch) | **Patch** /subaccounts/{email}/credits | Add, Subtract Email Credits\n*SubAccountsAPI* | [**SubaccountsByEmailDelete**](docs/SubAccountsAPI.md#subaccountsbyemaildelete) | **Delete** /subaccounts/{email} | Delete SubAccount\n*SubAccountsAPI* | [**SubaccountsByEmailGet**](docs/SubAccountsAPI.md#subaccountsbyemailget) | **Get** /subaccounts/{email} | Load SubAccount\n*SubAccountsAPI* | [**SubaccountsByEmailSettingsEmailPut**](docs/SubAccountsAPI.md#subaccountsbyemailsettingsemailput) | **Put** /subaccounts/{email}/settings/email | Update SubAccount Email Settings\n*SubAccountsAPI* | [**SubaccountsGet**](docs/SubAccountsAPI.md#subaccountsget) | **Get** /subaccounts | Load SubAccounts\n*SubAccountsAPI* | [**SubaccountsPost**](docs/SubAccountsAPI.md#subaccountspost) | **Post** /subaccounts | Add SubAccount\n*SuppressionsAPI* | [**SuppressionsBouncesGet**](docs/SuppressionsAPI.md#suppressionsbouncesget) | **Get** /suppressions/bounces | Get Bounce List\n*SuppressionsAPI* | [**SuppressionsBouncesImportPost**](docs/SuppressionsAPI.md#suppressionsbouncesimportpost) | **Post** /suppressions/bounces/import | Add Bounces Async\n*SuppressionsAPI* | [**SuppressionsBouncesPost**](docs/SuppressionsAPI.md#suppressionsbouncespost) | **Post** /suppressions/bounces | Add Bounces\n*SuppressionsAPI* | [**SuppressionsByEmailDelete**](docs/SuppressionsAPI.md#suppressionsbyemaildelete) | **Delete** /suppressions/{email} | Delete Suppression\n*SuppressionsAPI* | [**SuppressionsByEmailGet**](docs/SuppressionsAPI.md#suppressionsbyemailget) | **Get** /suppressions/{email} | Get Suppression\n*SuppressionsAPI* | [**SuppressionsComplaintsGet**](docs/SuppressionsAPI.md#suppressionscomplaintsget) | **Get** /suppressions/complaints | Get Complaints List\n*SuppressionsAPI* | [**SuppressionsComplaintsImportPost**](docs/SuppressionsAPI.md#suppressionscomplaintsimportpost) | **Post** /suppressions/complaints/import | Add Complaints Async\n*SuppressionsAPI* | [**SuppressionsComplaintsPost**](docs/SuppressionsAPI.md#suppressionscomplaintspost) | **Post** /suppressions/complaints | Add Complaints\n*SuppressionsAPI* | [**SuppressionsGet**](docs/SuppressionsAPI.md#suppressionsget) | **Get** /suppressions | Get Suppressions\n*SuppressionsAPI* | [**SuppressionsUnsubscribesGet**](docs/SuppressionsAPI.md#suppressionsunsubscribesget) | **Get** /suppressions/unsubscribes | Get Unsubscribes List\n*SuppressionsAPI* | [**SuppressionsUnsubscribesImportPost**](docs/SuppressionsAPI.md#suppressionsunsubscribesimportpost) | **Post** /suppressions/unsubscribes/import | Add Unsubscribes Async\n*SuppressionsAPI* | [**SuppressionsUnsubscribesPost**](docs/SuppressionsAPI.md#suppressionsunsubscribespost) | **Post** /suppressions/unsubscribes | Add Unsubscribes\n*TemplatesAPI* | [**TemplatesByNameDelete**](docs/TemplatesAPI.md#templatesbynamedelete) | **Delete** /templates/{name} | Delete Template\n*TemplatesAPI* | [**TemplatesByNameGet**](docs/TemplatesAPI.md#templatesbynameget) | **Get** /templates/{name} | Load Template\n*TemplatesAPI* | [**TemplatesByNamePut**](docs/TemplatesAPI.md#templatesbynameput) | **Put** /templates/{name} | Update Template\n*TemplatesAPI* | [**TemplatesGet**](docs/TemplatesAPI.md#templatesget) | **Get** /templates | Load Templates\n*TemplatesAPI* | [**TemplatesPost**](docs/TemplatesAPI.md#templatespost) | **Post** /templates | Add Template\n*VerificationsAPI* | [**VerificationsByEmailDelete**](docs/VerificationsAPI.md#verificationsbyemaildelete) | **Delete** /verifications/{email} | Delete Email Verification Result\n*VerificationsAPI* | [**VerificationsByEmailGet**](docs/VerificationsAPI.md#verificationsbyemailget) | **Get** /verifications/{email} | Get Email Verification Result\n*VerificationsAPI* | [**VerificationsByEmailPost**](docs/VerificationsAPI.md#verificationsbyemailpost) | **Post** /verifications/{email} | Verify Email\n*VerificationsAPI* | [**VerificationsFilesByIdDelete**](docs/VerificationsAPI.md#verificationsfilesbyiddelete) | **Delete** /verifications/files/{id} | Delete File Verification Result\n*VerificationsAPI* | [**VerificationsFilesByIdResultDownloadGet**](docs/VerificationsAPI.md#verificationsfilesbyidresultdownloadget) | **Get** /verifications/files/{id}/result/download | Download File Verification Result\n*VerificationsAPI* | [**VerificationsFilesByIdResultGet**](docs/VerificationsAPI.md#verificationsfilesbyidresultget) | **Get** /verifications/files/{id}/result | Get Detailed File Verification Result\n*VerificationsAPI* | [**VerificationsFilesByIdVerificationPost**](docs/VerificationsAPI.md#verificationsfilesbyidverificationpost) | **Post** /verifications/files/{id}/verification | Start verification\n*VerificationsAPI* | [**VerificationsFilesPost**](docs/VerificationsAPI.md#verificationsfilespost) | **Post** /verifications/files | Upload File with Emails\n*VerificationsAPI* | [**VerificationsFilesResultGet**](docs/VerificationsAPI.md#verificationsfilesresultget) | **Get** /verifications/files/result | Get Files Verification Results\n*VerificationsAPI* | [**VerificationsGet**](docs/VerificationsAPI.md#verificationsget) | **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## Documentation For Authorization\n\n\nAuthentication schemes defined for the API:\n### apikey\n\n- **Type**: API key\n- **API key parameter name**: X-ElasticEmail-ApiKey\n- **Location**: HTTP header\n\nNote, each API key must be added to a map of `map[string]APIKey` where the key is: X-ElasticEmail-ApiKey and passed in as the auth context for each request.\n\nExample\n\n```go\nauth := context.WithValue(\n\t\tcontext.Background(),\n\t\tElasticEmail.ContextAPIKeys,\n\t\tmap[string]ElasticEmail.APIKey{\n\t\t\t\"X-ElasticEmail-ApiKey\": {Key: \"API_KEY_STRING\"},\n\t\t},\n\t)\nr, err := client.Service.Operation(auth, args)\n```\n\n\n## Documentation for Utility Methods\n\nDue to the fact that model structure members are all pointers, this package contains\na number of utility functions to easily obtain pointers to values of basic types.\nEach of these functions takes a value of the given basic type and returns a pointer to it:\n\n* `PtrBool`\n* `PtrInt`\n* `PtrInt32`\n* `PtrInt64`\n* `PtrFloat`\n* `PtrFloat32`\n* `PtrFloat64`\n* `PtrString`\n* `PtrTime`\n\n## Author\n\nsupport@elasticemail.com\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felasticemail%2Felasticemail-go","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Felasticemail%2Felasticemail-go","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felasticemail%2Felasticemail-go/lists"}