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

SYNOPSIS

my $foo = Net::CapsuleCRM->new( token => 'xxxx', target_domain => 'test.capsulecrm.com', debug => 0, );

find_party_by_email

find by email

find_party

find by id

create_person

$cap->create_person({ contacts => { email => { emailAddress => 'xxx', }, address => { type => 'xxx', street => "xxx", city => 'xxx', zip => 'xxx', country => 'xxx', }, phone => { type => 'Home', phoneNumber => '123456', }, }, title => 'Mr', firstName => 'Simon', lastName => 'Elliott', });

create_organization

See Person

add_tag

$cap->add_tag($person_id,'customer','difficult');