... get access token (you will need your own function here as documented in my article
v_AccessToken = standalone.fn_eBay_GetAccessToken();
//
v_TradingAPIVersion = 967;
v_Endpoint = "https://api.ebay.com/ws/api.dll";
//
// ...
... 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 ...
What?
This is an article documenting how to parse the notification from eBay and using it to create an order in Shopify.
Why?
Previously, we would receive an eBay notification and create an ...
... on the function that generates an access token from a refresh token:
string API.fn_eBayConnect_AccessToken()
{
b_SandboxMode = false;
v_Output = "";
if(b_SandboxMode)
{
r_Api = API_Integration[Connection_Name ...
... = invokeurl
[
url :v_EndPoint
type :POST
parameters:m_Payload
];
v_AccessToken = r_AuthToken.get("access_token");
Now you have an access token you can build your header and send requests:
m_Header ...
... 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 ...
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 ...
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.