Back to Collection Items
#include <C_CkHttpW.h>
#include <C_CkStringBuilderW.h>
#include <C_CkJsonObjectW.h>
void ChilkatSample(void)
{
HCkHttpW http;
BOOL success;
HCkStringBuilderW sbResponseBody;
HCkJsonObjectW jResp;
int respStatusCode;
const wchar_t *brandColor;
const wchar_t *LargeUrl;
const wchar_t *MediumUrl;
const wchar_t *SmallUrl;
const wchar_t *FullSizeUrl;
const wchar_t *defaultGroupImageLargeUrl;
const wchar_t *defaultGroupImageMediumUrl;
const wchar_t *defaultGroupImageSmallUrl;
const wchar_t *defaultPageBannerFullSizeUrl;
const wchar_t *defaultUserBannerFullSizeUrl;
const wchar_t *defaultUserImageLargeUrl;
const wchar_t *defaultUserImageMediumUrl;
const wchar_t *defaultUserImageSmallUrl;
const wchar_t *density;
const wchar_t *headerColor;
const wchar_t *linkColor;
const wchar_t *pageColor;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http = CkHttpW_Create();
// Adds the "Authorization: Bearer <access_token>" header.
CkHttpW_putAuthToken(http,L"<access_token>");
sbResponseBody = CkStringBuilderW_Create();
success = CkHttpW_QuickGetSb(http,L"https://domain.com/services/data/v{{version}}/ui-api/themes/active",sbResponseBody);
if (success == FALSE) {
wprintf(L"%s\n",CkHttpW_lastErrorText(http));
CkHttpW_Dispose(http);
CkStringBuilderW_Dispose(sbResponseBody);
return;
}
jResp = CkJsonObjectW_Create();
CkJsonObjectW_LoadSb(jResp,sbResponseBody);
CkJsonObjectW_putEmitCompact(jResp,FALSE);
wprintf(L"Response Body:\n");
wprintf(L"%s\n",CkJsonObjectW_emit(jResp));
respStatusCode = CkHttpW_getLastStatus(http);
wprintf(L"Response Status Code = %d\n",respStatusCode);
if (respStatusCode >= 400) {
wprintf(L"Response Header:\n");
wprintf(L"%s\n",CkHttpW_lastHeader(http));
wprintf(L"Failed.\n");
CkHttpW_Dispose(http);
CkStringBuilderW_Dispose(sbResponseBody);
CkJsonObjectW_Dispose(jResp);
return;
}
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// {
// "brandColor": "#0176D3",
// "brandImage": {
// "largeUrl": "/_slds/images/themes/lightning_blue/lightning_blue_logo_3x.png",
// "mediumUrl": "/_slds/images/themes/lightning_blue/lightning_blue_logo_2x.png",
// "smallUrl": "/_slds/images/themes/lightning_blue/lightning_blue_logo_1x.png"
// },
// "defaultGroupBanner": {
// "fullSizeUrl": "/_slds/images/themes/lightning_blue/lightning_blue_group.png"
// },
// "defaultGroupImage": {
// "largeUrl": "/_slds/images/themes/lightning_blue/lightning_blue_group_icon_200.png",
// "mediumUrl": "/_slds/images/themes/lightning_blue/lightning_blue_group_icon_160.png",
// "smallUrl": "/_slds/images/themes/lightning_blue/lightning_blue_group_icon_96.png"
// },
// "defaultPageBanner": {
// "fullSizeUrl": "/_slds/images/themes/lightning_blue/lightning_blue_background.png"
// },
// "defaultUserBanner": {
// "fullSizeUrl": "/_slds/images/themes/lightning_blue/lightning_blue_profile.png"
// },
// "defaultUserImage": {
// "largeUrl": "/_slds/images/themes/lightning_blue/lightning_blue_profile_avatar_200.png",
// "mediumUrl": "/_slds/images/themes/lightning_blue/lightning_blue_profile_avatar_160.png",
// "smallUrl": "/_slds/images/themes/lightning_blue/lightning_blue_profile_avatar_96.png"
// },
// "density": "ViewOne",
// "headerColor": "#FFFFFF",
// "linkColor": "#0176D3",
// "pageColor": "#B0C4DF"
// }
// Sample code for parsing the JSON response...
// Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code
// Chilkat functions returning "const char *" return a pointer to temporary internal memory owned and managed by Chilkat.
brandColor = CkJsonObjectW_stringOf(jResp,L"brandColor");
LargeUrl = CkJsonObjectW_stringOf(jResp,L"brandImage.largeUrl");
MediumUrl = CkJsonObjectW_stringOf(jResp,L"brandImage.mediumUrl");
SmallUrl = CkJsonObjectW_stringOf(jResp,L"brandImage.smallUrl");
FullSizeUrl = CkJsonObjectW_stringOf(jResp,L"defaultGroupBanner.fullSizeUrl");
defaultGroupImageLargeUrl = CkJsonObjectW_stringOf(jResp,L"defaultGroupImage.largeUrl");
defaultGroupImageMediumUrl = CkJsonObjectW_stringOf(jResp,L"defaultGroupImage.mediumUrl");
defaultGroupImageSmallUrl = CkJsonObjectW_stringOf(jResp,L"defaultGroupImage.smallUrl");
defaultPageBannerFullSizeUrl = CkJsonObjectW_stringOf(jResp,L"defaultPageBanner.fullSizeUrl");
defaultUserBannerFullSizeUrl = CkJsonObjectW_stringOf(jResp,L"defaultUserBanner.fullSizeUrl");
defaultUserImageLargeUrl = CkJsonObjectW_stringOf(jResp,L"defaultUserImage.largeUrl");
defaultUserImageMediumUrl = CkJsonObjectW_stringOf(jResp,L"defaultUserImage.mediumUrl");
defaultUserImageSmallUrl = CkJsonObjectW_stringOf(jResp,L"defaultUserImage.smallUrl");
density = CkJsonObjectW_stringOf(jResp,L"density");
headerColor = CkJsonObjectW_stringOf(jResp,L"headerColor");
linkColor = CkJsonObjectW_stringOf(jResp,L"linkColor");
pageColor = CkJsonObjectW_stringOf(jResp,L"pageColor");
CkHttpW_Dispose(http);
CkStringBuilderW_Dispose(sbResponseBody);
CkJsonObjectW_Dispose(jResp);
}
Curl Command
curl -X GET
-H "Authorization: Bearer <access_token>"
https://domain.com/services/data/v{{version}}/ui-api/themes/active
Postman Collection Item JSON
{
"name": "Get Active Theme",
"request": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{_endpoint}}/services/data/v{{version}}/ui-api/themes/active",
"host": [
"{{_endpoint}}"
],
"path": [
"services",
"data",
"v{{version}}",
"ui-api",
"themes",
"active"
]
},
"description": "Get a Salesforce org’s active theme. A theme uses colors, images, and banners to change the overall appearance of Salesforce. Administrators can define themes and switch themes to provide a different look. The User Interface API response matches the Admin’s selection."
},
"response": [
{
"name": "Get Active Theme",
"originalRequest": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{_endpoint}}/services/data/v{{version}}/ui-api/themes/active",
"host": [
"{{_endpoint}}"
],
"path": [
"services",
"data",
"v{{version}}",
"ui-api",
"themes",
"active"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Date",
"value": "Fri, 06 Oct 2023 09:24:07 GMT"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=63072000; includeSubDomains"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "X-Robots-Tag",
"value": "none"
},
{
"key": "Cache-Control",
"value": "no-cache,must-revalidate,max-age=0,no-store,private"
},
{
"key": "Content-Type",
"value": "application/json;charset=UTF-8"
},
{
"key": "Vary",
"value": "Accept-Encoding"
},
{
"key": "Content-Encoding",
"value": "gzip"
},
{
"key": "Transfer-Encoding",
"value": "chunked"
}
],
"cookie": [
],
"body": "{\n \"brandColor\": \"#0176D3\",\n \"brandImage\": {\n \"largeUrl\": \"/_slds/images/themes/lightning_blue/lightning_blue_logo_3x.png\",\n \"mediumUrl\": \"/_slds/images/themes/lightning_blue/lightning_blue_logo_2x.png\",\n \"smallUrl\": \"/_slds/images/themes/lightning_blue/lightning_blue_logo_1x.png\"\n },\n \"defaultGroupBanner\": {\n \"fullSizeUrl\": \"/_slds/images/themes/lightning_blue/lightning_blue_group.png\"\n },\n \"defaultGroupImage\": {\n \"largeUrl\": \"/_slds/images/themes/lightning_blue/lightning_blue_group_icon_200.png\",\n \"mediumUrl\": \"/_slds/images/themes/lightning_blue/lightning_blue_group_icon_160.png\",\n \"smallUrl\": \"/_slds/images/themes/lightning_blue/lightning_blue_group_icon_96.png\"\n },\n \"defaultPageBanner\": {\n \"fullSizeUrl\": \"/_slds/images/themes/lightning_blue/lightning_blue_background.png\"\n },\n \"defaultUserBanner\": {\n \"fullSizeUrl\": \"/_slds/images/themes/lightning_blue/lightning_blue_profile.png\"\n },\n \"defaultUserImage\": {\n \"largeUrl\": \"/_slds/images/themes/lightning_blue/lightning_blue_profile_avatar_200.png\",\n \"mediumUrl\": \"/_slds/images/themes/lightning_blue/lightning_blue_profile_avatar_160.png\",\n \"smallUrl\": \"/_slds/images/themes/lightning_blue/lightning_blue_profile_avatar_96.png\"\n },\n \"density\": \"ViewOne\",\n \"headerColor\": \"#FFFFFF\",\n \"linkColor\": \"#0176D3\",\n \"pageColor\": \"#B0C4DF\"\n}"
}
]
}