Vor Kurzem aufgerufene Suchen
Keine vor kurzem aufgerufene Suchen

Andrej Metelski
Beigetreten 21. Nov. 2022
·
Letzte Aktivität 06. März 2024
Folge ich
0
Follower
0
Gesamtaktivitäten
6
Stimme
1
Abonnements
3
AKTIVITÄTSÜBERSICHT
BADGES
BEITRÄGE
POSTS
COMMUNITY-KOMMENTARE
BEITRAGSKOMMENTARE
AKTIVITÄTSÜBERSICHT
Neueste Aktivität von Andrej Metelski
Andrej Metelski hat einen Post erstellt
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?
Bearbeitet 21. Nov. 2022 · Andrej Metelski
0
Follower
2
Stimmen
1
Kommentar
Andrej Metelski hat einen Kommentar hinterlassen
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)
});
Kommentar anzeigen · Gepostet 21. Nov. 2022 · Andrej Metelski
0
Follower
1
Stimme
0
Kommentare