Interface IEmailVerificationControllerApiSync
Represents a collection of functions to interact with the API endpoints
Inherited Members
Namespace: mailslurp.Api
Assembly: mailslurp.dll
Syntax
public interface IEmailVerificationControllerApiSync : IApiAccessor
Methods
View SourceDeleteAllValidationRequests(int)
Delete all validation requests
Declaration
void DeleteAllValidationRequests(int operationIndex = 0)
Parameters
Type | Name | Description |
---|---|---|
int | operationIndex | Index associated with the operation. |
Remarks
Remove validation requests
Exceptions
Type | Condition |
---|---|
Api |
Thrown when fails to make API call |
DeleteAllValidationRequestsWithHttpInfo(int)
Delete all validation requests
Declaration
ApiResponse<object> DeleteAllValidationRequestsWithHttpInfo(int operationIndex = 0)
Parameters
Type | Name | Description |
---|---|---|
int | operationIndex | Index associated with the operation. |
Returns
Type | Description |
---|---|
Api |
ApiResponse of Object(void) |
Remarks
Remove validation requests
Exceptions
Type | Condition |
---|---|
Api |
Thrown when fails to make API call |
DeleteValidationRequest(Guid, int)
Delete a validation record
Declaration
void DeleteValidationRequest(Guid id, int operationIndex = 0)
Parameters
Remarks
Delete a validation record
Exceptions
Type | Condition |
---|---|
Api |
Thrown when fails to make API call |
DeleteValidationRequestWithHttpInfo(Guid, int)
Delete a validation record
Declaration
ApiResponse<object> DeleteValidationRequestWithHttpInfo(Guid id, int operationIndex = 0)
Parameters
Returns
Type | Description |
---|---|
Api |
ApiResponse of Object(void) |
Remarks
Delete a validation record
Exceptions
Type | Condition |
---|---|
Api |
Thrown when fails to make API call |
GetValidationRequests(int?, int?, string, string, DateTime?, DateTime?, bool?, int)
Validate a list of email addresses. Per unit billing. See your plan for pricing.
Declaration
PageEmailValidationRequest GetValidationRequests(int? page = null, int? size = null, string sort = null, string searchFilter = null, DateTime? since = null, DateTime? before = null, bool? isValid = null, int operationIndex = 0)
Parameters
Type | Name | Description |
---|---|---|
int? | page | Optional page index in list pagination (optional, default to 0) |
int? | size | Optional page size for paginated result list. (optional, default to 20) |
string | sort | Optional createdAt sort direction ASC or DESC (optional, default to DESC) |
string | searchFilter | Optional search filter (optional) |
Date |
since | Filter by created at after the given timestamp (optional) |
Date |
before | Filter by created at before the given timestamp (optional) |
bool? | isValid | Filter where email is valid is true or false (optional) |
int | operationIndex | Index associated with the operation. |
Returns
Type | Description |
---|---|
Page |
PageEmailValidationRequest |
Remarks
List email verification requests
Exceptions
Type | Condition |
---|---|
Api |
Thrown when fails to make API call |
GetValidationRequestsWithHttpInfo(int?, int?, string, string, DateTime?, DateTime?, bool?, int)
Validate a list of email addresses. Per unit billing. See your plan for pricing.
Declaration
ApiResponse<PageEmailValidationRequest> GetValidationRequestsWithHttpInfo(int? page = null, int? size = null, string sort = null, string searchFilter = null, DateTime? since = null, DateTime? before = null, bool? isValid = null, int operationIndex = 0)
Parameters
Type | Name | Description |
---|---|---|
int? | page | Optional page index in list pagination (optional, default to 0) |
int? | size | Optional page size for paginated result list. (optional, default to 20) |
string | sort | Optional createdAt sort direction ASC or DESC (optional, default to DESC) |
string | searchFilter | Optional search filter (optional) |
Date |
since | Filter by created at after the given timestamp (optional) |
Date |
before | Filter by created at before the given timestamp (optional) |
bool? | isValid | Filter where email is valid is true or false (optional) |
int | operationIndex | Index associated with the operation. |
Returns
Type | Description |
---|---|
Api |
ApiResponse of PageEmailValidationRequest |
Remarks
List email verification requests
Exceptions
Type | Condition |
---|---|
Api |
Thrown when fails to make API call |
ValidateEmailAddressList(ValidateEmailAddressListOptions, int)
Validate a list of email addresses. Per unit billing. See your plan for pricing.
Declaration
ValidateEmailAddressListResult ValidateEmailAddressList(ValidateEmailAddressListOptions validateEmailAddressListOptions, int operationIndex = 0)
Parameters
Type | Name | Description |
---|---|---|
Validate |
validateEmailAddressListOptions | |
int | operationIndex | Index associated with the operation. |
Returns
Type | Description |
---|---|
Validate |
ValidateEmailAddressListResult |
Remarks
Verify a list of email addresses is valid and can be contacted.
Exceptions
Type | Condition |
---|---|
Api |
Thrown when fails to make API call |
ValidateEmailAddressListWithHttpInfo(ValidateEmailAddressListOptions, int)
Validate a list of email addresses. Per unit billing. See your plan for pricing.
Declaration
ApiResponse<ValidateEmailAddressListResult> ValidateEmailAddressListWithHttpInfo(ValidateEmailAddressListOptions validateEmailAddressListOptions, int operationIndex = 0)
Parameters
Type | Name | Description |
---|---|---|
Validate |
validateEmailAddressListOptions | |
int | operationIndex | Index associated with the operation. |
Returns
Type | Description |
---|---|
Api |
ApiResponse of ValidateEmailAddressListResult |
Remarks
Verify a list of email addresses is valid and can be contacted.
Exceptions
Type | Condition |
---|---|
Api |
Thrown when fails to make API call |