VR::API - Communicate with VerticalResponse's API services


VR-API documentation  | view source Contained in the VR-API distribution.

Index


NAME

Top

VR::API - Communicate with VerticalResponse's API services

SYNOPSIS

Top

VR::API provides simplified access to the VerticalResponse API services server. It is based on the SOAP::Lite package, a widely-used SOAP toolkit for Perl.

Example

    #!/usr/bin/perl -w
    use strict;
    use VR::API;

    my $vrapi = new VR::API;
    $vrapi->login( { username => 'nick@verticalresponse.com', password => 'super_secret' } );

    $vrapi->createList( {
        name => "A new list",
        type => "email",
    } );

Available functions

See VR::API::_methods() for a list of available functions. These functions correspond to the functions listed in the VR API Enterprise WSDL file.

Note that it is not necessary to send the 'session_id' parameter with each method call; the VR::API infrastructure does that automatically after a successful call to login().

References

Enterprise API:

https://api.verticalresponse.com/wsdl/1.0/VRAPI.wsdl https://api.verticalresponse.com/wsdl/1.0/documentation.html

SEE ALSO

Top

VR::API::Partner, the VR Partner API Perl module

BUGS

Top

No known bugs. Please report bugs to api-support@verticalresponse.com

CREDITS

Top

Paul Kulchenko and Bryce Harrington, for writing a fantastic SOAP toolkit in Perl. Wes Bailey for help with CPAN and packaging.

MAINTAINER

Top

Nick Marden <nick@verticalresponse.com>

COPYRIGHT

Top


VR-API documentation  | view source Contained in the VR-API distribution.