Hi there, how can we see what ID’s for themes are?...
# gd-beginners
s
Hi there, how can we see what ID’s for themes are? I’m trying to specify a theme for a workspace, but I need to know the theme ID for it, can’t find this anywhere.
m
Hi Sameer, as mentioned in our documentation here: https://www.gooddata.com/docs/cloud/customize-appearance/create-custom-themes/#create-themes List all the themes in your organization. GET:
$HOST_URL/api/v1/entities/themes?sort=name&size=250&page=0
Select the theme that you want to use and copy its id (identifier):
"id": "{settingsId}"
= Workspace ID
"id": "{themeId}"
= Theme ID
s
thank you