... -
Outputs: -
Date Created: 2021-09-24 (oel Lipman)
- Initial release
Date Modified: 2024-05-21 (Joel Lipman)
- Change of API domain from https://books.zoho.com to https://www.zohoapis.com/books
******************************************************************************* ...
... however is that it is connected to the Internet unlike ChatGPT which only has information up to 2021.
How?
The basics of setting this up would be to setup a bot in ZohoCliq and then to edit either ...
... need the offset so that when a user clicks on the #9 entry, the system will know this is March 9th 2022 and not June 9th 2021... To do this, we have 2 date fields which will be hidden to the user but ...
... = zoho.crm.getRecordById("Calls",123456789012345678);
info r_CallDetails;
//
// system/application is set to EST (America/New_York)
v_SystemCallTime = '2021-11-19 11:12:34';
//
// manual setting to ...
... the .addDay(), check none of these are a Sunday, and move the next few days along:
thisDate = '2021-10-30';
v_Today = thisDate;
v_Tomorrow = v_Today.addDay(1);
v_NextDay = v_Today.addDay(2);
if(v_Today.getDayOfWeek()==1)
{
v_Today ...
... '}'
-X POST "https://your-development-store.myshopify.com/admin/api/2021-10/products/9876543210987/images.json" \
-H "X-Shopify-Access-Token: "
Yields something like the following response:
{
...
... up books org id but enter your own
v_BooksOrgID=20210924095;
//
// get currencies
m_Currencies = Map();
r_Currencies = invokeurl
[
url :"https://books.zoho.eu/api/v3/settings/currencies?organization_id=" ...
... the following request to create a Sales Order in Zoho Books would be enough:
{
"date": "2021-09-08",
"zcrm_potential_id": "123456789012345678",
"currency_code": "GBP",
"reference_number": "Salespersons ...
... correction: I want to specify a from datetime
v_NowTime = '2021-09-21 21:27:15';
//
// now specify a to datetime (we're doing a working day so we add 1 business day)
v_NextTime = zoho.currentdate.addBusinessDay(1).toString("yyyy-MM-dd ...
... + v_CreatorTime.toString("Z").subString(3);
info v_CrmTime;
// yields 2021-09-10T12:49:31-07:00
and vice-versa
CRM to Creator
Depends on the format of the datetime in your Creator field but standard ...
... 1, 200, "Year_Month:equals:2021-06")
{
v_ThisEventTime = r_Event.get("Event_Time");
v_ThisEventNote = r_Event.get("Event_Details");
//
// now lets add double-quotes for Excel in case the event contains ...
... backend code, Zoho refer to Issues as "Bugs".
Why?
At time of this article (Apr-2021), we could not find a working example that could allow us to do this. I have provided some links at the end of ...
What?
This code snippet took me a while to do and the documentation is flaky so I thought I'd make a note here just in case I need to refer to it again.
Why?
I want to modify a picklist and fill ...
... November, 2018
Method #6:
The previous methods are inconsistent as it depends on the date format of the system. Instead (update 2021), I now use the following:
v_GivenDate = '2021-09-21';
m_Ordinals ...
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.