Recent searches


No recent searches

Andrej Metelski's Avatar

Andrej Metelski

Joined Nov 21, 2022

·

Last activity Mar 06, 2024

Following

0

Followers

0

Total activity

6

Vote

1

Subscriptions

3

ACTIVITY OVERVIEW

Latest activity by Andrej Metelski

Andrej Metelski created a post,

Post 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?

Edited Nov 21, 2022 · Andrej Metelski

0

Followers

2

Votes

1

Comment


Andrej Metelski commented,

Community comment 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)
});

View comment · Posted Nov 21, 2022 · Andrej Metelski

0

Followers

1

Vote

0

Comments