How to use the mailchimp3.entities.automationemailqueues.AutomationEmailQueues function in mailchimp3

To help you get started, we’ve selected a few mailchimp3 examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github VingtCinq / python-mailchimp / mailchimp3 / __init__.py View on Github external
def __init__(self, *args, **kwargs):
        """
        Initialize the class with your api_key and user_id and attach all of
        the endpoints
        """
        super(MailChimp, self).__init__(*args, **kwargs)
        # API Root
        self.root = self.api_root = Root(self)
        # Authorized Apps
        self.authorized_apps = AuthorizedApps(self)
        # Automations - Paid feature
        self.automations = Automations(self)
        self.automations.actions = AutomationActions(self)
        self.automations.emails = AutomationEmails(self)
        self.automations.emails.actions = AutomationEmailActions(self)
        self.automations.emails.queues = AutomationEmailQueues(self)
        self.automations.removed_subscribers = AutomationRemovedSubscribers(self)
        # Batch Operations
        self.batches = self.batch_operations = BatchOperations(self)
        # Batch Webhooks
        self.batch_webhooks = BatchWebhooks(self)
        # Campaign Folders
        self.campaign_folders = CampaignFolders(self)
        # Campaigns
        self.campaigns = Campaigns(self)
        self.campaigns.actions = CampaignActions(self)
        self.campaigns.content = CampaignContent(self)
        self.campaigns.feedback = CampaignFeedback(self)
        self.campaigns.send_checklist = CampaignSendChecklist(self)
        # Conversations - Paid feature
        self.conversations = Conversations(self)
        self.conversations.messages = ConversationMessages(self)
github VingtCinq / python-mailchimp / mailchimp3 / entities / automationemailqueues.py View on Github external
def __init__(self, *args, **kwargs):
        """
        Initialize the endpoint
        """
        super(AutomationEmailQueues, self).__init__(*args, **kwargs)
        self.endpoint = 'automations'
        self.workflow_id = None
        self.email_id = None
        self.subscriber_hash = None
github VingtCinq / python-mailchimp / mailchimp3 / entities / automationemails.py View on Github external
def __init__(self, *args, **kwargs):
        """
        Initialize the endpoint
        """
        super(AutomationEmails, self).__init__(*args, **kwargs)
        self.endpoint = 'automations'
        self.workflow_id = None
        self.email_id = None
        self.actions = AutomationEmailActions(self)
        self.queues = AutomationEmailQueues(self)