... you can lock it down to just the scopes you need.
void ZohoBooks.fn_SendZohoBooksInvoice(int p_OrderID)
{
v_OrderID = ifnull(input.p_OrderID,0).toLong();
/* *******************************************************************************
Function: ...
... tried sync contacts from Account record
for each r_Result in r_SearchResults.get("contacts")
{
if(!isnull(r_Result.get("contact_id")))
{
v_BooksCustomerID = r_Result.get("contact_id").toLong();
break;
}
}
}
}
if(v_BooksCustomerID ...
... key here to enable inventory tracking
m_CreateBooksItem.put("item_type","inventory");
//
// other less important values to include re purchase information
m_CreateBooksItem.put("product_type","goods");
m_CreateBooksItem.put("reorder_level",0);
m_CreateBooksItem.put("available_stock",v_QuantityAvailable.toLong());
m_CreateBooksItem.put("initial_stock",v_Quantity.toLong());
m_CreateBooksItem.put("initial_stock_rate",v_ItemPrice.toDecimal());
m_CreateBooksItem.put("inventory_account_id",m_Accounts.get("Inventor ...
What?
This is a not-so-quick article that queries an eBay order and creates the relevant ZohoInventory item, contact, sales order, package slip, shipment order, invoice, payment records...
Why? ...
What?
Following on from my article: ZohoCRM: Get All eBay Active Listings, this is how to get all the orders from a client's eBay.
Why?
Our use-case is a data migration from eBay to a fresh instance ...
What?
Another one of these articles talking about getting all the active product listings from eBay for a specific client.
Why?
Our use-case scenario here is that we want to get an inventory ...
... the Zoho Recruit Candidate ID
m_Create.put("Candidate_ID",v_CandidateZohoID.toLong());
//
// specify the client's own Candidate Ref
m_Create.put("Candidate Ref",v_CandidateRef);
// ...
... extract user ID
v_UserID = m_Webhook.get("user_info").get("id").toLong();
}
//
// if user ID was extracted sucessfully
if(v_UserID != 0)
{
//
// get user details (we need the profile)
r_UserDetails ...
What?
This is an article documenting how to parse the notification from eBay and using it to create an order in Shopify.
Why?
Previously, we would receive an eBay notification and create an ...
We use cookies to improve your experience on our website. By browsing this website, you agree to our use of cookies. Read more about our Privacy Policy.