What?
A sorta quick article to note how I can generate refresh tokens and access tokens using Zoho Deluge code (so within Zoho Creator, CRM or Books) without XML calls.
Why?
I find myself using ...
... to view taxes and chart of accounts
Setup a connection called "joel_inventory" that has the necessary scopes to do everything under the sun
Setup a function that generates an access token of the Trading ...
... && v_Message!="Ask ChatGPT")
{
//
// Need to add your own OpenAI token here
v_Token = "sk-XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX";
//
// build header of request
m_Header = Map();
m_Header.put("Authorization","Bearer ...
... going into how to generate an access token / connection from Zoho to eBay, that is documented in my article: Zoho Creator: Push to eBay Listings
The megafunction
So I'm going to call this function ...
... function too often either for debugging/monitoring purposes but it's easier to use an access token then getting the OAuth access codes from the client.
How?
I'm going to split this into 2 code snippets ...
... contains a question mark, send it to OpenAI
if(v_Message.contains("?"))
{
v_Question = v_Message;
//
// Need to add your own OpenAI token here
v_Token = "sk-abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
//
// ...
... generator) which the bot can break down into "tokens" and then match with its training data to generate the image.
Quick recap on how to first start using the MidJourney Bot
Signup to Discord.com ...
... to the Deal record.
How?
The following is the process from registering the app to call on the full API (grant code > refresh token > access token) and then the code to attach the document to the ...
... Another REST API CRM function which generates an eBay Access Token for me
r_Response = getUrl("https://www.zohoapis.eu/crm/v2/functions/fn_ebay_getaccesstoken/actions/execute?auth_type=apikey&zapikey=1003.");
if(!isnull(r_Response.toMap().get("details")))
{
if(!isnull(r_Response.toMap().get("details").get("output")))
{
v_AccessToke ...
... ID from Shopify.
How?
The below details on how we set up an access token in Shopify using the new process.
Preparation:
You don't have to do this, but I store all the keys in a Zoho Creator ...
... XML of a GetItemTransactions request to eBay.
How?
You'll need an access token for eBay which I documented on how you can generate one in my article: Zoho Creator: Push to eBay Listings. Then you ...
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 ...
... *******************************************************************************
// Generate your access token to connect to Xero and query Xero records
// See my article: https://www.joellipman.com/articles/crm/zoho/zoho-deluge-sync-to-xero-api.html
//
v_TenantID ...
... need to follow these steps to get the credentials:
Login to your Twilio console
On the dashboard, note the ACCOUNT SID and AUTH TOKEN
In the side menu, expand Phone Numbers > Manage > Active numbers ...
... Map datatype.
How?
I'm not going to go into detail on how I create an access token to query the eBay Trading API as you can read this in my article: Joellipman: Zoho Creator: Push to eBay Listings. ...
... on a Fixed Price item.
How?
So first of all, you'll need an access token: please visit my article and read the first part on how to get a valid Access Token for the rest of these steps. Once we ...
... API v1 is deprecated (so no authtokens) and API OAuth2.0 is in full swing... we're still going to cheat.
How?
1,2,3 steps really. First we're going to set up a Creator form to receive the JSON. ...
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.