Scroll to navigation

Mail::Chimp3(3pm) User Contributed Perl Documentation Mail::Chimp3(3pm)

NAME

Mail::Chimp3 - An interface to mailchimp.com's RESTful Web API v3 using WEB::API

VERSION

version 0.08

SYNOPSIS

This is for the MailChimp API v3.0.

Please refer to the API documentation at <http://developer.mailchimp.com/documentation/mailchimp/reference/overview/>

    use Mail::Chimp3;
    my $mailchimp = Mail::Chimp3->new(
        api_key => $apikey,
    );
    my $response = $mailchimp->add_store(
        store_id => '123',
        cart_id  => '456',
    );

METHODS

INTERNALS

Required by Web::API

BUILD

basic configuration for the client API happens usually in the BUILD method when using Web::API

BUGS

Please report any bugs or feature requests on GitHub's issue tracker <https://github.com/jdigory/p5-Mail-Chimp3/issues>.

SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc Mail::Chimp3

You can also look for information at:

GitHub repository

<https://github.com/jdigory/p5-Mail-Chimp3>

CONTRIBUTORS

Peter Karman (pkarman)

AUTHOR

Josh Lavin <digory@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2016 by Josh Lavin.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

2019-11-26 perl v5.30.0