... than 1 second
m_Payload = crmAPIRequest.toMap();
m_Blank = Map();
//
// you created an app that generated a client ID and a client secret and resulted in an access token
// the client secret used ...
What?
This is a not-so-quick article that queries an eBay order and creates the relevant ZohoInventory item, contact, sales order, package slip, shipment order, invoice, payment records...
Why? ...
... 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 ...
... = 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 ...
... be applied
Solution: I have to convert the node into a map:
info m_Response.get("item").toMap().get("item_id");
// yields: 123456789012345678
Problem: Inserting a date time string into a date ...
...
{
info r_UserDetails.get("id");
}
List CRM Users (ActiveUsers) from Creator or other Zoho App
Note the use of .toMap() required for other apps to read this JSON string response:
l_Users= ...
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.