# user_name => Required# first_name => Required# last_name => Not Required# email => Not Required# lets create some variables and store our user datauser_name="Test User Name"first_name="Test First Name"last_name="Test Last Name"email="testemail@gmail.com"# create customer with user_name, first_name and last_namenew_customer=ACTIVEWAVE.create_customer(user_name,first_name,last_name)putsnew_customer# create customer with user_name, first_name, last_name and emailnew_customer=ACTIVEWAVE.create_customer(user_name,first_name,last_name,email)putsnew_customer
# customer_id => Required# product_id => Required# lets create some variables and store our datacustomer_id="XXXXXXXXXXXXXXX"product_id="XXXXXXXXXXXXXXX"# create invoice with customer_id and product_idnew_invoice=ACTIVEWAVE.create_invoice(customer_id,product_id)putsnew_invoice
#All fields are required# lets create some variables and store our datadate=Date.todaycash_or_bank_or_asset_account_id="XXXXXXXX"income_account_id="XXXXXXXX"amount=500description="Description"# create income/sales with date and cash_or_bank_or_asset_account_id income_account_id amount descriptionnew_sales_record=ACTIVEWAVE.create_sales_record(date,cash_or_bank_or_asset_account_id,income_account_id,amount,description)putsnew_sales_record
#All fields are required# lets create some variables and store our datadate=Date.todaycash_or_bank_or_asset_account_id="XXXXXXXX"expense_account_id="XXXXXXXX"amount=500description="Description"# create expense/spending record with date and cash_or_bank_or_asset_account_id expense_account_id amount descriptionnew_sales_record=ACTIVEWAVE.create_sales_record(date,cash_or_bank_or_asset_account_id,expense_account_id,amount,description)putsnew_sales_record