5 use FS::Record qw( qsearch qsearchs );
14 FS::API - Freeside backend API
22 This module implements a backend API for advanced back-office integration.
24 In contrast to the self-service API, which authenticates an end-user and offers
25 functionality to that end user, the backend API performs a simple shared-secret
26 authentication and offers full, administrator functionality, enabling
27 integration with other back-office systems.
29 If accessing this API remotely with XML-RPC or JSON-RPC, be careful to block
30 the port by default, only allow access from back-office servers with the same
31 security precations as the Freeside server, and encrypt the communication
32 channel (for example, with an SSH tunnel or VPN) rather than accessing it
39 =item insert_payment OPTION => VALUE, ...
41 Adds a new payment to a customers account. Takes a list of keys and values as
42 paramters with the following keys:
64 Option date for payment
70 my $result = FS::API->insert_payment(
71 'secret' => 'sharingiscaring',
77 '_date' => 1397977200, #UNIX timestamp
80 if ( $result->{'error'} ) {
81 die $result->{'error'};
84 print "paynum ". $result->{'paynum'};
91 my($class, %opt) = @_;
92 my $conf = new FS::Conf;
93 return { 'error' => 'Incorrect shared secret' }
94 unless $opt{secret} eq $conf->config('api_shared_secret');
96 #less "raw" than this? we are the backoffice API, and aren't worried
97 # about version migration ala cust_main/cust_location here
98 my $cust_pay = new FS::cust_pay { %opt };
99 my $error = $cust_pay->insert( 'manual'=>1 );
100 return { 'error' => $error,
101 'paynum' => $cust_pay->paynum,
105 # pass the phone number ( from svc_phone )
106 sub insert_payment_phonenum {
107 my($class, %opt) = @_;
108 my $conf = new FS::Conf;
109 return { 'error' => 'Incorrect shared secret' }
110 unless $opt{secret} eq $conf->config('api_shared_secret');
112 $class->_by_phonenum('insert_payment', %opt);
117 my($class, $method, %opt) = @_;
118 my $conf = new FS::Conf;
119 return { 'error' => 'Incorrect shared secret' }
120 unless $opt{secret} eq $conf->config('api_shared_secret');
122 my $phonenum = delete $opt{'phonenum'};
124 my $svc_phone = qsearchs('svc_phone', { 'phonenum' => $phonenum } )
125 or return { 'error' => 'Unknown phonenum' };
127 my $cust_pkg = $svc_phone->cust_svc->cust_pkg
128 or return { 'error' => 'Unlinked phonenum' };
130 $opt{'custnum'} = $cust_pkg->custnum;
132 $class->$method(%opt);
136 =item insert_credit OPTION => VALUE, ...
138 Adds a a credit to a customers account. Takes a list of keys and values as
139 parameters with the following keys
157 The date the credit will be posted
163 my $result = FS::API->insert_credit(
164 'secret' => 'sharingiscaring',
169 '_date' => 1397977200, #UNIX timestamp
172 if ( $result->{'error'} ) {
173 die $result->{'error'};
176 print "crednum ". $result->{'crednum'};
183 my($class, %opt) = @_;
184 my $conf = new FS::Conf;
185 return { 'error' => 'Incorrect shared secret' }
186 unless $opt{secret} eq $conf->config('api_shared_secret');
188 $opt{'reasonnum'} ||= $conf->config('api_credit_reason');
190 #less "raw" than this? we are the backoffice API, and aren't worried
191 # about version migration ala cust_main/cust_location here
192 my $cust_credit = new FS::cust_credit { %opt };
193 my $error = $cust_credit->insert;
194 return { 'error' => $error,
195 'crednum' => $cust_credit->crednum,
199 # pass the phone number ( from svc_phone )
200 sub insert_credit_phonenum {
201 my($class, %opt) = @_;
202 my $conf = new FS::Conf;
203 return { 'error' => 'Incorrect shared secret' }
204 unless $opt{secret} eq $conf->config('api_shared_secret');
206 $class->_by_phonenum('insert_credit', %opt);
210 =item insert_refund OPTION => VALUE, ...
212 Adds a a credit to a customers account. Takes a list of keys and values as
213 parmeters with the following keys: custnum, payby, refund
217 my $result = FS::API->insert_refund(
218 'secret' => 'sharingiscaring',
224 '_date' => 1397977200, #UNIX timestamp
227 if ( $result->{'error'} ) {
228 die $result->{'error'};
231 print "refundnum ". $result->{'crednum'};
238 my($class, %opt) = @_;
239 my $conf = new FS::Conf;
240 return { 'error' => 'Incorrect shared secret' }
241 unless $opt{secret} eq $conf->config('api_shared_secret');
243 # when github pull request #24 is merged,
244 # will have to change over to default reasonnum like credit
245 # but until then, this will do
246 $opt{'reason'} ||= 'API refund';
248 #less "raw" than this? we are the backoffice API, and aren't worried
249 # about version migration ala cust_main/cust_location here
250 my $cust_refund = new FS::cust_refund { %opt };
251 my $error = $cust_refund->insert;
252 return { 'error' => $error,
253 'refundnum' => $cust_refund->refundnum,
257 # pass the phone number ( from svc_phone )
258 sub insert_refund_phonenum {
259 my($class, %opt) = @_;
260 my $conf = new FS::Conf;
261 return { 'error' => 'Incorrect shared secret' }
262 unless $opt{secret} eq $conf->config('api_shared_secret');
264 $class->_by_phonenum('insert_refund', %opt);
270 # "2 way syncing" ? start with non-sync pulling info here, then if necessary
271 # figure out how to trigger something when those things change
273 # long-term: package changes?
275 =item new_customer OPTION => VALUE, ...
277 Creates a new customer. Takes a list of keys and values as parameters with the
288 first name (required)
296 (not typically collected; mostly used for ACH transactions)
302 =item address1 (required)
306 =item city (required)
314 =item state (required)
336 Currently used for third party tax vendor lookups
340 Used for determining FCC 477 reporting
344 Used for determining FCC 477 reporting
364 comma-separated list of email addresses for email invoices. The special value 'POST' is used to designate postal invoicing (it may be specified alone or in addition to email addresses),
366 Set to 1 to enable postal invoicing
368 =item referral_custnum
370 Referring customer number
382 Agent specific customer number
384 =item referral_custnum
386 Referring customer number
392 #certainly false laziness w/ClientAPI::Signup new_customer/new_customer_minimal
393 # but approaching this from a clean start / back-office perspective
394 # i.e. no package/service, no immediate credit card run, etc.
397 my( $class, %opt ) = @_;
399 my $conf = new FS::Conf;
400 return { 'error' => 'Incorrect shared secret' }
401 unless $opt{secret} eq $conf->config('api_shared_secret');
403 #default agentnum like signup_server-default_agentnum?
404 #$opt{agentnum} ||= $conf->config('signup_server-default_agentnum');
406 #same for refnum like signup_server-default_refnum
407 $opt{refnum} ||= $conf->config('signup_server-default_refnum');
409 $class->API_insert( %opt );
412 =item update_customer
414 Updates an existing customer. Passing an empty value clears that field, while
415 NOT passing that key/value at all leaves it alone. Takes a list of keys and
416 values as parameters with the following keys:
422 API Secret (required)
426 Customer number (required)
482 Comma-separated list of email addresses for email invoices. The special value
483 'POST' is used to designate postal invoicing (it may be specified alone or in
484 addition to email addresses),
486 Set to 1 to enable postal invoicing
488 =item referral_custnum
490 Referring customer number
504 sub update_customer {
505 my( $class, %opt ) = @_;
507 my $conf = new FS::Conf;
508 return { 'error' => 'Incorrect shared secret' }
509 unless $opt{secret} eq $conf->config('api_shared_secret');
511 FS::cust_main->API_update( %opt );
514 =item customer_info OPTION => VALUE, ...
516 Returns general customer information. Takes a list of keys and values as
517 parameters with the following keys: custnum, secret
522 my( $class, %opt ) = @_;
523 my $conf = new FS::Conf;
524 return { 'error' => 'Incorrect shared secret' }
525 unless $opt{secret} eq $conf->config('api_shared_secret');
527 my $cust_main = qsearchs('cust_main', { 'custnum' => $opt{custnum} })
528 or return { 'error' => 'Unknown custnum' };
530 $cust_main->API_getinfo;
535 Returns location specific information for the customer. Takes a list of keys
536 and values as paramters with the following keys: custnum, secret
540 #I also monitor for changes to the additional locations that are applied to
541 # packages, and would like for those to be exportable as well. basically the
542 # location data passed with the custnum.
545 my( $class, %opt ) = @_;
546 my $conf = new FS::Conf;
547 return { 'error' => 'Incorrect shared secret' }
548 unless $opt{secret} eq $conf->config('api_shared_secret');
550 my @cust_location = qsearch('cust_location', { 'custnum' => $opt{custnum} });
554 'locations' => [ map $_->hashref, @cust_location ],
560 =item bill_now OPTION => VALUE, ...
562 Bills a single customer now, in the same fashion as the "Bill now" link in the
565 Returns a hash reference with a single key, 'error'. If there is an error,
566 the value contains the error, otherwise it is empty. Takes a list of keys and
567 values as parameters with the following keys:
573 API Secret (required)
577 Customer number (required)
584 my( $class, %opt ) = @_;
585 my $conf = new FS::Conf;
586 return { 'error' => 'Incorrect shared secret' }
587 unless $opt{secret} eq $conf->config('api_shared_secret');
589 my $cust_main = qsearchs('cust_main', { 'custnum' => $opt{custnum} })
590 or return { 'error' => 'Unknown custnum' };
592 my $error = $cust_main->bill_and_collect( 'fatal' => 'return',
597 return { 'error' => $error,
603 #Advertising sources?