Get an array of contacts.
Namespace: CTCT.ServicesAssembly: CTCT (in CTCT.dll) Version: 2.0.0.0 (2.0.0.0)
ResultSet<Contact> GetContacts(
string accessToken,
string apiKey,
string email,
Nullable<int> limit,
Nullable<DateTime> modifiedSince,
Nullable<ContactStatus> status
)
ResultSet<Contact> GetContacts(
string accessToken,
string apiKey,
string email,
Nullable<int> limit,
Nullable<DateTime> modifiedSince,
Nullable<ContactStatus> status
)
Function GetContacts ( _
accessToken As String, _
apiKey As String, _
email As String, _
limit As Nullable(Of Integer), _
modifiedSince As Nullable(Of DateTime), _
status As Nullable(Of ContactStatus) _
) As ResultSet(Of Contact)
Function GetContacts ( _
accessToken As String, _
apiKey As String, _
email As String, _
limit As Nullable(Of Integer), _
modifiedSince As Nullable(Of DateTime), _
status As Nullable(Of ContactStatus) _
) As ResultSet(Of Contact)
ResultSet<Contact^>^ GetContacts(
String^ accessToken,
String^ apiKey,
String^ email,
Nullable<int> limit,
Nullable<DateTime> modifiedSince,
Nullable<ContactStatus> status
)
ResultSet<Contact^>^ GetContacts(
String^ accessToken,
String^ apiKey,
String^ email,
Nullable<int> limit,
Nullable<DateTime> modifiedSince,
Nullable<ContactStatus> status
)
abstract GetContacts :
accessToken : string *
apiKey : string *
email : string *
limit : Nullable<int> *
modifiedSince : Nullable<DateTime> *
status : Nullable<ContactStatus> -> ResultSet<Contact>
abstract GetContacts :
accessToken : string *
apiKey : string *
email : string *
limit : Nullable<int> *
modifiedSince : Nullable<DateTime> *
status : Nullable<ContactStatus> -> ResultSet<Contact>
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 contact to contacts modified since the supplied date
- status
- Type: System Nullable ContactStatus
Returns list of contacts with specified status.
Return Value
Returns a list of contacts.