Warning: Array to string conversion in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 825
Mailchimp_Helpers::get_webhook_key()

Retrieve the webhook key.

Contents


Return Return

(void)


Source Source

File: src/integrations/mailchimp/helpers/mailchimp-helpers.php

	public function get_webhook_key() {
		$webhook_key = get_option( 'uap_mailchimp_webhook_key', false );
		if ( false === $webhook_key ) {
			$webhook_key = $this->regenerate_webhook_key();
		}
		return $webhook_key;
	}