Assuming integration is required, the following 29 results were found.
This is a quick article to help anyone encountering this gotcha: I have an integration field, if someone changes it, I want to save the value to the record immediately. Why? If you try to update an integration field via deluge with another integration...
details. This means the app needs to be able to sync all of its products, customers, and orders with Shopify as a 2-way integration as the Zoho app needs information from additional apps installed on the Shopify store. Why upgrade to the latest version...
1 as well. Zoho Issue: If you can, try to mark it as inactive, and you should get the error: Accounts associated with Integration cannot be marked Inactive Summary In this case, the client’s bank account had previously been syncing correctly. After...
What? A quick article on some code added to a button in ZohoBooks off the invoice module to initiate your Stripe terminal to take a payment. Why? Just to make it easy on the staff at a counter or on the phone. They bring up the invoie in ZohoBooks,...
token: string API.fn_eBayConnect_AccessToken() { b_SandboxMode = false; v_Output = ""; if(b_SandboxMode) { r_Api = API_Integration[Connection_Name == "eBay API (Sandbox)"]; //info "Sandbox Mode"; } else { r_Api = API_Integration[Connection_Name == "eBay...
Reduction (Removed unnecessary debug notes) - Enhancement: Code Optimization - Critical: Fix for combination of 3rd-Party Integration and User Access Levels - Note: Only suitable for Latin language sets. - Date Uploaded: Thu, 16th May 2013 2.1.1 -...
to generate the radar chart. ZohoSurveys - Individual Responses Query (if using CRM to send surveys) If using the CRM integration, the Survey will already be associated with an email address. If not, then see the 2nd snippet of code. SELECT...
// // app specific (retrieving from a ZohoCreator record that stores all these credentials) r_ShopifyAPI = API_Integration[Connection_Name == "Shopify API"]; // // client id from the shopify admin and registering a custom app // eg....
a Xero access token which I documented in another article - it's behind a userwall because I usually charge for my Xero integration to Zoho CRM but user registration is free; you need to click on "Account" at the top of my website then login, then...
are how to configure it to match yours or your clients brief. Style & Colors: Articles & Content: Words & Link: 3rd-Party Integration: Problems?:
created in Shopify. See my article: Zoho Deluge: Push Item to Shopify API if you want information on setting up an integration from Zoho Creator to Shopify API. Why? In this example, we want a webhook that whenever an order is made in Shopify, it tells...
} else { //... code to create new record r_NewRecord = insert into [ = = = ]; } Done: Additional Remember that an integration field on the interface is returned as a string and needs to be converted to a number to be assigned, eg: r_Details = myForm[ID...
See my other articles for integrating Shopify API with Zoho Creator: Zoho Deluge - Push Item to Shopify Zoho Creator - Integration with Shopify Checkout Storefront API Zoho Creator - Receive JSON via a Shopify Webhook
*/ v_Page = ifnull(p_Page,1); v_PerPage = ifnull(p_PerPage,200); m_Output = Map(); r_Api = API_Integration[Connection_Name == "eBay API (Production)"]; if(r_Api.count() > 0) { v_AccessToken = thisapp.API.fn_eBayConnect_AccessToken(); v_TradingAPIVersion...
m_CreateRecord = Map(); m_CreateRecord.put("product",m_Product); // // send request to Shopify API r_ShopifyConfig = API_Integration[Connection_Name == "Shopify API"]; if(r_ShopifyConfig.count() > 0) { v_ShopifyAPIVersion =...
*/ v_Found = 0; v_Updated = 0; v_Page = 1; v_PerPage = 10; m_Output = Map(); r_Api = API_Integration[Connection_Name == "eBay API (Production)"]; if(r_Api.count() > 0) { v_AccessToken = thisapp.API.fn_eBayConnect_AccessToken(); v_TradingAPIVersion =...
any other article in the whole world wide web that had a working solution. My use-case here is that I have built an eBay integration between Zoho Inventory and... eBay. Out-of-the-box, and at-time-of-print, Zoho Inventory only syncs eBay one way, in...
article on how to upload an image to the product/item listing in Zoho Inventory. Why? We're enhancing the out-of-the-box integration from eBay to Zoho Inventory bespoke for a customer. We want the photo on eBay to be downloaded and uploaded to the Zoho...
Why? I'm storing this here as a reference and taking the bits that I need for the various clients that request an eBay integration. This is a comprehensive snippet which does the whole lot. How? Using the method of "mega-functions", here is the code...