list_contacts
(**kwargs)¶Lists the contacts present in a specific contact list.
See also: AWS API Documentation
Request Syntax
response = client.list_contacts(
ContactListName='string',
Filter={
'FilteredStatus': 'OPT_IN'|'OPT_OUT',
'TopicFilter': {
'TopicName': 'string',
'UseDefaultIfPreferenceUnavailable': True|False
}
},
PageSize=123,
NextToken='string'
)
[REQUIRED]
The name of the contact list.
A filter that can be applied to a list of contacts.
The status by which you are filtering: OPT_IN
or OPT_OUT
.
Used for filtering by a specific topic preference.
The name of a topic on which you wish to apply the filter.
Notes that the default subscription status should be applied to a contact because the contact has not noted their preference for subscribing to a topic.
NextToken
element is sent in the response. Use the NextToken
value in subsequent requests to retrieve additional contacts.dict
Response Syntax
{
'Contacts': [
{
'EmailAddress': 'string',
'TopicPreferences': [
{
'TopicName': 'string',
'SubscriptionStatus': 'OPT_IN'|'OPT_OUT'
},
],
'TopicDefaultPreferences': [
{
'TopicName': 'string',
'SubscriptionStatus': 'OPT_IN'|'OPT_OUT'
},
],
'UnsubscribeAll': True|False,
'LastUpdatedTimestamp': datetime(2015, 1, 1)
},
],
'NextToken': 'string'
}
Response Structure
(dict) --
Contacts (list) --
The contacts present in a specific contact list.
(dict) --
A contact is the end-user who is receiving the email.
EmailAddress (string) --
The contact's email address.
TopicPreferences (list) --
The contact's preference for being opted-in to or opted-out of a topic.
(dict) --
The contact's preference for being opted-in to or opted-out of a topic.
TopicName (string) --
The name of the topic.
SubscriptionStatus (string) --
The contact's subscription status to a topic which is either OPT_IN
or OPT_OUT
.
TopicDefaultPreferences (list) --
The default topic preferences applied to the contact.
(dict) --
The contact's preference for being opted-in to or opted-out of a topic.
TopicName (string) --
The name of the topic.
SubscriptionStatus (string) --
The contact's subscription status to a topic which is either OPT_IN
or OPT_OUT
.
UnsubscribeAll (boolean) --
A boolean value status noting if the contact is unsubscribed from all contact list topics.
LastUpdatedTimestamp (datetime) --
A timestamp noting the last time the contact's information was updated.
NextToken (string) --
A string token indicating that there might be additional contacts available to be listed. Copy this token to a subsequent call to ListContacts
with the same parameters to retrieve the next page of contacts.
Exceptions
SESV2.Client.exceptions.BadRequestException
SESV2.Client.exceptions.TooManyRequestsException
SESV2.Client.exceptions.NotFoundException