最近の検索


最近の検索はありません

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

コメント


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

コメント