summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2014-03-06 12:08:10 -0800
committerIvan Kohler <ivan@freeside.biz>2014-03-06 12:08:10 -0800
commit3efcba99c536f94d0e988dbdf980ba7a088631cb (patch)
tree137add2419113732c7da5ed0f0330b148555015f /bin
parentfd3a3ce59e41f5116329043787a159fe1e08caad (diff)
backoffice API: add new_customer, RT#22830
Diffstat (limited to 'bin')
-rwxr-xr-xbin/xmlrpc-new_customer62
1 files changed, 62 insertions, 0 deletions
diff --git a/bin/xmlrpc-new_customer b/bin/xmlrpc-new_customer
new file mode 100755
index 000000000..248d9e95b
--- /dev/null
+++ b/bin/xmlrpc-new_customer
@@ -0,0 +1,62 @@
+#!/usr/bin/perl
+
+use strict;
+use Frontier::Client;
+use Data::Dumper;
+
+my( $username, $password ) = ( @ARGV );
+
+my $uri = new URI 'http://localhost:8008/';
+
+my $server = new Frontier::Client ( 'url' => $uri );
+
+my $result = $server->call('FS.API.new_customer',
+ #API shared secret
+ 'secret' => 'sharingiscaring',
+
+ #customer informaiton
+ 'agentnum' => 1,
+ 'refnum' => 1, #advertising source
+ 'agent_custid' => '323',
+
+ 'first' => 'Tofu',
+ 'last' => 'Beast',
+ 'company' => 'Bank of Soymerica',
+
+ #address
+ 'address1' => '1234 Soybean Ln.',
+ 'city' => 'Tofutown',
+ 'county' => '',
+ 'state' => 'CA',
+ 'zip' => '54321',
+ 'country' => 'US',
+ 'latitude' => '',
+ 'longitude' => '',
+ 'geocode' => '',
+ 'censustract' => '',
+ 'censusyear' => '',
+
+ #phones
+ 'daytime' => '555 444 3211',
+ 'night' => '',
+ 'fax' => '',
+ 'mobile' => '123 466 3332',
+
+ #invoicing info
+ 'invoicing_list' => 'tofu@example.com', #comma-separated email addresses
+ 'postal_invoicing' => 1,
+
+ #billing information
+ 'payby' => 'CARD', # DCRD, CHEK, DCHK, BILL, etc.
+ 'payinfo' => '4111111111111111', #card number / acctno@routing / PO#
+ 'paydate' => '11/2019', #card expiration
+ 'paycvv' => '123', #card CVV/security code
+ 'payname' => 'Thomas Beast', #"Exact name on card" if different
+);
+
+die $result->{'error'} if $result->{'error'};
+
+my $custnum = $result->{'custnum'};
+warn "added new customer w/custnum $custnum\n";
+
+1;