... 10 columns called "Untitled-1". I enter some labels in the first column. These will be keys later on to link my report to so keep them short without any special characters. I then saved this table with ...
... DTSTART in RRULE keys. Specify the mandatory keys.
Error: INVALID_RRULE: You have specified an incorrect value for FREQ, INTERVAL, or BYMONTHDAY, BYDAY, BYMONTH, BYSETPOS. Specify the correct value fo ...
... 100 product categories so we'll just to page 1 but specifying 100 per page as the default is only 10.
//
// API keys (these are made up so enter your own in these 2 lines below
v_MyWordPressSiteUrl ...
... s build a ZohoCreator subform
c_UsualShift = Collection();
for each v_WorkDay in m_ShiftBuildUp.keys()
{
info v_WorkDay;
//
// format the opening time and closing time
v_StartTi ...
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 ...
...
Update November 2024
Code to get this working with GPT 4o Mini:
// requires a paid account: https://platform.openai.com/api-keys
v_ChatGPT_ServiceAccount_Key = "sk-XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX";
//
m_Header ...
... edit the code for the "Message Handler"
Get an OpenAI API Key
Login to OpenAI
Browse to https://platform.openai.com/account/api-keys
Click on "Create a new key"
Copy & paste into a text editor ...
... the tab and went to the SSL/TLS page in CPanel and clicked on "Generate, view, upload, or delete your private keys".
Clicked on "Edit" alongside the domain name I wanted to install this SSL for.
Copied ...
... 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 ...
... replacements
m_HtmlEntity = Map();
m_HtmlEntity.put("&","&");
m_HtmlEntity.put(" "," ");
//
// loop through each of the above replacing where found
for each v_HtmlKey in m_HtmlEntity.keys()
{
v_StringToDecode ...
... field and the Session ID fields that we didn't use in my previous article but are going to use now. You get the Dev ID from your application keys page:
For the next steps, it's best if you create ...
... - USE ARROW KEYS OR MOUSE):
As you can see from the screenshot above, there are modules concatenated with one module an "X" and then the name of the linked module. A module called "Opportunities_X_Products" ...
... code is doing, let me give an overview:
Build up a map with sample data (you won't need to this, use your own data, this one is for this demonstration only)
Initialize a list to hold the keys which we ...
... = l_Data.toString();
info v_Data;
// yields
// ,
Some formatting and a lot of replaceAll:
l_Keys = List();
l_Keys = v_Data.toMap().keys();
v_DataHtml = v_Data.replaceAll("},{", true);
v_DataHtml ...
... leave in a day.
c_Response = Collection();
for each d in dd.keys()
{
c_Params= Collection();
c_Params.insert("date":d);
c_Params.insert("type":"3");
c_Params.insert("userId":empid);
...
...
zet init
You will be given a list of Zoho services, use the arrow up/down keys to select “Zoho Creator” and press the return/enter key.
Give the project a name: eg. “joels_awesome_app” (without ...
... = ifnull(r_Coql.get("data").get(0).get("id"),0);
}
Note that for the above, if there are no matching records, r_Coql will simply return an empty string. Hence the check for isNull on the keys info and ...
What?
A quick article on converting a Map (associative array with keys and values) into a URL string to pass as URL parameters.
How?
Let's first define a map:
m_Payload = Map();
m_Payload.put("client_id","my-unique-client-id");
m_Payload.put("redirect_uri","https://www.joellipman.com");
m_Payload.put("response_type","code");
m_Payload.put("scope","my_api_scopes");
m_Payload.put("prompt","login");
Great! ...
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.