Description
Gets the specified Customer's Greedy Transactions along with their details.
Parameters
Name | Data Type | Required / Optional | Description |
---|---|---|---|
auth-userid | Integer | Required | Authentication Parameter |
api-key | String | Required | Authentication Parameter |
customer-id | Integer | Required | Customer Id of the Customer whose Greedy Transactions are to be fetched |
HTTP Method
GET
Example Test URL Request
https://test.httpapi.com/api/billing/customer-greedy-transactions.xml?auth-userid=0&api-key=key&customer-id=0
Response
Returns a hash map of the Customer's Transactions containing the below details:
-
Transaction Id (customer_transaction.transid)
-
Transaction Date (customer_transaction.transactiondate)
-
Transaction Type (customer_transaction.type)
-
Transaction Description (customer_transaction.description)
-
Whether Transaction is Greedy (greedy)
-
Customer Id Associated with the Transaction (customer_transaction.customerid)
-
Selling Currency Symbol of the Parent Reseller (customer_transaction.sellingcurrencysymbol)
-
Transaction Amount in the Selling Currency (customer_transaction.sellingamount)
-
Unutilised Transaction Amount in the Selling Currency (customer_transaction.unutilisedsellingamount)
-
Accounting Currency Symbol of the Parent Reseller (customer_transaction.accountingcurrencysymbol)
-
Transaction Amount in the Accounting Currency (customer_transaction.accountingamount)
-
Unutilised Transaction Amount in the Accounting Currency (customer_transaction.unutilisedaccountingamount)
In case of any errors, a status key with value as ERROR alongwith an error message will be returned.