Search Results for

    Show / Hide Table of Contents

    Interface IBulkActionsControllerApiSync

    Represents a collection of functions to interact with the API endpoints

    Inherited Members
    IApiAccessor.Configuration
    IApiAccessor.GetBasePath()
    IApiAccessor.ExceptionFactory
    Namespace: mailslurp.Api
    Assembly: mailslurp.dll
    Syntax
    public interface IBulkActionsControllerApiSync : IApiAccessor

    Methods

    View Source

    BulkCreateInboxes(int, int)

    Bulk create Inboxes (email addresses)

    Declaration
    List<InboxDto> BulkCreateInboxes(int count, int operationIndex = 0)
    Parameters
    Type Name Description
    int count

    Number of inboxes to be created in bulk

    int operationIndex

    Index associated with the operation.

    Returns
    Type Description
    System.Collections.Generic.List<T><InboxDto>

    List<InboxDto>

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    BulkCreateInboxesWithHttpInfo(int, int)

    Bulk create Inboxes (email addresses)

    Declaration
    ApiResponse<List<InboxDto>> BulkCreateInboxesWithHttpInfo(int count, int operationIndex = 0)
    Parameters
    Type Name Description
    int count

    Number of inboxes to be created in bulk

    int operationIndex

    Index associated with the operation.

    Returns
    Type Description
    ApiResponse<System.Collections.Generic.List<T><InboxDto>>

    ApiResponse of List<InboxDto>

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    BulkDeleteInboxes(List<Guid>, int)

    Bulk Delete Inboxes

    Declaration
    void BulkDeleteInboxes(List<Guid> requestBody, int operationIndex = 0)
    Parameters
    Type Name Description
    System.Collections.Generic.List<T><System.Guid> requestBody
    int operationIndex

    Index associated with the operation.

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    BulkDeleteInboxesWithHttpInfo(List<Guid>, int)

    Bulk Delete Inboxes

    Declaration
    ApiResponse<object> BulkDeleteInboxesWithHttpInfo(List<Guid> requestBody, int operationIndex = 0)
    Parameters
    Type Name Description
    System.Collections.Generic.List<T><System.Guid> requestBody
    int operationIndex

    Index associated with the operation.

    Returns
    Type Description
    ApiResponse<object>

    ApiResponse of Object(void)

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    BulkSendEmails(BulkSendEmailOptions, int)

    Bulk Send Emails

    Declaration
    void BulkSendEmails(BulkSendEmailOptions bulkSendEmailOptions, int operationIndex = 0)
    Parameters
    Type Name Description
    BulkSendEmailOptions bulkSendEmailOptions
    int operationIndex

    Index associated with the operation.

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    View Source

    BulkSendEmailsWithHttpInfo(BulkSendEmailOptions, int)

    Bulk Send Emails

    Declaration
    ApiResponse<object> BulkSendEmailsWithHttpInfo(BulkSendEmailOptions bulkSendEmailOptions, int operationIndex = 0)
    Parameters
    Type Name Description
    BulkSendEmailOptions bulkSendEmailOptions
    int operationIndex

    Index associated with the operation.

    Returns
    Type Description
    ApiResponse<object>

    ApiResponse of Object(void)

    Exceptions
    Type Condition
    ApiException

    Thrown when fails to make API call

    • View Source
    In This Article
    Back to top See MailSlurp website for more information.