1
我正在做Salesforce-Netsuite Integration.I需要在計劃腳本中調用Sales force Rest API。如何執行此操作?誰能幫我?如何從套件腳本調用銷售人員Rest API
我正在做Salesforce-Netsuite Integration.I需要在計劃腳本中調用Sales force Rest API。如何執行此操作?誰能幫我?如何從套件腳本調用銷售人員Rest API
我不確定Salesforce REST API的URL是什麼(我個人使用JitterBit進行集成,所以我不必經常監視任何事情,我可以度假);)。這就是說,在NetSuite中,您可以使用https/http模塊調用任何URL。下面看一個簡單的例子。
require(['N/https'],function(https){
function sendData(){
var header=[];
header['Content-Type']='application/json';
var postData={"some data":data};
var apiURL='SF_URL'
try{
var response=https.put({
url:apiURL,
headers:header,
body:postData
});
log.debug('response',JSON.stringify(response));
log.debug('response.body',JSON.stringify(response.body));
}catch(er02){
log.error('ERROR',JSON.stringify(er02));
}
}
sendData();
});