Get all contacts from an individual list.
Namespace: CTCT.ServicesAssembly: CTCT (in CTCT.dll) Version: 2.0.0.0 (2.0.0.0)
ResultSet<Contact> GetContactsFromList(
string accessToken,
string apiKey,
string listId,
Nullable<int> limit,
Nullable<DateTime> modifiedSince,
Pagination pag
)
ResultSet<Contact> GetContactsFromList(
string accessToken,
string apiKey,
string listId,
Nullable<int> limit,
Nullable<DateTime> modifiedSince,
Pagination pag
)
Function GetContactsFromList ( _
accessToken As String, _
apiKey As String, _
listId As String, _
limit As Nullable(Of Integer), _
modifiedSince As Nullable(Of DateTime), _
pag As Pagination _
) As ResultSet(Of Contact)
Function GetContactsFromList ( _
accessToken As String, _
apiKey As String, _
listId As String, _
limit As Nullable(Of Integer), _
modifiedSince As Nullable(Of DateTime), _
pag As Pagination _
) As ResultSet(Of Contact)
ResultSet<Contact^>^ GetContactsFromList(
String^ accessToken,
String^ apiKey,
String^ listId,
Nullable<int> limit,
Nullable<DateTime> modifiedSince,
Pagination^ pag
)
ResultSet<Contact^>^ GetContactsFromList(
String^ accessToken,
String^ apiKey,
String^ listId,
Nullable<int> limit,
Nullable<DateTime> modifiedSince,
Pagination^ pag
)
abstract GetContactsFromList :
accessToken : string *
apiKey : string *
listId : string *
limit : Nullable<int> *
modifiedSince : Nullable<DateTime> *
pag : Pagination -> ResultSet<Contact>
abstract GetContactsFromList :
accessToken : string *
apiKey : string *
listId : string *
limit : Nullable<int> *
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
- listId
- Type: System String
List id to retrieve contacts for.
- limit
- Type: System Nullable Int32
Specifies the number of results per page in the output, from 1 - 500, default = 500.
- modifiedSince
- Type: System Nullable DateTime
limit contacts retrieved to contacts modified since the supplied date
- pag
- Type: CTCT.Components Pagination
Pagination object.
Return Value
Returns a list of contacts.