... create the task in CRM
r_NewResp = zoho.crm.createRecord("Tasks",m_NewTask, m_Blank, "systemcrm");
//
// output response of task creation from CRM
info r_NewResp;
Step 2: Setup workflow to escalate ...
... = zoho.creator.createRecord("myOwnerName","myAppName","myFormName",m_CreateRecord,m_Blank,"myCreatorConnection");
//
// build the hash based on the payload body
v_Data = ifnull(m_Payload.get("body"),"");
v_VerifyHash ...
... ADDRESS ON QUOTE/ESTIMATE ----------------------
// if quote address is not blank, then push this to estimate
if(v_BooksEstimateID != 0)
{
if(!isNull(r_QuoteDetails.get("Billing_Street")))
{
m_BooksBillingAddres ...
... / if the message is not blank, send it to OpenAI
if(!isBlank(v_Message))
{
v_Question = v_Message;
//
// Need to add openAI token here
v_Token = "sk-abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
//
...
... = zoho.crm.searchRecords("Accounts","Account_Name:equals:" + v_SchoolName,1,10,m_Blank,"zcrm");
for each r_School in l_SchoolSearch
{
// check no search error and valid records are returned
if(!isnull(r_School.get("id")))
{
// ...
... / return response
return m_Output;
Click "Save" and Done!
Yields:
Additional Note(s):
If the user's profile is blank, the rule will not apply to them.
l_Disallowed = List();
l_Disallowed.add("Joel");
if(l_Disallowed.contains(""))
{
in ...
... = zoho.creator.createRecord(v_AppOwner,v_AppName,v_FormName,m_CreateRecord,m_Blank,"joels_connector");
/*
// Email yourself as a test but remember to remove this before going Live.
sendmail
[
fro ...
... ] = '/access_token.dat';
2b. Specify the impersonator
Now for testing purposes you should leave this next variable as an empty string. If you leave this blank, the script will run throu ...
...
IIF your result row count, if it's zero, just display blank, else, do the rest of the query. Blank out the textbox basically (execution time is kinda irrelevant when you get 0 matches)
We went with ...
The Issue
You have a PHP page which generates a HTML form. When the user submits the form, you want the same PHP page to process the data.
Solution
I've seen a lot of people write CGI requests but ...
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.