最近搜索


没有最近搜索

Andrej Metelski's Avatar

Andrej Metelski

已加入2022年11月21日

·

最后活动2024年3月06日

关注

0

关注者

0

活动总数

6

投票

1

订阅

3

活动概览

的最新活动 Andrej Metelski

Andrej Metelski 创建了一个帖子,

帖子 Q&A - Help center and community

Hey fellow Zendeskers,

I wonder what the most common approach is for making changes to Guide themes when you need a customization. Do you make changes directly in the theme editor inside Zendesk? Or do you use a local development environment with Zendesk Apps Tools?

已于 2022年11月21日 编辑 · Andrej Metelski

0

关注者

2

投票

1

Comment


Andrej Metelski 进行了评论,

社区评论 Q&A - Help center and community

Hi Terry,

You can make an API request to the users/me.json endpoint.

fetch("/api/v2/users/me")
.then((data) => {
  return res = data.json();
})
.then((user) => {
  console.log(user.id)
});

查看评论 · 已于 2022年11月21日 发布 · Andrej Metelski

0

关注者

1

投票

0

评论