Get a result set of bounces for a given campaign.
Namespace: CTCT.ServicesAssembly: CTCT (in CTCT.dll) Version: 2.0.0.0 (2.0.0.0)
ResultSet<BounceActivity> GetBounces(
string accessToken,
string apiKey,
string campaignId,
Nullable<int> limit,
Nullable<DateTime> createdSince
)
ResultSet<BounceActivity> GetBounces(
string accessToken,
string apiKey,
string campaignId,
Nullable<int> limit,
Nullable<DateTime> createdSince
)
Function GetBounces ( _
accessToken As String, _
apiKey As String, _
campaignId As String, _
limit As Nullable(Of Integer), _
createdSince As Nullable(Of DateTime) _
) As ResultSet(Of BounceActivity)
Function GetBounces ( _
accessToken As String, _
apiKey As String, _
campaignId As String, _
limit As Nullable(Of Integer), _
createdSince As Nullable(Of DateTime) _
) As ResultSet(Of BounceActivity)
ResultSet<BounceActivity^>^ GetBounces(
String^ accessToken,
String^ apiKey,
String^ campaignId,
Nullable<int> limit,
Nullable<DateTime> createdSince
)
ResultSet<BounceActivity^>^ GetBounces(
String^ accessToken,
String^ apiKey,
String^ campaignId,
Nullable<int> limit,
Nullable<DateTime> createdSince
)
abstract GetBounces :
accessToken : string *
apiKey : string *
campaignId : string *
limit : Nullable<int> *
createdSince : Nullable<DateTime> -> ResultSet<BounceActivity>
abstract GetBounces :
accessToken : string *
apiKey : string *
campaignId : string *
limit : Nullable<int> *
createdSince : Nullable<DateTime> -> ResultSet<BounceActivity>
Parameters
- accessToken
- Type: System.String
Constant Contact OAuth2 access token.
- apiKey
- Type: System.String
The API key for the application
- campaignId
- Type: System.String
Campaign id.
- limit
- Type: System.Nullable<Int32>
Specifies the number of results per page in the output, from 1 - 500, default = 500.
- createdSince
- Type: System.Nullable<DateTime>
Filter for bounces created since the supplied date in the collection
Return Value
ResultSet containing a results array of @link BounceActivity.