mailslurp.api.EmailVerificationControllerApi
Load the API package
All URIs are relative to https://api.mailslurp.com
Method | HTTP request | Description |
---|---|---|
getValidationRequests | GET /email-verification/validation-requests | Validate a list of email addresses. Per unit billing. See your plan for pricing. |
validateEmailAddressList | POST /email-verification/email-address-list | Validate a list of email addresses. Per unit billing. See your plan for pricing. |
PageEmailValidationRequest getValidationRequests(page, size, sort, searchFilter, since, before, isValid)
Validate a list of email addresses. Per unit billing. See your plan for pricing.
Example
import 'package:mailslurp/api.dart';
// TODO Configure API key authorization: API_KEY
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKeyPrefix = 'Bearer';
final api_instance = EmailVerificationControllerApi();
final page = 56; // int | Optional page in list pagination
final size = 56; // int | Optional page size for paginated result list.
final sort = sort_example; // String | Optional createdAt sort direction ASC or DESC
final searchFilter = searchFilter_example; // String | Optional search filter
final since = 2013-10-20T19:20:30+01:00; // DateTime | Filter by created at after the given timestamp
final before = 2013-10-20T19:20:30+01:00; // DateTime | Filter by created at before the given timestamp
final isValid = true; // bool | Filter where email is valid is true or false
try {
final result = api_instance.getValidationRequests(page, size, sort, searchFilter, since, before, isValid);
print(result);
} catch (e) {
print('Exception when calling EmailVerificationControllerApi->getValidationRequests: $en');
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
page | int | Optional page in list pagination | [optional] [default to 0] |
size | int | Optional page size for paginated result list. | [optional] [default to 20] |
sort | String | Optional createdAt sort direction ASC or DESC | [optional] [default to 'DESC'] |
searchFilter | String | Optional search filter | [optional] |
since | DateTime | Filter by created at after the given timestamp | [optional] |
before | DateTime | Filter by created at before the given timestamp | [optional] |
isValid | bool | Filter where email is valid is true or false | [optional] |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]
ValidateEmailAddressListResult validateEmailAddressList(validateEmailAddressListOptions)
Validate a list of email addresses. Per unit billing. See your plan for pricing.
Example
import 'package:mailslurp/api.dart';
// TODO Configure API key authorization: API_KEY
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKeyPrefix = 'Bearer';
final api_instance = EmailVerificationControllerApi();
final validateEmailAddressListOptions = ValidateEmailAddressListOptions(); // ValidateEmailAddressListOptions |
try {
final result = api_instance.validateEmailAddressList(validateEmailAddressListOptions);
print(result);
} catch (e) {
print('Exception when calling EmailVerificationControllerApi->validateEmailAddressList: $en');
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
validateEmailAddressListOptions | ValidateEmailAddressListOptions |
Return type
ValidateEmailAddressListResult
Authorization
HTTP request headers
- Content-Type: application/json
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]