Configuration
Comprehensive instructions on configuring files and utilizing export functions.
Prior experience as a developer or basic programming skills are recommended to effectively navigate this section of the documentation.
1. Banking Society Account Exports
These exports allow developers to retrieve, set, add, and remove money from a society account in crm-banking.
Get Society Account Balance
Description: Returns the current balance of the specified society account.
Parameters:
crm_name
(string) – The name of the society account.
Returns: (number) – The balance of the society account.
Set Society Account Balance
Description: Sets the balance of the specified society account to a fixed amount.
Parameters:
crm_name
(string) – The name of the society account.crm_amount
(number) – The new balance to set.
Add Money to Society Account
Description: Adds money to the specified society account.
Parameters:
crm_name
(string) – The name of the society account.crm_amount
(number) – The amount to add.
Remove Money from Society Account
Description: Removes money from the specified society account.
Parameters:
crm_name
(string) – The name of the society account.crm_amount
(number) – The amount to remove.
Last updated