Get bounces for a given contact.
Namespace: CTCT.ServicesAssembly: CTCT (in CTCT.dll) Version: 2.0.0.0 (2.0.0.0)
public ResultSet<BounceActivity> GetBounces(
string accessToken,
string apiKey,
string contactId,
Nullable<int> limit
)
public ResultSet<BounceActivity> GetBounces(
string accessToken,
string apiKey,
string contactId,
Nullable<int> limit
)
Public Function GetBounces ( _
accessToken As String, _
apiKey As String, _
contactId As String, _
limit As Nullable(Of Integer) _
) As ResultSet(Of BounceActivity)
Public Function GetBounces ( _
accessToken As String, _
apiKey As String, _
contactId As String, _
limit As Nullable(Of Integer) _
) As ResultSet(Of BounceActivity)
public:
virtual ResultSet<BounceActivity^>^ GetBounces(
String^ accessToken,
String^ apiKey,
String^ contactId,
Nullable<int> limit
) sealed
public:
virtual ResultSet<BounceActivity^>^ GetBounces(
String^ accessToken,
String^ apiKey,
String^ contactId,
Nullable<int> limit
) sealed
abstract GetBounces :
accessToken : string *
apiKey : string *
contactId : string *
limit : Nullable<int> -> ResultSet<BounceActivity>
override GetBounces :
accessToken : string *
apiKey : string *
contactId : string *
limit : Nullable<int> -> ResultSet<BounceActivity>
abstract GetBounces :
accessToken : string *
apiKey : string *
contactId : string *
limit : Nullable<int> -> ResultSet<BounceActivity>
override GetBounces :
accessToken : string *
apiKey : string *
contactId : string *
limit : Nullable<int> -> ResultSet<BounceActivity>
Parameters
- accessToken
- Type: System String
Constant Contact OAuth2 access token.
- apiKey
- Type: System String
The API key for the application
- contactId
- Type: System String
Contact id.
- limit
- Type: System Nullable Int32
Specifies the number of results per page in the output, from 1 - 500, default = 500.
Return Value
ResultSet containing a results array of @link BounceActivity
Implements
IContactTrackingService GetBounces(String, String, String, Nullable Int32 )