The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

WebService::PutIo::Subscriptions - Manage RSS Subscriptions

SYNOPSIS

    use WebService::PutIo::Subscriptions;
        my $subs=WebService::PutIo::Subscriptions->new(api_key=>'..',api_secret=>'..');
        my $res=$subs->list;
        foreach my $sub (@{$res->results}) {
           print "Got ". Data::Dumper($sub);
        }

DESCRIPTION

Methods to manage RSS subscriptions on put.io

METHODS

list

Returns a list of subscriptions

create

Creates a subscription and returns it.

Parameters:

title
url
do_filters
dont_filters
parent_folder_id
paused

edit

Updates a subscription and returns it.

Parameters:

id
title
url
do_filters
dont_filters
parent_folder_id
paused

delete

Deletes a subscription.

Parameters:

id

pause

Toggles the activity of a subscription. Use it to pause or resume.

Parameters:

id

info

Returns detailed information of a subscription

Parameters:

id

COPYRIGHT AND LICENSE

Copyright (C) 2010, Marcus Ramberg.

This program is free software, you can redistribute it and/or modify it under the terms of the Artistic License version 2.0.