... 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 ...
...
I'm going to show you the code first of how to parse the eBay Transaction data and then the code to create a Shopify Order:
Parse an eBay Transaction Notification (XML)
x_ResponseBody = input.Payload.getJSON("body");
v_MainNodeName ...
... REST API function that will forward the payload data to Zoho Creator (Yes you will need CRM version Enterprise or Zoho One [that supports functions] for this process).
So first off, here's a reminder ...
... > blank
Name the form, I'm going to call mine Shopify Webhook Payloads
Drag some fields onto the form, this is what I did:
Event Type [Drop Down: with options "Order Update", "Inventory Update", "Product ...
... e :POST
parameters: m_CreateQuote
connection:"myconnection"
];
when you should have done this (send the payload as the value to the key "data"):
l_RecordsToSend = List();
l_RecordsToSend.add(m_CreateQuote);
m_Da ...
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! ...
... If you use POST then this adds/creates a record and if it already exists you will get a . Documentation advises that the payload is empty which is not true in my case. This is my invokeUrl:
v_DataEndpoint ...
... the payload here is submitted through URL parameters:
v_AccessToken = "123abc456def789abc123def456abc";
v_Criteria = "ID=1234567890123456789";
v_EndPoint = "https://creator.zoho.eu/api/myAdminAccount/json/myApp/form/myForm/record/update/"
v_EndPoint ...
... Build token header. Specify algorithm
$api['jwt']['header']['alg'] = 'RS256';
$api['jwt']['header']['typ'] = 'JWT';
The JWT payload (or claim set as Google seems to refer to it ...
What?
This is an article documenting how to access ZohoCRM with API v2 using PHP and cURL. The first few functions are to manage OAuth v2 and generate the refresh and access tokens. The second snippet ...
Applies to:
TravelPort Universal API
PHP 4 or 5
cURL
What?
An article on how to resolve errors and setup a standard ping request using the TravelPort Universal API. This is to be achieved using ...
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.