POST example/api/mailstatistics/GetBouncesByMailMessageQueueId/{mailMessageQueueId}
https://app.bwz.se/bedrock/example/api/mailstatistics/GetBouncesByMailMessageQueueId/{mailMessageQueueId}
Gets all bounces of a given MailMessageQueue.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
mailMessageQueueId |
Id of the desired MailMessageQueue. |
integer |
Required |
Body Parameters
Decides export format.
RecipientReturnInfoName | Description | Type | Additional information |
---|---|---|---|
Columns |
The wanted columns. |
Collection of string |
None. |
SortByColumn |
Column the result should be sorted by. |
string |
Required |
SortOrder |
Order the columns should be sorted in. |
SortOrder |
None. |
PageSize |
Number of items per page. |
integer |
None. |
Page |
Page to select. |
integer |
None. |
ExportFormat |
Decides export format. |
ExportFormat |
None. |
Request Formats
application/json, text/json
Sample:
{ "Columns": [ "sample string 1", "sample string 2" ], "SortByColumn": "sample string 1", "SortOrder": 1, "PageSize": 2, "Page": 3, "ExportFormat": 2 }
application/xml, text/xml
Sample:
<RecipientReturnInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Netoptions.BizWizard.Api.Common.Models"> <Columns xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:string>sample string 1</d2p1:string> <d2p1:string>sample string 2</d2p1:string> </Columns> <ExportFormat>TAB</ExportFormat> <Page>3</Page> <PageSize>2</PageSize> <SortByColumn>sample string 1</SortByColumn> <SortOrder>ASCENDING</SortOrder> </RecipientReturnInfo>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
A tab delimited string
stringResponse Formats
application/json, text/json
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>