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 |
|---|---|
| List<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<List<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 |
|---|---|---|
| List<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 |
|---|---|---|
| List<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 |