Transaction Types
|
TransType Value |
Action |
WebService |
| C:INSERT |
Create New Company |
w_company.asmx |
| C:UPDATE |
Update Company Information |
w_company.asmx |
| C:RETRIEVE |
Retrieve Company Information |
w_company.asmx |
| C:GETLIST |
Retrieve a List of Companies |
w_company.asmx |
| IR:CREATE |
Create Invoice-Receipt (optionally e-mail invoice) |
w_invoicereceipt.asmx |
| IR:CreateWithPaymentMethods |
Create Invoice-Receipt With Payment Methods |
w_invoicereceipt.asmx |
| IR:SEND |
E-mail Invoice-Receipt |
w_invoicereceipt.asmx |
| I:CREATE |
Create Invoice (optionally e-mail invoice) |
w_invoice.asmx |
| I:SEND |
E-mail Invoice |
w_invoice.asmx |
| ID:CREATE |
Create Invoice Deal (optionally e-mail invoice) |
w_invoicedeal.asmx |
| ID:SEND |
E-mail Invoice Deal |
w_invoicedeal.asmx |
| IC:CREATE |
Create Invoice Credit (optionally e-mail invoice) |
w_invoicecredit.asmx |
| IC:SEND |
E-mail Invoice Credit |
w_invoicecredit.asmx |
| R:CREATE |
Create Receipt - payment marked as cash |
w_receipt.asmx |
| R:CreateWithPaymentMethods |
Create Receipt - With Payment Methods |
w_receipt.asmx |
| R:SEND |
E-mail Receipt |
w_receipt.asmx |
| ITM:CREATE |
Create Item |
w_items.asmx |
| ITM:Delete |
Delete Item |
w_items.asmx |
| ITM:Find |
Search for Item by any part of Item Description or
Item Code
|
w_items.asmx |
| CUR:GetList |
List of currencies and their codes
|
w_currency.asmx |
Multiple actions can be made when TransType is set to multiple values which are
seperated by the "|" sign. For example:
-
Create an invoice-receipt: TransType="IR:CREATE"
-
Create new company and then create an invoice-receipt: TransType="C:INSERT|IR:CREATE"
-
Update company information and retrieve it: TransType="C:UPDATE|C:RETRIEVE"
-
Retrieve company information: TransType="C:RETRIEVE"
-
Email Invoice-Receipt: TransType="IR:SEND"
|