ContactService GetContacts Method (String, String, String, Nullable Int32 , Nullable DateTime , Nullable ContactStatus ) CTCT Wrapper Documented Class Library
Get an array of contacts.

Namespace: CTCT.Services
Assembly: CTCT (in CTCT.dll) Version: 2.0.0.0 (2.0.0.0)
Syntax

public ResultSet<Contact> GetContacts(
	string accessToken,
	string apiKey,
	string email,
	Nullable<int> limit,
	Nullable<DateTime> modifiedSince,
	Nullable<ContactStatus> status
)

Parameters

accessToken
Type: System String
Constant Contact OAuth2 access token.
apiKey
Type: System String
The API key for the application
email
Type: System String
Match the exact email address.
limit
Type: System Nullable Int32 
Limit the number of returned values.
modifiedSince
Type: System Nullable DateTime 
limit contacts retrieved to contacts modified since the supplied date
status
Type: System Nullable ContactStatus 
Filter results by contact status

Return Value

Returns a list of contacts.

Implements

IContactService GetContacts(String, String, String, Nullable Int32 , Nullable DateTime , Nullable ContactStatus )
See Also