최근 검색


최근 검색 없음

Jose Smith's Avatar

Jose Smith

가입한 날짜: 2021년 10월 16일

·

마지막 활동: 2021년 10월 16일

팔로잉

0

팔로워

0

총 활동 수

2

투표 수

0

가입 플랜

1

활동 개요

님의 최근 활동 Jose Smith

Jose Smith님이 에 게시물을 만듦

게시물 Developer - Zendesk Apps Framework (ZAF)

Hi,

In modal.html, create a button. In the first function getData(), I can retrieve the sunshine object ID dynamically. Is there a way to also retrieve the ticket.requester.id and the sunshine.object.id in the buttonOrder() function? I bold these two variables in the function.

Any guidance is appreciate, thanks!

 



var client = ZAFClient.init();
client.on('app.registered', init);

function init(){
var hashes = window.location.hash;
var param = hashes.split('&');
id = param[0].replace('#','');
requester_id = param[1];
getData();
};

//Function - Get data from custom objects
function getData(){
//Get object's attributes
var objectSettings = {"url": "/api/sunshine/objects/records/" + id};
client.request(objectSettings).then(function(response){

//Loop through object's attributes and create list (see function below)
createAttributeList(response);

//Get events related to current object, loop through and create list (see function below)
createEventList(response);
}).catch(function(error){

//Display error message (see function below)
showCoError(error);
});

function buttonOrder() {

let options = {

url: 'https://d3v-test.zendesk.com/api/v2/users/'+ ticket.requester.id + '.json',
type: 'PUT',
dataType: 'json',
contentType: 'application/json',
cors: true,
data: JSON.stringify({
"user": {"order_id": sunshine.object.id}
})
};

2021년 10월 14일에 게시됨 · Jose Smith

2

팔로워

3

투표 수

1

댓글