{"id":24754166,"url":"https://github.com/jackmahoney/emaile2e-java-client","last_synced_at":"2026-04-26T16:31:27.550Z","repository":{"id":77779080,"uuid":"113986707","full_name":"jackmahoney/emaile2e-java-client","owner":"jackmahoney","description":"The official Java client for the emaile2e API","archived":false,"fork":false,"pushed_at":"2017-12-12T12:22:35.000Z","size":90,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-04-09T00:02:06.883Z","etag":null,"topics":["e2e-tests","email","java","testing"],"latest_commit_sha":null,"homepage":"http://emaile2e.com","language":"Java","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/jackmahoney.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":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-12-12T12:18:54.000Z","updated_at":"2017-12-12T12:23:29.000Z","dependencies_parsed_at":"2023-04-16T10:16:32.047Z","dependency_job_id":null,"html_url":"https://github.com/jackmahoney/emaile2e-java-client","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jackmahoney/emaile2e-java-client","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jackmahoney%2Femaile2e-java-client","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jackmahoney%2Femaile2e-java-client/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jackmahoney%2Femaile2e-java-client/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jackmahoney%2Femaile2e-java-client/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jackmahoney","download_url":"https://codeload.github.com/jackmahoney/emaile2e-java-client/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jackmahoney%2Femaile2e-java-client/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32305032,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T09:34:17.070Z","status":"ssl_error","status_checked_at":"2026-04-26T09:34:00.993Z","response_time":129,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["e2e-tests","email","java","testing"],"created_at":"2025-01-28T11:39:12.216Z","updated_at":"2026-04-26T16:31:27.528Z","avatar_url":"https://github.com/jackmahoney.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# javaclient\n\n## Requirements\n\nBuilding the API client library requires [Maven](https://maven.apache.org/) to be installed.\n\n## Installation\n\nTo install the API client library to your local Maven repository, simply execute:\n\n```shell\nmvn install\n```\n\nTo deploy it to a remote Maven repository instead, configure the settings of the repository and execute:\n\n```shell\nmvn deploy\n```\n\nRefer to the [official documentation](https://maven.apache.org/plugins/maven-deploy-plugin/usage.html) for more information.\n\n### Maven users\n\nAdd this dependency to your project's POM:\n\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003ecom.api.emaile2e\u003c/groupId\u003e\n    \u003cartifactId\u003ejavaclient\u003c/artifactId\u003e\n    \u003cversion\u003e1.0.0-SNAPSHOT\u003c/version\u003e\n    \u003cscope\u003ecompile\u003c/scope\u003e\n\u003c/dependency\u003e\n```\n\n### Gradle users\n\nAdd this dependency to your project's build file:\n\n```groovy\ncompile \"com.api.emaile2e:javaclient:1.0.0-SNAPSHOT\"\n```\n\n### Others\n\nAt first generate the JAR by executing:\n\n    mvn package\n\nThen manually install the following JARs:\n\n* target/javaclient-1.0.0-SNAPSHOT.jar\n* target/lib/*.jar\n\n## Getting Started\n\nPlease follow the [installation](#installation) instruction and execute the following Java code:\n\n```java\n\nimport io.swagger.client.*;\nimport io.swagger.client.auth.*;\nimport io.swagger.client.model.*;\nimport io.swagger.client.api.InboxControllerApi;\n\nimport java.io.File;\nimport java.util.*;\n\npublic class InboxControllerApiExample {\n\n    public static void main(String[] args) {\n        \n        InboxControllerApi apiInstance = new InboxControllerApi();\n        String apiKey = \"apiKey_example\"; // String | Your API Key. Sign up and find it in your dashboard.\n        try {\n            ResponseInboxDto result = apiInstance.createUsingPOST(apiKey);\n            System.out.println(result);\n        } catch (ApiException e) {\n            System.err.println(\"Exception when calling InboxControllerApi#createUsingPOST\");\n            e.printStackTrace();\n        }\n    }\n}\n\n```\n\n## Documentation for API Endpoints\n\nAll URIs are relative to *https://api.emaile2e.com*\n\nClass | Method | HTTP request | Description\n------------ | ------------- | ------------- | -------------\n*InboxControllerApi* | [**createUsingPOST**](docs/InboxControllerApi.md#createUsingPOST) | **POST** /inboxes | Create an inbox\n*InboxControllerApi* | [**indexUsingGET**](docs/InboxControllerApi.md#indexUsingGET) | **GET** /inboxes | List your inboxes\n*InboxControllerApi* | [**viewUsingGET**](docs/InboxControllerApi.md#viewUsingGET) | **GET** /inboxes/{uuid} | Fetch emails for a given inbox\n\n\n## Documentation for Models\n\n - [EmailDto](docs/EmailDto.md)\n - [InboxDto](docs/InboxDto.md)\n - [ResponseInboxDto](docs/ResponseInboxDto.md)\n - [ResponseListEmailDto](docs/ResponseListEmailDto.md)\n - [ResponseListInboxDto](docs/ResponseListInboxDto.md)\n\n\n## Documentation for Authorization\n\nAll endpoints do not require authorization.\nAuthentication schemes defined for the API:\n\n## Recommendation\n\nIt's recommended to create an instance of `ApiClient` per thread in a multithreaded environment to avoid any potential issues.\n\n## Author\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjackmahoney%2Femaile2e-java-client","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjackmahoney%2Femaile2e-java-client","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjackmahoney%2Femaile2e-java-client/lists"}