Retrieving themes
Retrieve details of a specific theme from a particular tenant.
Procedure
- In a REST client platform, add the authentication details of the tenant from where you
want to retrieve a specific theme.
//In case of Instance API key Headers: { "x-instance-api-key": "instance_api_key" } // In case of MCSP or ISV token Headers: { "Authorization": "mcsp_or_isv_token" } - Make a GET request at the URL of the project.
URL syntax:
<domain>/apis/v1/rest/themes/:theme_uidIn this URL request, /:theme_uid is the ID of the theme, the details you want to retrieve.
Method: GET
If the request is successful, you receive the response code for success.
{ output: { "name": "<theme_name>", "uid": "<theme_uid>", "active": <true || false>, } }