Class DeliverabilityTestControllerApi
Represents a collection of functions to interact with the API endpoints
Implements
Inherited Members
Namespace: mailslurp.Api
Assembly: mailslurp.dll
Syntax
public class DeliverabilityTestControllerApi : IDeliverabilityTestControllerApi, IDeliverabilityTestControllerApiSync, IDeliverabilityTestControllerApiAsync, IApiAccessor
Constructors
View SourceDeliverabilityTestControllerApi()
Initializes a new instance of the DeliverabilityTestControllerApi class.
Declaration
public DeliverabilityTestControllerApi()
DeliverabilityTestControllerApi(string)
Initializes a new instance of the DeliverabilityTestControllerApi class.
Declaration
public DeliverabilityTestControllerApi(string basePath)
Parameters
| Type | Name | Description |
|---|---|---|
| string | basePath |
DeliverabilityTestControllerApi(Configuration)
Initializes a new instance of the DeliverabilityTestControllerApi class using Configuration object
Declaration
public DeliverabilityTestControllerApi(Configuration configuration)
Parameters
| Type | Name | Description |
|---|---|---|
| Configuration | configuration | An instance of Configuration |
DeliverabilityTestControllerApi(ISynchronousClient, IAsynchronousClient, IReadableConfiguration)
Initializes a new instance of the DeliverabilityTestControllerApi class using a Configuration object and client instance.
Declaration
public DeliverabilityTestControllerApi(ISynchronousClient client, IAsynchronousClient asyncClient, IReadableConfiguration configuration)
Parameters
| Type | Name | Description |
|---|---|---|
| ISynchronousClient | client | The client interface for synchronous API access. |
| IAsynchronousClient | asyncClient | The client interface for asynchronous API access. |
| IReadableConfiguration | configuration | The configuration object. |
Properties
View SourceAsynchronousClient
The client for accessing this underlying API asynchronously.
Declaration
public IAsynchronousClient AsynchronousClient { get; set; }
Property Value
| Type | Description |
|---|---|
| IAsynchronousClient |
Client
The client for accessing this underlying API synchronously.
Declaration
public ISynchronousClient Client { get; set; }
Property Value
| Type | Description |
|---|---|
| ISynchronousClient |
Configuration
Gets or sets the configuration object
Declaration
public IReadableConfiguration Configuration { get; set; }
Property Value
| Type | Description |
|---|---|
| IReadableConfiguration | An instance of the Configuration |
ExceptionFactory
Provides a factory method hook for the creation of exceptions.
Declaration
public ExceptionFactory ExceptionFactory { get; set; }
Property Value
| Type | Description |
|---|---|
| ExceptionFactory |
Methods
View SourceCancelDeliverabilitySimulationJob(Guid, Guid, int)
Cancel deliverability simulation job Cancel a running or paused simulation job.
Declaration
public DeliverabilitySimulationJobDto CancelDeliverabilitySimulationJob(Guid testId, Guid jobId, int operationIndex = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| Guid | jobId | |
| int | operationIndex | Index associated with the operation. |
Returns
| Type | Description |
|---|---|
| DeliverabilitySimulationJobDto | DeliverabilitySimulationJobDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
CancelDeliverabilitySimulationJobAsync(Guid, Guid, int, CancellationToken)
Cancel deliverability simulation job Cancel a running or paused simulation job.
Declaration
public Task<DeliverabilitySimulationJobDto> CancelDeliverabilitySimulationJobAsync(Guid testId, Guid jobId, int operationIndex = 0, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| Guid | jobId | |
| int | operationIndex | Index associated with the operation. |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| Task<DeliverabilitySimulationJobDto> | Task of DeliverabilitySimulationJobDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
CancelDeliverabilitySimulationJobWithHttpInfo(Guid, Guid, int)
Cancel deliverability simulation job Cancel a running or paused simulation job.
Declaration
public ApiResponse<DeliverabilitySimulationJobDto> CancelDeliverabilitySimulationJobWithHttpInfo(Guid testId, Guid jobId, int operationIndex = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| Guid | jobId | |
| int | operationIndex | Index associated with the operation. |
Returns
| Type | Description |
|---|---|
| ApiResponse<DeliverabilitySimulationJobDto> | ApiResponse of DeliverabilitySimulationJobDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
CancelDeliverabilitySimulationJobWithHttpInfoAsync(Guid, Guid, int, CancellationToken)
Cancel deliverability simulation job Cancel a running or paused simulation job.
Declaration
public Task<ApiResponse<DeliverabilitySimulationJobDto>> CancelDeliverabilitySimulationJobWithHttpInfoAsync(Guid testId, Guid jobId, int operationIndex = 0, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| Guid | jobId | |
| int | operationIndex | Index associated with the operation. |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| Task<ApiResponse<DeliverabilitySimulationJobDto>> | Task of ApiResponse (DeliverabilitySimulationJobDto) |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
CreateDeliverabilitySimulationJob(Guid, CreateDeliverabilitySimulationJobOptions, int)
Create deliverability simulation job Create and start a simulation job for a running deliverability test. Only one active simulation job is allowed per user.
Declaration
public DeliverabilitySimulationJobDto CreateDeliverabilitySimulationJob(Guid testId, CreateDeliverabilitySimulationJobOptions createDeliverabilitySimulationJobOptions, int operationIndex = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| CreateDeliverabilitySimulationJobOptions | createDeliverabilitySimulationJobOptions | |
| int | operationIndex | Index associated with the operation. |
Returns
| Type | Description |
|---|---|
| DeliverabilitySimulationJobDto | DeliverabilitySimulationJobDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
CreateDeliverabilitySimulationJobAsync(Guid, CreateDeliverabilitySimulationJobOptions, int, CancellationToken)
Create deliverability simulation job Create and start a simulation job for a running deliverability test. Only one active simulation job is allowed per user.
Declaration
public Task<DeliverabilitySimulationJobDto> CreateDeliverabilitySimulationJobAsync(Guid testId, CreateDeliverabilitySimulationJobOptions createDeliverabilitySimulationJobOptions, int operationIndex = 0, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| CreateDeliverabilitySimulationJobOptions | createDeliverabilitySimulationJobOptions | |
| int | operationIndex | Index associated with the operation. |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| Task<DeliverabilitySimulationJobDto> | Task of DeliverabilitySimulationJobDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
CreateDeliverabilitySimulationJobWithHttpInfo(Guid, CreateDeliverabilitySimulationJobOptions, int)
Create deliverability simulation job Create and start a simulation job for a running deliverability test. Only one active simulation job is allowed per user.
Declaration
public ApiResponse<DeliverabilitySimulationJobDto> CreateDeliverabilitySimulationJobWithHttpInfo(Guid testId, CreateDeliverabilitySimulationJobOptions createDeliverabilitySimulationJobOptions, int operationIndex = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| CreateDeliverabilitySimulationJobOptions | createDeliverabilitySimulationJobOptions | |
| int | operationIndex | Index associated with the operation. |
Returns
| Type | Description |
|---|---|
| ApiResponse<DeliverabilitySimulationJobDto> | ApiResponse of DeliverabilitySimulationJobDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
CreateDeliverabilitySimulationJobWithHttpInfoAsync(Guid, CreateDeliverabilitySimulationJobOptions, int, CancellationToken)
Create deliverability simulation job Create and start a simulation job for a running deliverability test. Only one active simulation job is allowed per user.
Declaration
public Task<ApiResponse<DeliverabilitySimulationJobDto>> CreateDeliverabilitySimulationJobWithHttpInfoAsync(Guid testId, CreateDeliverabilitySimulationJobOptions createDeliverabilitySimulationJobOptions, int operationIndex = 0, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| CreateDeliverabilitySimulationJobOptions | createDeliverabilitySimulationJobOptions | |
| int | operationIndex | Index associated with the operation. |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| Task<ApiResponse<DeliverabilitySimulationJobDto>> | Task of ApiResponse (DeliverabilitySimulationJobDto) |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
CreateDeliverabilityTest(CreateDeliverabilityTestOptions, int)
Create deliverability/load test Create a deliverability test for inboxes or phone numbers using ALL, PATTERN, or EXPLICIT selector scope.
Declaration
public DeliverabilityTestDto CreateDeliverabilityTest(CreateDeliverabilityTestOptions createDeliverabilityTestOptions, int operationIndex = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| CreateDeliverabilityTestOptions | createDeliverabilityTestOptions | |
| int | operationIndex | Index associated with the operation. |
Returns
| Type | Description |
|---|---|
| DeliverabilityTestDto | DeliverabilityTestDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
CreateDeliverabilityTestAsync(CreateDeliverabilityTestOptions, int, CancellationToken)
Create deliverability/load test Create a deliverability test for inboxes or phone numbers using ALL, PATTERN, or EXPLICIT selector scope.
Declaration
public Task<DeliverabilityTestDto> CreateDeliverabilityTestAsync(CreateDeliverabilityTestOptions createDeliverabilityTestOptions, int operationIndex = 0, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| CreateDeliverabilityTestOptions | createDeliverabilityTestOptions | |
| int | operationIndex | Index associated with the operation. |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| Task<DeliverabilityTestDto> | Task of DeliverabilityTestDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
CreateDeliverabilityTestWithHttpInfo(CreateDeliverabilityTestOptions, int)
Create deliverability/load test Create a deliverability test for inboxes or phone numbers using ALL, PATTERN, or EXPLICIT selector scope.
Declaration
public ApiResponse<DeliverabilityTestDto> CreateDeliverabilityTestWithHttpInfo(CreateDeliverabilityTestOptions createDeliverabilityTestOptions, int operationIndex = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| CreateDeliverabilityTestOptions | createDeliverabilityTestOptions | |
| int | operationIndex | Index associated with the operation. |
Returns
| Type | Description |
|---|---|
| ApiResponse<DeliverabilityTestDto> | ApiResponse of DeliverabilityTestDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
CreateDeliverabilityTestWithHttpInfoAsync(CreateDeliverabilityTestOptions, int, CancellationToken)
Create deliverability/load test Create a deliverability test for inboxes or phone numbers using ALL, PATTERN, or EXPLICIT selector scope.
Declaration
public Task<ApiResponse<DeliverabilityTestDto>> CreateDeliverabilityTestWithHttpInfoAsync(CreateDeliverabilityTestOptions createDeliverabilityTestOptions, int operationIndex = 0, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| CreateDeliverabilityTestOptions | createDeliverabilityTestOptions | |
| int | operationIndex | Index associated with the operation. |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| Task<ApiResponse<DeliverabilityTestDto>> | Task of ApiResponse (DeliverabilityTestDto) |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
DeleteDeliverabilityTest(Guid, int)
Delete deliverability/load test Delete test and all persisted entity-level results.
Declaration
public DeleteResult DeleteDeliverabilityTest(Guid testId, int operationIndex = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| int | operationIndex | Index associated with the operation. |
Returns
| Type | Description |
|---|---|
| DeleteResult | DeleteResult |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
DeleteDeliverabilityTestAsync(Guid, int, CancellationToken)
Delete deliverability/load test Delete test and all persisted entity-level results.
Declaration
public Task<DeleteResult> DeleteDeliverabilityTestAsync(Guid testId, int operationIndex = 0, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| int | operationIndex | Index associated with the operation. |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| Task<DeleteResult> | Task of DeleteResult |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
DeleteDeliverabilityTestWithHttpInfo(Guid, int)
Delete deliverability/load test Delete test and all persisted entity-level results.
Declaration
public ApiResponse<DeleteResult> DeleteDeliverabilityTestWithHttpInfo(Guid testId, int operationIndex = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| int | operationIndex | Index associated with the operation. |
Returns
| Type | Description |
|---|---|
| ApiResponse<DeleteResult> | ApiResponse of DeleteResult |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
DeleteDeliverabilityTestWithHttpInfoAsync(Guid, int, CancellationToken)
Delete deliverability/load test Delete test and all persisted entity-level results.
Declaration
public Task<ApiResponse<DeleteResult>> DeleteDeliverabilityTestWithHttpInfoAsync(Guid testId, int operationIndex = 0, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| int | operationIndex | Index associated with the operation. |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| Task<ApiResponse<DeleteResult>> | Task of ApiResponse (DeleteResult) |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
DuplicateDeliverabilityTest(Guid, int)
Duplicate deliverability/load test Create a fresh deliverability test using an existing test configuration, including selector scope, exclusions, and expectations.
Declaration
public DeliverabilityTestDto DuplicateDeliverabilityTest(Guid testId, int operationIndex = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| int | operationIndex | Index associated with the operation. |
Returns
| Type | Description |
|---|---|
| DeliverabilityTestDto | DeliverabilityTestDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
DuplicateDeliverabilityTestAsync(Guid, int, CancellationToken)
Duplicate deliverability/load test Create a fresh deliverability test using an existing test configuration, including selector scope, exclusions, and expectations.
Declaration
public Task<DeliverabilityTestDto> DuplicateDeliverabilityTestAsync(Guid testId, int operationIndex = 0, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| int | operationIndex | Index associated with the operation. |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| Task<DeliverabilityTestDto> | Task of DeliverabilityTestDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
DuplicateDeliverabilityTestWithHttpInfo(Guid, int)
Duplicate deliverability/load test Create a fresh deliverability test using an existing test configuration, including selector scope, exclusions, and expectations.
Declaration
public ApiResponse<DeliverabilityTestDto> DuplicateDeliverabilityTestWithHttpInfo(Guid testId, int operationIndex = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| int | operationIndex | Index associated with the operation. |
Returns
| Type | Description |
|---|---|
| ApiResponse<DeliverabilityTestDto> | ApiResponse of DeliverabilityTestDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
DuplicateDeliverabilityTestWithHttpInfoAsync(Guid, int, CancellationToken)
Duplicate deliverability/load test Create a fresh deliverability test using an existing test configuration, including selector scope, exclusions, and expectations.
Declaration
public Task<ApiResponse<DeliverabilityTestDto>> DuplicateDeliverabilityTestWithHttpInfoAsync(Guid testId, int operationIndex = 0, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| int | operationIndex | Index associated with the operation. |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| Task<ApiResponse<DeliverabilityTestDto>> | Task of ApiResponse (DeliverabilityTestDto) |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
ExportDeliverabilityTestReport(Guid, int)
Export deliverability/load test report as PDF Export a PDF report for a terminal deliverability test (COMPLETE, FAILED, or STOPPED), including configuration, summary outcomes, and detailed entity-level results.
Declaration
public void ExportDeliverabilityTestReport(Guid testId, int operationIndex = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| int | operationIndex | Index associated with the operation. |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
ExportDeliverabilityTestReportAsync(Guid, int, CancellationToken)
Export deliverability/load test report as PDF Export a PDF report for a terminal deliverability test (COMPLETE, FAILED, or STOPPED), including configuration, summary outcomes, and detailed entity-level results.
Declaration
public Task ExportDeliverabilityTestReportAsync(Guid testId, int operationIndex = 0, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| int | operationIndex | Index associated with the operation. |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| Task | Task of void |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
ExportDeliverabilityTestReportWithHttpInfo(Guid, int)
Export deliverability/load test report as PDF Export a PDF report for a terminal deliverability test (COMPLETE, FAILED, or STOPPED), including configuration, summary outcomes, and detailed entity-level results.
Declaration
public ApiResponse<object> ExportDeliverabilityTestReportWithHttpInfo(Guid testId, int operationIndex = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| 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 |
ExportDeliverabilityTestReportWithHttpInfoAsync(Guid, int, CancellationToken)
Export deliverability/load test report as PDF Export a PDF report for a terminal deliverability test (COMPLETE, FAILED, or STOPPED), including configuration, summary outcomes, and detailed entity-level results.
Declaration
public Task<ApiResponse<object>> ExportDeliverabilityTestReportWithHttpInfoAsync(Guid testId, int operationIndex = 0, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| int | operationIndex | Index associated with the operation. |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| Task<ApiResponse<object>> | Task of ApiResponse |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
ExportDeliverabilityTestResults(Guid, bool?, int)
Export deliverability/load test entity results as CSV Export per-entity deliverability results including expectation-level pass/fail counts. The latest status is evaluated with the same polling safeguards before export.
Declaration
public void ExportDeliverabilityTestResults(Guid testId, bool? matched = null, int operationIndex = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| bool? | matched | (optional) |
| int | operationIndex | Index associated with the operation. |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
ExportDeliverabilityTestResultsAsync(Guid, bool?, int, CancellationToken)
Export deliverability/load test entity results as CSV Export per-entity deliverability results including expectation-level pass/fail counts. The latest status is evaluated with the same polling safeguards before export.
Declaration
public Task ExportDeliverabilityTestResultsAsync(Guid testId, bool? matched = null, int operationIndex = 0, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| bool? | matched | (optional) |
| int | operationIndex | Index associated with the operation. |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| Task | Task of void |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
ExportDeliverabilityTestResultsWithHttpInfo(Guid, bool?, int)
Export deliverability/load test entity results as CSV Export per-entity deliverability results including expectation-level pass/fail counts. The latest status is evaluated with the same polling safeguards before export.
Declaration
public ApiResponse<object> ExportDeliverabilityTestResultsWithHttpInfo(Guid testId, bool? matched = null, int operationIndex = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| bool? | matched | (optional) |
| 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 |
ExportDeliverabilityTestResultsWithHttpInfoAsync(Guid, bool?, int, CancellationToken)
Export deliverability/load test entity results as CSV Export per-entity deliverability results including expectation-level pass/fail counts. The latest status is evaluated with the same polling safeguards before export.
Declaration
public Task<ApiResponse<object>> ExportDeliverabilityTestResultsWithHttpInfoAsync(Guid testId, bool? matched = null, int operationIndex = 0, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| bool? | matched | (optional) |
| int | operationIndex | Index associated with the operation. |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| Task<ApiResponse<object>> | Task of ApiResponse |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
GetBasePath()
Gets the base path of the API client.
Declaration
public string GetBasePath()
Returns
| Type | Description |
|---|---|
| string | The base path |
GetDeliverabilityAnalyticsSeries(DateTime?, DateTime?, string, string, int?, int)
Get deliverability analytics time series Compare deliverability runs over a time range with bucketed chart metrics and run-level rows for table views.
Declaration
public DeliverabilityAnalyticsSeriesDto GetDeliverabilityAnalyticsSeries(DateTime? since = null, DateTime? before = null, string scope = null, string bucket = null, int? runLimit = null, int operationIndex = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| DateTime? | since | (optional) |
| DateTime? | before | (optional) |
| string | scope | (optional) |
| string | bucket | (optional, default to DAY) |
| int? | runLimit | (optional) |
| int | operationIndex | Index associated with the operation. |
Returns
| Type | Description |
|---|---|
| DeliverabilityAnalyticsSeriesDto | DeliverabilityAnalyticsSeriesDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
GetDeliverabilityAnalyticsSeriesAsync(DateTime?, DateTime?, string, string, int?, int, CancellationToken)
Get deliverability analytics time series Compare deliverability runs over a time range with bucketed chart metrics and run-level rows for table views.
Declaration
public Task<DeliverabilityAnalyticsSeriesDto> GetDeliverabilityAnalyticsSeriesAsync(DateTime? since = null, DateTime? before = null, string scope = null, string bucket = null, int? runLimit = null, int operationIndex = 0, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| DateTime? | since | (optional) |
| DateTime? | before | (optional) |
| string | scope | (optional) |
| string | bucket | (optional, default to DAY) |
| int? | runLimit | (optional) |
| int | operationIndex | Index associated with the operation. |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| Task<DeliverabilityAnalyticsSeriesDto> | Task of DeliverabilityAnalyticsSeriesDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
GetDeliverabilityAnalyticsSeriesWithHttpInfo(DateTime?, DateTime?, string, string, int?, int)
Get deliverability analytics time series Compare deliverability runs over a time range with bucketed chart metrics and run-level rows for table views.
Declaration
public ApiResponse<DeliverabilityAnalyticsSeriesDto> GetDeliverabilityAnalyticsSeriesWithHttpInfo(DateTime? since = null, DateTime? before = null, string scope = null, string bucket = null, int? runLimit = null, int operationIndex = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| DateTime? | since | (optional) |
| DateTime? | before | (optional) |
| string | scope | (optional) |
| string | bucket | (optional, default to DAY) |
| int? | runLimit | (optional) |
| int | operationIndex | Index associated with the operation. |
Returns
| Type | Description |
|---|---|
| ApiResponse<DeliverabilityAnalyticsSeriesDto> | ApiResponse of DeliverabilityAnalyticsSeriesDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
GetDeliverabilityAnalyticsSeriesWithHttpInfoAsync(DateTime?, DateTime?, string, string, int?, int, CancellationToken)
Get deliverability analytics time series Compare deliverability runs over a time range with bucketed chart metrics and run-level rows for table views.
Declaration
public Task<ApiResponse<DeliverabilityAnalyticsSeriesDto>> GetDeliverabilityAnalyticsSeriesWithHttpInfoAsync(DateTime? since = null, DateTime? before = null, string scope = null, string bucket = null, int? runLimit = null, int operationIndex = 0, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| DateTime? | since | (optional) |
| DateTime? | before | (optional) |
| string | scope | (optional) |
| string | bucket | (optional, default to DAY) |
| int? | runLimit | (optional) |
| int | operationIndex | Index associated with the operation. |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| Task<ApiResponse<DeliverabilityAnalyticsSeriesDto>> | Task of ApiResponse (DeliverabilityAnalyticsSeriesDto) |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
GetDeliverabilityFailureHotspots(DateTime?, DateTime?, string, int?, int)
Get deliverability failure hotspots Find commonly failing entities and phone country/variant dimensions across deliverability runs in a time range.
Declaration
public DeliverabilityFailureHotspotsDto GetDeliverabilityFailureHotspots(DateTime? since = null, DateTime? before = null, string scope = null, int? limit = null, int operationIndex = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| DateTime? | since | (optional) |
| DateTime? | before | (optional) |
| string | scope | (optional) |
| int? | limit | (optional) |
| int | operationIndex | Index associated with the operation. |
Returns
| Type | Description |
|---|---|
| DeliverabilityFailureHotspotsDto | DeliverabilityFailureHotspotsDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
GetDeliverabilityFailureHotspotsAsync(DateTime?, DateTime?, string, int?, int, CancellationToken)
Get deliverability failure hotspots Find commonly failing entities and phone country/variant dimensions across deliverability runs in a time range.
Declaration
public Task<DeliverabilityFailureHotspotsDto> GetDeliverabilityFailureHotspotsAsync(DateTime? since = null, DateTime? before = null, string scope = null, int? limit = null, int operationIndex = 0, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| DateTime? | since | (optional) |
| DateTime? | before | (optional) |
| string | scope | (optional) |
| int? | limit | (optional) |
| int | operationIndex | Index associated with the operation. |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| Task<DeliverabilityFailureHotspotsDto> | Task of DeliverabilityFailureHotspotsDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
GetDeliverabilityFailureHotspotsWithHttpInfo(DateTime?, DateTime?, string, int?, int)
Get deliverability failure hotspots Find commonly failing entities and phone country/variant dimensions across deliverability runs in a time range.
Declaration
public ApiResponse<DeliverabilityFailureHotspotsDto> GetDeliverabilityFailureHotspotsWithHttpInfo(DateTime? since = null, DateTime? before = null, string scope = null, int? limit = null, int operationIndex = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| DateTime? | since | (optional) |
| DateTime? | before | (optional) |
| string | scope | (optional) |
| int? | limit | (optional) |
| int | operationIndex | Index associated with the operation. |
Returns
| Type | Description |
|---|---|
| ApiResponse<DeliverabilityFailureHotspotsDto> | ApiResponse of DeliverabilityFailureHotspotsDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
GetDeliverabilityFailureHotspotsWithHttpInfoAsync(DateTime?, DateTime?, string, int?, int, CancellationToken)
Get deliverability failure hotspots Find commonly failing entities and phone country/variant dimensions across deliverability runs in a time range.
Declaration
public Task<ApiResponse<DeliverabilityFailureHotspotsDto>> GetDeliverabilityFailureHotspotsWithHttpInfoAsync(DateTime? since = null, DateTime? before = null, string scope = null, int? limit = null, int operationIndex = 0, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| DateTime? | since | (optional) |
| DateTime? | before | (optional) |
| string | scope | (optional) |
| int? | limit | (optional) |
| int | operationIndex | Index associated with the operation. |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| Task<ApiResponse<DeliverabilityFailureHotspotsDto>> | Task of ApiResponse (DeliverabilityFailureHotspotsDto) |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
GetDeliverabilitySimulationJob(Guid, Guid, int)
Get deliverability simulation job Get simulation job status and progress counters.
Declaration
public DeliverabilitySimulationJobDto GetDeliverabilitySimulationJob(Guid testId, Guid jobId, int operationIndex = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| Guid | jobId | |
| int | operationIndex | Index associated with the operation. |
Returns
| Type | Description |
|---|---|
| DeliverabilitySimulationJobDto | DeliverabilitySimulationJobDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
GetDeliverabilitySimulationJobAsync(Guid, Guid, int, CancellationToken)
Get deliverability simulation job Get simulation job status and progress counters.
Declaration
public Task<DeliverabilitySimulationJobDto> GetDeliverabilitySimulationJobAsync(Guid testId, Guid jobId, int operationIndex = 0, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| Guid | jobId | |
| int | operationIndex | Index associated with the operation. |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| Task<DeliverabilitySimulationJobDto> | Task of DeliverabilitySimulationJobDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
GetDeliverabilitySimulationJobEvents(Guid, Guid, int?, int?, string, int)
Get deliverability simulation job events Get paged simulation events including send successes and failures.
Declaration
public DeliverabilitySimulationJobEventPageDto GetDeliverabilitySimulationJobEvents(Guid testId, Guid jobId, int? page = null, int? size = null, string sort = null, int operationIndex = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| Guid | jobId | |
| int? | page | (optional, default to 0) |
| int? | size | (optional, default to 20) |
| string | sort | (optional, default to DESC) |
| int | operationIndex | Index associated with the operation. |
Returns
| Type | Description |
|---|---|
| DeliverabilitySimulationJobEventPageDto | DeliverabilitySimulationJobEventPageDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
GetDeliverabilitySimulationJobEventsAsync(Guid, Guid, int?, int?, string, int, CancellationToken)
Get deliverability simulation job events Get paged simulation events including send successes and failures.
Declaration
public Task<DeliverabilitySimulationJobEventPageDto> GetDeliverabilitySimulationJobEventsAsync(Guid testId, Guid jobId, int? page = null, int? size = null, string sort = null, int operationIndex = 0, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| Guid | jobId | |
| int? | page | (optional, default to 0) |
| int? | size | (optional, default to 20) |
| string | sort | (optional, default to DESC) |
| int | operationIndex | Index associated with the operation. |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| Task<DeliverabilitySimulationJobEventPageDto> | Task of DeliverabilitySimulationJobEventPageDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
GetDeliverabilitySimulationJobEventsWithHttpInfo(Guid, Guid, int?, int?, string, int)
Get deliverability simulation job events Get paged simulation events including send successes and failures.
Declaration
public ApiResponse<DeliverabilitySimulationJobEventPageDto> GetDeliverabilitySimulationJobEventsWithHttpInfo(Guid testId, Guid jobId, int? page = null, int? size = null, string sort = null, int operationIndex = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| Guid | jobId | |
| int? | page | (optional, default to 0) |
| int? | size | (optional, default to 20) |
| string | sort | (optional, default to DESC) |
| int | operationIndex | Index associated with the operation. |
Returns
| Type | Description |
|---|---|
| ApiResponse<DeliverabilitySimulationJobEventPageDto> | ApiResponse of DeliverabilitySimulationJobEventPageDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
GetDeliverabilitySimulationJobEventsWithHttpInfoAsync(Guid, Guid, int?, int?, string, int, CancellationToken)
Get deliverability simulation job events Get paged simulation events including send successes and failures.
Declaration
public Task<ApiResponse<DeliverabilitySimulationJobEventPageDto>> GetDeliverabilitySimulationJobEventsWithHttpInfoAsync(Guid testId, Guid jobId, int? page = null, int? size = null, string sort = null, int operationIndex = 0, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| Guid | jobId | |
| int? | page | (optional, default to 0) |
| int? | size | (optional, default to 20) |
| string | sort | (optional, default to DESC) |
| int | operationIndex | Index associated with the operation. |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| Task<ApiResponse<DeliverabilitySimulationJobEventPageDto>> | Task of ApiResponse (DeliverabilitySimulationJobEventPageDto) |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
GetDeliverabilitySimulationJobWithHttpInfo(Guid, Guid, int)
Get deliverability simulation job Get simulation job status and progress counters.
Declaration
public ApiResponse<DeliverabilitySimulationJobDto> GetDeliverabilitySimulationJobWithHttpInfo(Guid testId, Guid jobId, int operationIndex = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| Guid | jobId | |
| int | operationIndex | Index associated with the operation. |
Returns
| Type | Description |
|---|---|
| ApiResponse<DeliverabilitySimulationJobDto> | ApiResponse of DeliverabilitySimulationJobDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
GetDeliverabilitySimulationJobWithHttpInfoAsync(Guid, Guid, int, CancellationToken)
Get deliverability simulation job Get simulation job status and progress counters.
Declaration
public Task<ApiResponse<DeliverabilitySimulationJobDto>> GetDeliverabilitySimulationJobWithHttpInfoAsync(Guid testId, Guid jobId, int operationIndex = 0, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| Guid | jobId | |
| int | operationIndex | Index associated with the operation. |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| Task<ApiResponse<DeliverabilitySimulationJobDto>> | Task of ApiResponse (DeliverabilitySimulationJobDto) |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
GetDeliverabilityTest(Guid, int)
Get deliverability/load test Get deliverability test configuration and latest progress counters.
Declaration
public DeliverabilityTestDto GetDeliverabilityTest(Guid testId, int operationIndex = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| int | operationIndex | Index associated with the operation. |
Returns
| Type | Description |
|---|---|
| DeliverabilityTestDto | DeliverabilityTestDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
GetDeliverabilityTestAsync(Guid, int, CancellationToken)
Get deliverability/load test Get deliverability test configuration and latest progress counters.
Declaration
public Task<DeliverabilityTestDto> GetDeliverabilityTestAsync(Guid testId, int operationIndex = 0, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| int | operationIndex | Index associated with the operation. |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| Task<DeliverabilityTestDto> | Task of DeliverabilityTestDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
GetDeliverabilityTestResults(Guid, bool?, int?, int?, string, int)
Get deliverability/load test entity results Get paged per-entity expectation results with optional matched/unmatched filtering.
Declaration
public DeliverabilityEntityResultPageDto GetDeliverabilityTestResults(Guid testId, bool? matched = null, int? page = null, int? size = null, string sort = null, int operationIndex = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| bool? | matched | (optional) |
| int? | page | (optional, default to 0) |
| int? | size | (optional, default to 20) |
| string | sort | (optional, default to ASC) |
| int | operationIndex | Index associated with the operation. |
Returns
| Type | Description |
|---|---|
| DeliverabilityEntityResultPageDto | DeliverabilityEntityResultPageDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
GetDeliverabilityTestResultsAsync(Guid, bool?, int?, int?, string, int, CancellationToken)
Get deliverability/load test entity results Get paged per-entity expectation results with optional matched/unmatched filtering.
Declaration
public Task<DeliverabilityEntityResultPageDto> GetDeliverabilityTestResultsAsync(Guid testId, bool? matched = null, int? page = null, int? size = null, string sort = null, int operationIndex = 0, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| bool? | matched | (optional) |
| int? | page | (optional, default to 0) |
| int? | size | (optional, default to 20) |
| string | sort | (optional, default to ASC) |
| int | operationIndex | Index associated with the operation. |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| Task<DeliverabilityEntityResultPageDto> | Task of DeliverabilityEntityResultPageDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
GetDeliverabilityTestResultsWithHttpInfo(Guid, bool?, int?, int?, string, int)
Get deliverability/load test entity results Get paged per-entity expectation results with optional matched/unmatched filtering.
Declaration
public ApiResponse<DeliverabilityEntityResultPageDto> GetDeliverabilityTestResultsWithHttpInfo(Guid testId, bool? matched = null, int? page = null, int? size = null, string sort = null, int operationIndex = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| bool? | matched | (optional) |
| int? | page | (optional, default to 0) |
| int? | size | (optional, default to 20) |
| string | sort | (optional, default to ASC) |
| int | operationIndex | Index associated with the operation. |
Returns
| Type | Description |
|---|---|
| ApiResponse<DeliverabilityEntityResultPageDto> | ApiResponse of DeliverabilityEntityResultPageDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
GetDeliverabilityTestResultsWithHttpInfoAsync(Guid, bool?, int?, int?, string, int, CancellationToken)
Get deliverability/load test entity results Get paged per-entity expectation results with optional matched/unmatched filtering.
Declaration
public Task<ApiResponse<DeliverabilityEntityResultPageDto>> GetDeliverabilityTestResultsWithHttpInfoAsync(Guid testId, bool? matched = null, int? page = null, int? size = null, string sort = null, int operationIndex = 0, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| bool? | matched | (optional) |
| int? | page | (optional, default to 0) |
| int? | size | (optional, default to 20) |
| string | sort | (optional, default to ASC) |
| int | operationIndex | Index associated with the operation. |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| Task<ApiResponse<DeliverabilityEntityResultPageDto>> | Task of ApiResponse (DeliverabilityEntityResultPageDto) |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
GetDeliverabilityTestWithHttpInfo(Guid, int)
Get deliverability/load test Get deliverability test configuration and latest progress counters.
Declaration
public ApiResponse<DeliverabilityTestDto> GetDeliverabilityTestWithHttpInfo(Guid testId, int operationIndex = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| int | operationIndex | Index associated with the operation. |
Returns
| Type | Description |
|---|---|
| ApiResponse<DeliverabilityTestDto> | ApiResponse of DeliverabilityTestDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
GetDeliverabilityTestWithHttpInfoAsync(Guid, int, CancellationToken)
Get deliverability/load test Get deliverability test configuration and latest progress counters.
Declaration
public Task<ApiResponse<DeliverabilityTestDto>> GetDeliverabilityTestWithHttpInfoAsync(Guid testId, int operationIndex = 0, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| int | operationIndex | Index associated with the operation. |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| Task<ApiResponse<DeliverabilityTestDto>> | Task of ApiResponse (DeliverabilityTestDto) |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
GetDeliverabilityTests(int?, int?, string, int)
List deliverability/load tests List deliverability tests for the authenticated account.
Declaration
public DeliverabilityTestPageDto GetDeliverabilityTests(int? page = null, int? size = null, string sort = null, int operationIndex = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| int? | page | Page index (optional, default to 0) |
| int? | size | Page size (optional, default to 20) |
| string | sort | Sort direction (optional, default to DESC) |
| int | operationIndex | Index associated with the operation. |
Returns
| Type | Description |
|---|---|
| DeliverabilityTestPageDto | DeliverabilityTestPageDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
GetDeliverabilityTestsAsync(int?, int?, string, int, CancellationToken)
List deliverability/load tests List deliverability tests for the authenticated account.
Declaration
public Task<DeliverabilityTestPageDto> GetDeliverabilityTestsAsync(int? page = null, int? size = null, string sort = null, int operationIndex = 0, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| int? | page | Page index (optional, default to 0) |
| int? | size | Page size (optional, default to 20) |
| string | sort | Sort direction (optional, default to DESC) |
| int | operationIndex | Index associated with the operation. |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| Task<DeliverabilityTestPageDto> | Task of DeliverabilityTestPageDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
GetDeliverabilityTestsWithHttpInfo(int?, int?, string, int)
List deliverability/load tests List deliverability tests for the authenticated account.
Declaration
public ApiResponse<DeliverabilityTestPageDto> GetDeliverabilityTestsWithHttpInfo(int? page = null, int? size = null, string sort = null, int operationIndex = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| int? | page | Page index (optional, default to 0) |
| int? | size | Page size (optional, default to 20) |
| string | sort | Sort direction (optional, default to DESC) |
| int | operationIndex | Index associated with the operation. |
Returns
| Type | Description |
|---|---|
| ApiResponse<DeliverabilityTestPageDto> | ApiResponse of DeliverabilityTestPageDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
GetDeliverabilityTestsWithHttpInfoAsync(int?, int?, string, int, CancellationToken)
List deliverability/load tests List deliverability tests for the authenticated account.
Declaration
public Task<ApiResponse<DeliverabilityTestPageDto>> GetDeliverabilityTestsWithHttpInfoAsync(int? page = null, int? size = null, string sort = null, int operationIndex = 0, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| int? | page | Page index (optional, default to 0) |
| int? | size | Page size (optional, default to 20) |
| string | sort | Sort direction (optional, default to DESC) |
| int | operationIndex | Index associated with the operation. |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| Task<ApiResponse<DeliverabilityTestPageDto>> | Task of ApiResponse (DeliverabilityTestPageDto) |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
GetLatestDeliverabilitySimulationJob(Guid, int)
Get latest deliverability simulation job Get the most recent simulation job for a deliverability test.
Declaration
public DeliverabilitySimulationJobDto GetLatestDeliverabilitySimulationJob(Guid testId, int operationIndex = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| int | operationIndex | Index associated with the operation. |
Returns
| Type | Description |
|---|---|
| DeliverabilitySimulationJobDto | DeliverabilitySimulationJobDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
GetLatestDeliverabilitySimulationJobAsync(Guid, int, CancellationToken)
Get latest deliverability simulation job Get the most recent simulation job for a deliverability test.
Declaration
public Task<DeliverabilitySimulationJobDto> GetLatestDeliverabilitySimulationJobAsync(Guid testId, int operationIndex = 0, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| int | operationIndex | Index associated with the operation. |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| Task<DeliverabilitySimulationJobDto> | Task of DeliverabilitySimulationJobDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
GetLatestDeliverabilitySimulationJobWithHttpInfo(Guid, int)
Get latest deliverability simulation job Get the most recent simulation job for a deliverability test.
Declaration
public ApiResponse<DeliverabilitySimulationJobDto> GetLatestDeliverabilitySimulationJobWithHttpInfo(Guid testId, int operationIndex = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| int | operationIndex | Index associated with the operation. |
Returns
| Type | Description |
|---|---|
| ApiResponse<DeliverabilitySimulationJobDto> | ApiResponse of DeliverabilitySimulationJobDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
GetLatestDeliverabilitySimulationJobWithHttpInfoAsync(Guid, int, CancellationToken)
Get latest deliverability simulation job Get the most recent simulation job for a deliverability test.
Declaration
public Task<ApiResponse<DeliverabilitySimulationJobDto>> GetLatestDeliverabilitySimulationJobWithHttpInfoAsync(Guid testId, int operationIndex = 0, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| int | operationIndex | Index associated with the operation. |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| Task<ApiResponse<DeliverabilitySimulationJobDto>> | Task of ApiResponse (DeliverabilitySimulationJobDto) |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
PauseDeliverabilitySimulationJob(Guid, Guid, int)
Pause deliverability simulation job Pause a running simulation job.
Declaration
public DeliverabilitySimulationJobDto PauseDeliverabilitySimulationJob(Guid testId, Guid jobId, int operationIndex = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| Guid | jobId | |
| int | operationIndex | Index associated with the operation. |
Returns
| Type | Description |
|---|---|
| DeliverabilitySimulationJobDto | DeliverabilitySimulationJobDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
PauseDeliverabilitySimulationJobAsync(Guid, Guid, int, CancellationToken)
Pause deliverability simulation job Pause a running simulation job.
Declaration
public Task<DeliverabilitySimulationJobDto> PauseDeliverabilitySimulationJobAsync(Guid testId, Guid jobId, int operationIndex = 0, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| Guid | jobId | |
| int | operationIndex | Index associated with the operation. |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| Task<DeliverabilitySimulationJobDto> | Task of DeliverabilitySimulationJobDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
PauseDeliverabilitySimulationJobWithHttpInfo(Guid, Guid, int)
Pause deliverability simulation job Pause a running simulation job.
Declaration
public ApiResponse<DeliverabilitySimulationJobDto> PauseDeliverabilitySimulationJobWithHttpInfo(Guid testId, Guid jobId, int operationIndex = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| Guid | jobId | |
| int | operationIndex | Index associated with the operation. |
Returns
| Type | Description |
|---|---|
| ApiResponse<DeliverabilitySimulationJobDto> | ApiResponse of DeliverabilitySimulationJobDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
PauseDeliverabilitySimulationJobWithHttpInfoAsync(Guid, Guid, int, CancellationToken)
Pause deliverability simulation job Pause a running simulation job.
Declaration
public Task<ApiResponse<DeliverabilitySimulationJobDto>> PauseDeliverabilitySimulationJobWithHttpInfoAsync(Guid testId, Guid jobId, int operationIndex = 0, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| Guid | jobId | |
| int | operationIndex | Index associated with the operation. |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| Task<ApiResponse<DeliverabilitySimulationJobDto>> | Task of ApiResponse (DeliverabilitySimulationJobDto) |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
PauseDeliverabilityTest(Guid, int)
Pause deliverability/load test Pause a RUNNING or SCHEDULED deliverability test.
Declaration
public DeliverabilityTestDto PauseDeliverabilityTest(Guid testId, int operationIndex = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| int | operationIndex | Index associated with the operation. |
Returns
| Type | Description |
|---|---|
| DeliverabilityTestDto | DeliverabilityTestDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
PauseDeliverabilityTestAsync(Guid, int, CancellationToken)
Pause deliverability/load test Pause a RUNNING or SCHEDULED deliverability test.
Declaration
public Task<DeliverabilityTestDto> PauseDeliverabilityTestAsync(Guid testId, int operationIndex = 0, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| int | operationIndex | Index associated with the operation. |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| Task<DeliverabilityTestDto> | Task of DeliverabilityTestDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
PauseDeliverabilityTestWithHttpInfo(Guid, int)
Pause deliverability/load test Pause a RUNNING or SCHEDULED deliverability test.
Declaration
public ApiResponse<DeliverabilityTestDto> PauseDeliverabilityTestWithHttpInfo(Guid testId, int operationIndex = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| int | operationIndex | Index associated with the operation. |
Returns
| Type | Description |
|---|---|
| ApiResponse<DeliverabilityTestDto> | ApiResponse of DeliverabilityTestDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
PauseDeliverabilityTestWithHttpInfoAsync(Guid, int, CancellationToken)
Pause deliverability/load test Pause a RUNNING or SCHEDULED deliverability test.
Declaration
public Task<ApiResponse<DeliverabilityTestDto>> PauseDeliverabilityTestWithHttpInfoAsync(Guid testId, int operationIndex = 0, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| int | operationIndex | Index associated with the operation. |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| Task<ApiResponse<DeliverabilityTestDto>> | Task of ApiResponse (DeliverabilityTestDto) |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
PollDeliverabilityTestStatus(Guid, int)
Poll deliverability/load test status Poll test progress. Evaluation is throttled with a 5-second cache window to protect backing data stores.
Declaration
public DeliverabilityPollStatusResultDto PollDeliverabilityTestStatus(Guid testId, int operationIndex = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| int | operationIndex | Index associated with the operation. |
Returns
| Type | Description |
|---|---|
| DeliverabilityPollStatusResultDto | DeliverabilityPollStatusResultDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
PollDeliverabilityTestStatusAsync(Guid, int, CancellationToken)
Poll deliverability/load test status Poll test progress. Evaluation is throttled with a 5-second cache window to protect backing data stores.
Declaration
public Task<DeliverabilityPollStatusResultDto> PollDeliverabilityTestStatusAsync(Guid testId, int operationIndex = 0, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| int | operationIndex | Index associated with the operation. |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| Task<DeliverabilityPollStatusResultDto> | Task of DeliverabilityPollStatusResultDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
PollDeliverabilityTestStatusWithHttpInfo(Guid, int)
Poll deliverability/load test status Poll test progress. Evaluation is throttled with a 5-second cache window to protect backing data stores.
Declaration
public ApiResponse<DeliverabilityPollStatusResultDto> PollDeliverabilityTestStatusWithHttpInfo(Guid testId, int operationIndex = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| int | operationIndex | Index associated with the operation. |
Returns
| Type | Description |
|---|---|
| ApiResponse<DeliverabilityPollStatusResultDto> | ApiResponse of DeliverabilityPollStatusResultDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
PollDeliverabilityTestStatusWithHttpInfoAsync(Guid, int, CancellationToken)
Poll deliverability/load test status Poll test progress. Evaluation is throttled with a 5-second cache window to protect backing data stores.
Declaration
public Task<ApiResponse<DeliverabilityPollStatusResultDto>> PollDeliverabilityTestStatusWithHttpInfoAsync(Guid testId, int operationIndex = 0, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| int | operationIndex | Index associated with the operation. |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| Task<ApiResponse<DeliverabilityPollStatusResultDto>> | Task of ApiResponse (DeliverabilityPollStatusResultDto) |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
ResumeDeliverabilitySimulationJob(Guid, Guid, int)
Resume deliverability simulation job Resume a paused simulation job.
Declaration
public DeliverabilitySimulationJobDto ResumeDeliverabilitySimulationJob(Guid testId, Guid jobId, int operationIndex = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| Guid | jobId | |
| int | operationIndex | Index associated with the operation. |
Returns
| Type | Description |
|---|---|
| DeliverabilitySimulationJobDto | DeliverabilitySimulationJobDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
ResumeDeliverabilitySimulationJobAsync(Guid, Guid, int, CancellationToken)
Resume deliverability simulation job Resume a paused simulation job.
Declaration
public Task<DeliverabilitySimulationJobDto> ResumeDeliverabilitySimulationJobAsync(Guid testId, Guid jobId, int operationIndex = 0, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| Guid | jobId | |
| int | operationIndex | Index associated with the operation. |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| Task<DeliverabilitySimulationJobDto> | Task of DeliverabilitySimulationJobDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
ResumeDeliverabilitySimulationJobWithHttpInfo(Guid, Guid, int)
Resume deliverability simulation job Resume a paused simulation job.
Declaration
public ApiResponse<DeliverabilitySimulationJobDto> ResumeDeliverabilitySimulationJobWithHttpInfo(Guid testId, Guid jobId, int operationIndex = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| Guid | jobId | |
| int | operationIndex | Index associated with the operation. |
Returns
| Type | Description |
|---|---|
| ApiResponse<DeliverabilitySimulationJobDto> | ApiResponse of DeliverabilitySimulationJobDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
ResumeDeliverabilitySimulationJobWithHttpInfoAsync(Guid, Guid, int, CancellationToken)
Resume deliverability simulation job Resume a paused simulation job.
Declaration
public Task<ApiResponse<DeliverabilitySimulationJobDto>> ResumeDeliverabilitySimulationJobWithHttpInfoAsync(Guid testId, Guid jobId, int operationIndex = 0, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| Guid | jobId | |
| int | operationIndex | Index associated with the operation. |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| Task<ApiResponse<DeliverabilitySimulationJobDto>> | Task of ApiResponse (DeliverabilitySimulationJobDto) |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
StartDeliverabilityTest(Guid, int)
Start or resume deliverability/load test Start a CREATED test or resume a PAUSED/SCHEDULED test.
Declaration
public DeliverabilityTestDto StartDeliverabilityTest(Guid testId, int operationIndex = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| int | operationIndex | Index associated with the operation. |
Returns
| Type | Description |
|---|---|
| DeliverabilityTestDto | DeliverabilityTestDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
StartDeliverabilityTestAsync(Guid, int, CancellationToken)
Start or resume deliverability/load test Start a CREATED test or resume a PAUSED/SCHEDULED test.
Declaration
public Task<DeliverabilityTestDto> StartDeliverabilityTestAsync(Guid testId, int operationIndex = 0, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| int | operationIndex | Index associated with the operation. |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| Task<DeliverabilityTestDto> | Task of DeliverabilityTestDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
StartDeliverabilityTestWithHttpInfo(Guid, int)
Start or resume deliverability/load test Start a CREATED test or resume a PAUSED/SCHEDULED test.
Declaration
public ApiResponse<DeliverabilityTestDto> StartDeliverabilityTestWithHttpInfo(Guid testId, int operationIndex = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| int | operationIndex | Index associated with the operation. |
Returns
| Type | Description |
|---|---|
| ApiResponse<DeliverabilityTestDto> | ApiResponse of DeliverabilityTestDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
StartDeliverabilityTestWithHttpInfoAsync(Guid, int, CancellationToken)
Start or resume deliverability/load test Start a CREATED test or resume a PAUSED/SCHEDULED test.
Declaration
public Task<ApiResponse<DeliverabilityTestDto>> StartDeliverabilityTestWithHttpInfoAsync(Guid testId, int operationIndex = 0, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| int | operationIndex | Index associated with the operation. |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| Task<ApiResponse<DeliverabilityTestDto>> | Task of ApiResponse (DeliverabilityTestDto) |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
StopDeliverabilityTest(Guid, int)
Stop deliverability/load test Stop a deliverability test and mark it terminal.
Declaration
public DeliverabilityTestDto StopDeliverabilityTest(Guid testId, int operationIndex = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| int | operationIndex | Index associated with the operation. |
Returns
| Type | Description |
|---|---|
| DeliverabilityTestDto | DeliverabilityTestDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
StopDeliverabilityTestAsync(Guid, int, CancellationToken)
Stop deliverability/load test Stop a deliverability test and mark it terminal.
Declaration
public Task<DeliverabilityTestDto> StopDeliverabilityTestAsync(Guid testId, int operationIndex = 0, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| int | operationIndex | Index associated with the operation. |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| Task<DeliverabilityTestDto> | Task of DeliverabilityTestDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
StopDeliverabilityTestWithHttpInfo(Guid, int)
Stop deliverability/load test Stop a deliverability test and mark it terminal.
Declaration
public ApiResponse<DeliverabilityTestDto> StopDeliverabilityTestWithHttpInfo(Guid testId, int operationIndex = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| int | operationIndex | Index associated with the operation. |
Returns
| Type | Description |
|---|---|
| ApiResponse<DeliverabilityTestDto> | ApiResponse of DeliverabilityTestDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
StopDeliverabilityTestWithHttpInfoAsync(Guid, int, CancellationToken)
Stop deliverability/load test Stop a deliverability test and mark it terminal.
Declaration
public Task<ApiResponse<DeliverabilityTestDto>> StopDeliverabilityTestWithHttpInfoAsync(Guid testId, int operationIndex = 0, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| int | operationIndex | Index associated with the operation. |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| Task<ApiResponse<DeliverabilityTestDto>> | Task of ApiResponse (DeliverabilityTestDto) |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
UpdateDeliverabilityTest(Guid, UpdateDeliverabilityTestOptions, int)
Update deliverability/load test Update metadata, timeout, and expectations for a non-running non-terminal test.
Declaration
public DeliverabilityTestDto UpdateDeliverabilityTest(Guid testId, UpdateDeliverabilityTestOptions updateDeliverabilityTestOptions, int operationIndex = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| UpdateDeliverabilityTestOptions | updateDeliverabilityTestOptions | |
| int | operationIndex | Index associated with the operation. |
Returns
| Type | Description |
|---|---|
| DeliverabilityTestDto | DeliverabilityTestDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
UpdateDeliverabilityTestAsync(Guid, UpdateDeliverabilityTestOptions, int, CancellationToken)
Update deliverability/load test Update metadata, timeout, and expectations for a non-running non-terminal test.
Declaration
public Task<DeliverabilityTestDto> UpdateDeliverabilityTestAsync(Guid testId, UpdateDeliverabilityTestOptions updateDeliverabilityTestOptions, int operationIndex = 0, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| UpdateDeliverabilityTestOptions | updateDeliverabilityTestOptions | |
| int | operationIndex | Index associated with the operation. |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| Task<DeliverabilityTestDto> | Task of DeliverabilityTestDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
UpdateDeliverabilityTestWithHttpInfo(Guid, UpdateDeliverabilityTestOptions, int)
Update deliverability/load test Update metadata, timeout, and expectations for a non-running non-terminal test.
Declaration
public ApiResponse<DeliverabilityTestDto> UpdateDeliverabilityTestWithHttpInfo(Guid testId, UpdateDeliverabilityTestOptions updateDeliverabilityTestOptions, int operationIndex = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| UpdateDeliverabilityTestOptions | updateDeliverabilityTestOptions | |
| int | operationIndex | Index associated with the operation. |
Returns
| Type | Description |
|---|---|
| ApiResponse<DeliverabilityTestDto> | ApiResponse of DeliverabilityTestDto |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
UpdateDeliverabilityTestWithHttpInfoAsync(Guid, UpdateDeliverabilityTestOptions, int, CancellationToken)
Update deliverability/load test Update metadata, timeout, and expectations for a non-running non-terminal test.
Declaration
public Task<ApiResponse<DeliverabilityTestDto>> UpdateDeliverabilityTestWithHttpInfoAsync(Guid testId, UpdateDeliverabilityTestOptions updateDeliverabilityTestOptions, int operationIndex = 0, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | testId | |
| UpdateDeliverabilityTestOptions | updateDeliverabilityTestOptions | |
| int | operationIndex | Index associated with the operation. |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| Task<ApiResponse<DeliverabilityTestDto>> | Task of ApiResponse (DeliverabilityTestDto) |
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |