Interface IBulkActionsControllerApiSync
Represents a collection of functions to interact with the API endpoints
Inherited Members
Namespace: mailslurp.Api
Assembly: mailslurp.dll
Syntax
public interface IBulkActionsControllerApiSync : IApiAccessor
Methods
View SourceBulkCreateInboxes(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 |
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 |
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 |
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 |
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 |
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 |