Get an array of contacts.
Namespace: CTCT.ServicesAssembly: CTCT (in CTCT.dll) Version: 2.0.0.0 (2.0.0.0)
public ResultSet<Contact> GetContacts(
string accessToken,
string apiKey,
Nullable<DateTime> modifiedSince,
Pagination pag
)
Public Function GetContacts ( _
accessToken As String, _
apiKey As String, _
modifiedSince As Nullable(Of DateTime), _
pag As Pagination _
) As ResultSet(Of Contact)
Public Function GetContacts ( _
accessToken As String, _
apiKey As String, _
modifiedSince As Nullable(Of DateTime), _
pag As Pagination _
) As ResultSet(Of Contact)
public:
virtual ResultSet<Contact^>^ GetContacts(
String^ accessToken,
String^ apiKey,
Nullable<DateTime> modifiedSince,
Pagination^ pag
) sealed
public:
virtual ResultSet<Contact^>^ GetContacts(
String^ accessToken,
String^ apiKey,
Nullable<DateTime> modifiedSince,
Pagination^ pag
) sealed
abstract GetContacts :
accessToken : string *
apiKey : string *
modifiedSince : Nullable<DateTime> *
pag : Pagination -> ResultSet<Contact>
override GetContacts :
accessToken : string *
apiKey : string *
modifiedSince : Nullable<DateTime> *
pag : Pagination -> ResultSet<Contact>
abstract GetContacts :
accessToken : string *
apiKey : string *
modifiedSince : Nullable<DateTime> *
pag : Pagination -> ResultSet<Contact>
override GetContacts :
accessToken : string *
apiKey : string *
modifiedSince : Nullable<DateTime> *
pag : Pagination -> ResultSet<Contact>
Parameters
- accessToken
- Type: System String
Constant Contact OAuth2 access token.
- apiKey
- Type: System String
The API key for the application
- modifiedSince
- Type: System Nullable DateTime
limit contact to contacts modified since the supplied date
- pag
- Type: CTCT.Components Pagination
Pagination object.
Return Value
Returns a list of contacts.
Implements
IContactService GetContacts(String, String, Nullable DateTime , Pagination)