X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2FAPI.pm;h=f848361acee4936ad6fcef76d79d3758a0d05d36;hb=0870a4c1fb02be43ea5524f58650d99c81477681;hp=629463c37619c7be8d45676bf86c5e9aeb55cea2;hpb=fc937dac3920ddbf5d009bb28c75ff1eb529c625;p=freeside.git diff --git a/FS/FS/API.pm b/FS/FS/API.pm index 629463c37..f848361ac 100644 --- a/FS/FS/API.pm +++ b/FS/FS/API.pm @@ -36,9 +36,10 @@ in plaintext. =over 4 -=item insert_payment +=item insert_payment OPTION => VALUE, ... -Adds a new payment to a customers account. Takes a hash reference as parameter with the following keys: +Adds a new payment to a customers account. Takes a list of keys and values as +paramters with the following keys: =over 5 @@ -60,9 +61,10 @@ Amount paid =item _date - Option date for payment +=back + Example: my $result = FS::API->insert_payment( @@ -82,8 +84,6 @@ Example: print "paynum ". $result->{'paynum'}; } -=back - =cut #enter cash payment @@ -133,9 +133,10 @@ sub _by_phonenum { } -=item insert_credit +=item insert_credit OPTION => VALUE, ... -Adds a a credit to a customers account. Takes a hash reference as parameter with the following keys +Adds a a credit to a customers account. Takes a list of keys and values as +parameters with the following keys =over @@ -155,6 +156,8 @@ Amount of the credit The date the credit will be posted +=back + Example: my $result = FS::API->insert_credit( @@ -173,8 +176,6 @@ Example: print "crednum ". $result->{'crednum'}; } -=back - =cut #Enter credit @@ -206,9 +207,10 @@ sub insert_credit_phonenum { } -=item insert_refund +=item insert_refund OPTION => VALUE, ... -Adds a a credit to a customers account. Takes a hash reference as parameter with the following keys: custnum,payby,refund +Adds a a credit to a customers account. Takes a list of keys and values as +parmeters with the following keys: custnum, payby, refund Example: @@ -270,9 +272,10 @@ sub insert_refund_phonenum { # long-term: package changes? -=item new_customer +=item new_customer OPTION => VALUE, ... -Creates a new customer. Takes a hash reference as parameter with the following keys: +Creates a new customer. Takes a list of keys and values as parameters with the +following keys: =over 4 @@ -362,26 +365,6 @@ comma-separated list of email addresses for email invoices. The special value 'P postal_invoicing Set to 1 to enable postal invoicing -=item payby - -CARD, DCRD, CHEK, DCHK, LECB, BILL, COMP or PREPAY - -=item payinfo - -Card number for CARD/DCRD, account_number@aba_number for CHEK/DCHK, prepaid "pin" for PREPAY, purchase order number for BILL - -=item paycvv - -Credit card CVV2 number (1.5+ or 1.4.2 with CVV schema patch) - -=item paydate - -Expiration date for CARD/DCRD - -=item payname - -Exact name on credit card for CARD/DCRD, bank name for CHEK/DCHK - =item referral_custnum Referring customer number @@ -402,6 +385,7 @@ Agent specific customer number Referring customer number +=back =cut @@ -425,35 +409,39 @@ sub new_customer { $class->API_insert( %opt ); } -=back - =item update_customer -Updates an existing customer. Takes a hash reference as parameter with the foll$ +Updates an existing customer. Passing an empty value clears that field, while +NOT passing that key/value at all leaves it alone. Takes a list of keys and +values as parameters with the following keys: =over 4 =item secret -API Secret +API Secret (required) + +=item custnum + +Customer number (required) =item first -first name (required) +first name =item last -last name (required) +last name =item company Company name -=item address1 (required) +=item address1 Address line one -=item city (required) +=item city City @@ -461,11 +449,11 @@ City County -=item state (required) +=item state State -=item zip (required) +=item zip Zip or postal code @@ -491,42 +479,28 @@ Mobile number =item invoicing_list -comma-separated list of email addresses for email invoices. The special value '$ +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), postal_invoicing Set to 1 to enable postal invoicing -=item payby - -CARD, DCRD, CHEK, DCHK, LECB, BILL, COMP or PREPAY - -=item payinfo - -Card number for CARD/DCRD, account_number@aba_number for CHEK/DCHK, prepaid "pi$ - -=item paycvv - -Credit card CVV2 number (1.5+ or 1.4.2 with CVV schema patch) - -=item paydate - -Expiration date for CARD/DCRD - -=item payname - -Exact name on credit card for CARD/DCRD, bank name for CHEK/DCHK - =item referral_custnum Referring customer number =item salesnum + Sales person number =item agentnum Agent number +=back + =cut + sub update_customer { my( $class, %opt ) = @_; @@ -537,12 +511,10 @@ sub update_customer { FS::cust_main->API_update( %opt ); } -=back - - -=item customer_info +=item customer_info OPTION => VALUE, ... -Returns general customer information. Takes a hash reference as parameter with the following keys: custnum and API secret +Returns general customer information. Takes a list of keys and values as +parameters with the following keys: custnum, secret =cut @@ -560,9 +532,8 @@ sub customer_info { =item location_info -Returns location specific information for the customer. Takes a hash reference as parameter with the following keys: custnum,secret - -=back +Returns location specific information for the customer. Takes a list of keys +and values as paramters with the following keys: custnum, secret =cut @@ -586,6 +557,49 @@ sub location_info { return \%return; } +=item bill_now OPTION => VALUE, ... + +Bills a single customer now, in the same fashion as the "Bill now" link in the +UI. + +Returns a hash reference with a single key, 'error'. If there is an error, +the value contains the error, otherwise it is empty. Takes a list of keys and +values as parameters with the following keys: + +=over 4 + +=item secret + +API Secret (required) + +=item custnum + +Customer number (required) + +=back + +=cut + +sub bill_now { + my( $class, %opt ) = @_; + my $conf = new FS::Conf; + return { 'error' => 'Incorrect shared secret' } + unless $opt{secret} eq $conf->config('api_shared_secret'); + + my $cust_main = qsearchs('cust_main', { 'custnum' => $opt{custnum} }) + or return { 'error' => 'Unknown custnum' }; + + my $error = $cust_main->bill_and_collect( 'fatal' => 'return', + 'retry' => 1, + 'check_freq' =>'1d', + ); + + return { 'error' => $error, + }; + +} + + #Advertising sources?