Overview

The lukas/disposable-emails v1.0.0 API is organized around multiple Web Services and protocols (REST, SOAP etc.). Allowing you to speed up the implementation by choosing the technology you are most familiar with and the one that best suits your needs.

Testing

You can use the lukas/disposable-emails API in test mode, which does not affect your request limits. The API key you use to authenticate the request determines whether it is live mode or test mode.

We put a lot of time and effor for the API's to be backward compatible but with new features available this may not be possible. If you wish we can notify you when the new version of the API is released.

WSDL
https://assetsapi.com/lukas/disposable-emails/v1.0.0/soap/wsdl
Endpoint
https://assetsapi.com/lukas/disposable-emails/v1.1.0/soap/call

Choose the language you're going to use to implement the API. Examples will be adjusted accordingly.

Programming Language
Select library or framework
Authentication

The lukas/disposable-emails API uses API keys to authenticate requests. You can view and manage your API keys in the API Keys section.

Test mode secret keys have the prefix test_ and live mode secret keys have the prefix live_.

Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret API keys in publicly accessible areas such as GitHub, client-side code, and so forth.

All API requests must be made over HTTPS. Calls made over plain HTTP will fail. API requests without authentication will also fail.

Configuration using Maven

Add the following dependency to your pom.xml file:

    
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web-services</artifactId>
        <exclusions>
            <exclusion>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-tomcat</artifactId>
            </exclusion>
        </exclusions>
    </dependency>
    

The following listing shows the profile you need to add in Maven if you want it to work with Java 11:

    
    <profiles>
        <profile>
            <id>java11</id>
            <activation>
                <jdk>[11,)</jdk>
            </activation>

            <dependencies>
                <dependency>
                    <groupId>org.glassfish.jaxb</groupId>
                    <artifactId>jaxb-runtime</artifactId>
                </dependency>
            </dependencies>
        </profile>
    </profiles>
    

Add this to your 'plugins' section:

    
    <plugin>
        <groupId>org.jvnet.jaxb2.maven2</groupId>
        <artifactId>maven-jaxb2-plugin</artifactId>
        <version>0.14.0</version>
        <executions>
            <execution>
                <goals>
                    <goal>generate</goal>
                </goals>
            </execution>
        </executions>
        <configuration>
            <schemaLanguage>WSDL</schemaLanguage>
            <generatePackage>com.example.consumingwebservice.wsdl</generatePackage>
            <schemas>
                <schema>
                    <url>http://localhost:8080/ws/countries.wsdl</url>
                </schema>
            </schemas>
        </configuration>
    </plugin>
    
API key
TODO error-handling
Codes & Messages
# Message Description
200 OK Everything worked as expected.
400 Bad Request The request was unacceptable, often due to missing a required parameter.
401 Unauthorized No valid API key provided.
402 Request Failed The parameters were valid but the request failed.
403 Forbidden The API key doesn't have permissions to perform the request.
404 Not Found The requested asset doesn't exist.
409 Conflict The request conflicts with another request (perhaps due to using the same idempotent key).
422 Results Limit Reached You have reached or will soon reach your results limit.
429 Too Many Requests Too many requests hit the API too quickly. We recommend an exponential backoff of your requests.
500, 502, 503, 504 Server Errors Something went wrong on the server end. Those are logged and promptly fixed.
TODO request-response-codes
Suppliers

Suppliers offering disposable email service

Attributes
Example
integer id 1
Primary key
string domain temp-mail.io
Disposable email supplier / host
timestamp created_at 2021-09-02 06:08:55
Date and time when the record was created
timestamp updated_at 2022-12-19 14:47:22
Date and time when the record was updated
Action https://assetsapi.com/lukas/disposable-emails/v1.1.0/soap/call#getSuppliers
$assetsAPISoap = new \SoapClient(LUKAS_DISPOSABLE_EMAILS_WSDL, [
'login' => LUKAS_DISPOSABLE_EMAILS_SECRET,
'cache_wsdl' => WSDL_CACHE_NONE,
'soap_version' => SOAP_1_2,
'features' => SOAP_SINGLE_ELEMENT_ARRAYS
]);

$requestObj = (object)[
'options' => (object)[
 ]
];

try {
$responseObj = $assetsAPISoap->getSuppliers($requestObj);
} catch (\SoapFault $fault) {
trigger_error("SOAP Fault: (code: {$fault->faultcode}" .
", msg: {$fault->faultstring})", E_USER_ERROR);
}
Example JSON response structure
{   "success": true, pagination: {...},
    "data": [
        {
            "id": "1",
            "domain": "Fugit aut et aut quaerat velit aut",
            "created_at": "2024-12-26 09:55:04",
            "updated_at": "2024-12-26 09:55:04"
        }, ...
    ]
}
TemporaryEmails

Temporary email domains used by suppliers.

Attributes
Example
integer id 1
Primary key
string domain greencafe24.com
Domain name used for the temporary emails
integer supplier_id 1
ID of the Supplier / host where temporary email domain has last been seen
timestamp created_at 2021-09-02 06:08:55
Date and time when the record was created
timestamp updated_at 2021-09-02 06:08:55
Date and time when the record was updated
Action https://assetsapi.com/lukas/disposable-emails/v1.1.0/soap/call#getTemporaryEmails
$assetsAPISoap = new \SoapClient(LUKAS_DISPOSABLE_EMAILS_WSDL, [
'login' => LUKAS_DISPOSABLE_EMAILS_SECRET,
'cache_wsdl' => WSDL_CACHE_NONE,
'soap_version' => SOAP_1_2,
'features' => SOAP_SINGLE_ELEMENT_ARRAYS
]);

$requestObj = (object)[
'options' => (object)[
 ]
];

try {
$responseObj = $assetsAPISoap->getTemporaryEmails($requestObj);
} catch (\SoapFault $fault) {
trigger_error("SOAP Fault: (code: {$fault->faultcode}" .
", msg: {$fault->faultstring})", E_USER_ERROR);
}
Example JSON response structure
{   "success": true, pagination: {...},
    "data": [
        {
            "id": "1",
            "domain": "Doloremque et quasi quia ad esse",
            "supplier_id": 99,
            "created_at": "2024-12-26 09:55:04",
            "updated_at": "2024-12-26 09:55:04"
        }, ...
    ]
}