Difference between revisions of "MOR API invoices get"

From Kolmisoft Wiki
Jump to navigationJump to search
 
(14 intermediate revisions by 6 users not shown)
Line 1: Line 1:
[[MOR API]]
=Description=
[[MOR API]] Retrieves a list of invoices in the selected time period.


Retrieves a list of invoices in the selected time period.
If a user has 'admin' rights, he will get '''ALL''' invoices from the selected period. If a user has 'accountant' rights and can see only assigned users, he will get only assigned users invoices from the selected period. If user has 'user' rights, he will get only '''HIS''' invoices from the selected period.
<br><br>


==Request==
=Usage=


If a user has 'admin' rights, he will get '''ALL''' invoices from the selected period. If user has 'user' rights, he will get only '''HIS''' invoices from the selected period.
* From '''MOR X4''' call: '''/api/invoices_get'''
* For Backwards-compatibility old name 'invoices' is also usable. Call: '''/api/invoices'''
* Methods: POST, GET(if allowed, not recomended)
<br><br>
===Parametres===


HTML POST: http://<SERVER IP>/billing/api/invoices?u=username&p=password&from=1188604800&till=1191196799&lang=en
* u - username username of user which can view invoices. '''Required'''.
 
* from/till - time period for invoices in [http://en.wikipedia.org/wiki/Unix_time Unix Epoch Time] format. Invoice's '''period start''' should be >= '''from''' and '''period end''' <= '''till'''.
Here:
* '''from/till''' - time period for invoices in [http://en.wikipedia.org/wiki/Unix_time Unix Epoch Time] format. Invoice's '''period start''' should be >= '''from''' and '''period end''' <= '''till'''.
** http://www.epochconverter.com/ can help to convert time for testing.
** http://www.epochconverter.com/ can help to convert time for testing.
* '''lang''' - choose the language in which you want to get invoice details (mainly 'Calls').
* lang - choose the language in which you want to get invoice details (mainly 'Calls').
<br><br>
===Request===


==Example result==
HTML POST: http://<SERVER IP>/billing/api/invoices_get?u=username&from=1188604800&till=1191196799&lang=en
<br><br>
===Returns===


  <Invoices from="2007-09-01" till="2007-10-01">
'''Success'''
  <Invoice agreementnumber="0000000000" user_id="0" clientid="240887380">
  <Invoices from="2019-05-01" till="2019-05-31">
    <Product>
<Invoice user_id="2" agreementnumber="" clientid="" number="INV1905011">
      <Name>Monthly fee - test</Name>
<id>5</id>
      <Quantity></Quantity>
<paid>0</paid>
      <Price>10.0</Price>
<Product>
      <Date_added>2012.02.02</Date_added>
<Name>Test_periodic_service - 1</Name>
      <Issue_date>2012.02.02</Issue_date>
<Quantity>1</Quantity>
    </Product>
<Price>10.0000</Price>
  </Invoice>
<Discount>0.0000</Discount>
  <Invoice agreementnumber="0000000000" user_id="0" clientid="240887380">
<Sum>10.0000</Sum>
    <Product>
<Date_added/>
      <Name>Calls</Name>
<Issue_date>2019-06-27</Issue_date>
      <Quantity>65</Quantity>
<Time/>
      <Price>112.3324</Price>
<Service_id>1</Service_id>
      <Issue_date>2010.01.01</Issue_date>
<Prefix></Prefix>
    </Product>
</Product>
  </Invoice>
<Product>
<Name>Test_periodic_service - 2</Name>
<Quantity>1</Quantity>
<Price>10.0000</Price>
<Discount>2.0000</Discount>
<Sum>8.0000</Sum>
<Date_added/>
<Issue_date>2019-06-27</Issue_date>
<Time/>
<Service_id>2</Service_id>
<Prefix></Prefix>
</Product>
<Total_time/>
</Invoice>
  </Invoices>
  </Invoices>
----
'''Errors'''


==Errors==
<?xml version="1.0" encoding="UTF-8"?>
<status>
  <error>Incorrect hash</error>
</status>


  <Error>user not found</Error>
  <Error>user not found</Error>


  <Error>no invoices found</Error>
  <Error>no invoices found</Error>
<br><br>
=See also=
* [[MOR API]]

Latest revision as of 11:08, 20 September 2022

Description

MOR API Retrieves a list of invoices in the selected time period.

If a user has 'admin' rights, he will get ALL invoices from the selected period. If a user has 'accountant' rights and can see only assigned users, he will get only assigned users invoices from the selected period. If user has 'user' rights, he will get only HIS invoices from the selected period.

Usage

  • From MOR X4 call: /api/invoices_get
  • For Backwards-compatibility old name 'invoices' is also usable. Call: /api/invoices
  • Methods: POST, GET(if allowed, not recomended)



Parametres

  • u - username username of user which can view invoices. Required.
  • from/till - time period for invoices in Unix Epoch Time format. Invoice's period start should be >= from and period end <= till.
  • lang - choose the language in which you want to get invoice details (mainly 'Calls').



Request

HTML POST: http://<SERVER IP>/billing/api/invoices_get?u=username&from=1188604800&till=1191196799&lang=en



Returns

Success

<Invoices from="2019-05-01" till="2019-05-31">
<Invoice user_id="2" agreementnumber="" clientid="" number="INV1905011">
<id>5</id>
<paid>0</paid>
<Product>
<Name>Test_periodic_service - 1</Name>
<Quantity>1</Quantity>
<Price>10.0000</Price>
<Discount>0.0000</Discount>
<Sum>10.0000</Sum>
<Date_added/>
<Issue_date>2019-06-27</Issue_date>

Errors

<?xml version="1.0" encoding="UTF-8"?>
<status>
  <error>Incorrect hash</error>
</status>
<Error>user not found</Error>
<Error>no invoices found</Error>



See also