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

NAME

WWW::SFDC::Partner - Interface to the Salesforce.com Partner API

VERSION

version 0.37

SYNOPSIS

    my $client =  WWW::SFDC->new(
        username => "foo",
        password => "bar",
        url      => "url",
    );

    my @objects = $client->Partner->query("SELECT field, ID FROM Object__c WHERE conditions");

    $client->update(
        map { $_->{field} =~ s/baz/bat/ } @objects
    );

This module consumes WWW::SFDC::Role::CRUD.

METHODS

setPassword

   $client->Partner->setPassword(Id => $ID, Password => $newPassword);

BUGS

Please report any bugs or feature requests at https://github.com/sophos/WWW-SFDC/issues.

SUPPORT

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

    perldoc WWW::SFDC::Partner

You can also look for information at https://github.com/sophos/WWW-SFDC

AUTHOR

Alexander Brett <alexander.brett@sophos.com> http://alexander-brett.co.uk

COPYRIGHT AND LICENSE

This software is Copyright (c) 2015 by Sophos Limited https://www.sophos.com/.

This is free software, licensed under:

  The MIT (X11) License

The full text of the license can be found in the LICENSE file included with this distribution.