Chilkat Online Tools

unicodeCpp / Atlassian Confluence Cloud / Update look and feel settings

Back to Collection Items

#include <CkHttpW.h>
#include <CkJsonObjectW.h>
#include <CkHttpResponseW.h>
#include <CkStringBuilderW.h>

void ChilkatSample(void)
    {
    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    CkHttpW http;
    bool success;

    // Use this online tool to generate code from sample JSON: Generate Code to Create JSON

    // The following JSON is sent in the request body.

    // {
    //   "headings": {
    //     "color": "<string>"
    //   },
    //   "links": {
    //     "color": "<string>"
    //   },
    //   "menus": {
    //     "hoverOrFocus": {
    //       "value": "<Error: Too many levels of nesting to fake this schema>"
    //     },
    //     "color": {
    //       "value": "<Error: Too many levels of nesting to fake this schema>"
    //     }
    //   },
    //   "header": {
    //     "backgroundColor": {
    //       "value": "<Error: Too many levels of nesting to fake this schema>"
    //     },
    //     "button": {
    //       "value": "<Error: Too many levels of nesting to fake this schema>"
    //     },
    //     "primaryNavigation": {
    //       "value": "<Error: Too many levels of nesting to fake this schema>"
    //     },
    //     "secondaryNavigation": {
    //       "value": "<Error: Too many levels of nesting to fake this schema>"
    //     },
    //     "search": {
    //       "value": "<Error: Too many levels of nesting to fake this schema>"
    //     }
    //   },
    //   "content": {
    //     "screen": {
    //       "value": "<Error: Too many levels of nesting to fake this schema>"
    //     },
    //     "container": {
    //       "value": "<Error: Too many levels of nesting to fake this schema>"
    //     },
    //     "header": {
    //       "value": "<Error: Too many levels of nesting to fake this schema>"
    //     },
    //     "body": {
    //       "value": "<Error: Too many levels of nesting to fake this schema>"
    //     }
    //   },
    //   "bordersAndDividers": {
    //     "color": "<string>"
    //   }
    // }

    CkJsonObjectW json;
    json.UpdateString(L"headings.color",L"<string>");
    json.UpdateString(L"links.color",L"<string>");
    json.UpdateString(L"menus.hoverOrFocus.value",L"<Error: Too many levels of nesting to fake this schema>");
    json.UpdateString(L"menus.color.value",L"<Error: Too many levels of nesting to fake this schema>");
    json.UpdateString(L"header.backgroundColor.value",L"<Error: Too many levels of nesting to fake this schema>");
    json.UpdateString(L"header.button.value",L"<Error: Too many levels of nesting to fake this schema>");
    json.UpdateString(L"header.primaryNavigation.value",L"<Error: Too many levels of nesting to fake this schema>");
    json.UpdateString(L"header.secondaryNavigation.value",L"<Error: Too many levels of nesting to fake this schema>");
    json.UpdateString(L"header.search.value",L"<Error: Too many levels of nesting to fake this schema>");
    json.UpdateString(L"content.screen.value",L"<Error: Too many levels of nesting to fake this schema>");
    json.UpdateString(L"content.container.value",L"<Error: Too many levels of nesting to fake this schema>");
    json.UpdateString(L"content.header.value",L"<Error: Too many levels of nesting to fake this schema>");
    json.UpdateString(L"content.body.value",L"<Error: Too many levels of nesting to fake this schema>");
    json.UpdateString(L"bordersAndDividers.color",L"<string>");

    // Adds the "Authorization: Bearer <access_token>" header.
    http.put_AuthToken(L"<access_token>");
    http.SetRequestHeader(L"Content-Type",L"application/json");

    CkHttpResponseW *resp = http.PostJson3(L"https://your-domain.atlassian.net/wiki/rest/api/settings/lookandfeel/custom?spaceKey=<string>",L"application/json",json);
    if (http.get_LastMethodSuccess() == false) {
        wprintf(L"%s\n",http.lastErrorText());
        return;
    }

    CkStringBuilderW sbResponseBody;
    resp->GetBodySb(sbResponseBody);

    CkJsonObjectW jResp;
    jResp.LoadSb(sbResponseBody);
    jResp.put_EmitCompact(false);

    wprintf(L"Response Body:\n");
    wprintf(L"%s\n",jResp.emit());

    int respStatusCode = resp->get_StatusCode();
    wprintf(L"Response Status Code = %d\n",respStatusCode);
    if (respStatusCode >= 400) {
        wprintf(L"Response Header:\n");
        wprintf(L"%s\n",resp->header());
        wprintf(L"Failed.\n");
        delete resp;
        return;
    }

    delete resp;
    }

Curl Command

curl -X POST
	-H "Authorization: Bearer <access_token>"
	-H "Content-Type: application/json"
	-d '{
    "headings": {
        "color": "<string>"
    },
    "links": {
        "color": "<string>"
    },
    "menus": {
        "hoverOrFocus": {
            "value": "<Error: Too many levels of nesting to fake this schema>"
        },
        "color": {
            "value": "<Error: Too many levels of nesting to fake this schema>"
        }
    },
    "header": {
        "backgroundColor": {
            "value": "<Error: Too many levels of nesting to fake this schema>"
        },
        "button": {
            "value": "<Error: Too many levels of nesting to fake this schema>"
        },
        "primaryNavigation": {
            "value": "<Error: Too many levels of nesting to fake this schema>"
        },
        "secondaryNavigation": {
            "value": "<Error: Too many levels of nesting to fake this schema>"
        },
        "search": {
            "value": "<Error: Too many levels of nesting to fake this schema>"
        }
    },
    "content": {
        "screen": {
            "value": "<Error: Too many levels of nesting to fake this schema>"
        },
        "container": {
            "value": "<Error: Too many levels of nesting to fake this schema>"
        },
        "header": {
            "value": "<Error: Too many levels of nesting to fake this schema>"
        },
        "body": {
            "value": "<Error: Too many levels of nesting to fake this schema>"
        }
    },
    "bordersAndDividers": {
        "color": "<string>"
    }
}'
https://your-domain.atlassian.net/wiki/rest/api/settings/lookandfeel/custom?spaceKey=<string>

Postman Collection Item JSON

{
  "name": "Update look and feel settings",
  "request": {
    "auth": {
      "type": "oauth2"
    },
    "method": "POST",
    "header": [
      {
        "key": "Content-Type",
        "value": "application/json"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n    \"headings\": {\n        \"color\": \"<string>\"\n    },\n    \"links\": {\n        \"color\": \"<string>\"\n    },\n    \"menus\": {\n        \"hoverOrFocus\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"color\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n    },\n    \"header\": {\n        \"backgroundColor\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"button\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"primaryNavigation\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"secondaryNavigation\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"search\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n    },\n    \"content\": {\n        \"screen\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"container\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"header\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"body\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n    },\n    \"bordersAndDividers\": {\n        \"color\": \"<string>\"\n    }\n}"
    },
    "url": {
      "raw": "{{baseUrl}}/api/settings/lookandfeel/custom?spaceKey=<string>",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "api",
        "settings",
        "lookandfeel",
        "custom"
      ],
      "query": [
        {
          "key": "spaceKey",
          "value": "<string>",
          "description": "The key of the space for which the look and feel settings will be\nupdated. If this is not set, the global look and feel settings will\nbe updated."
        }
      ]
    },
    "description": "Updates the look and feel settings for the site or for a single space.\nIf custom settings exist, they are updated. If no custom settings exist,\nthen a set of custom settings is created.\n\nNote, if a theme is selected for a space, the space look and feel settings\nare provided by the theme and cannot be overridden.\n\n**[Permissions](https://confluence.atlassian.com/x/_AozKw) required**:\n'Admin' permission for the space."
  },
  "response": [
    {
      "name": "Returned if the look and feel settings are updated.",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "description": {
              "content": "Added as a part of security scheme: oauth2",
              "type": "text/plain"
            },
            "key": "Authorization",
            "value": "<token>"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"headings\": {\n        \"color\": \"<string>\"\n    },\n    \"links\": {\n        \"color\": \"<string>\"\n    },\n    \"menus\": {\n        \"hoverOrFocus\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"color\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n    },\n    \"header\": {\n        \"backgroundColor\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"button\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"primaryNavigation\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"secondaryNavigation\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"search\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n    },\n    \"content\": {\n        \"screen\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"container\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"header\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"body\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n    },\n    \"bordersAndDividers\": {\n        \"color\": \"<string>\"\n    }\n}"
        },
        "url": {
          "raw": "{{baseUrl}}/api/settings/lookandfeel/custom?spaceKey=<string>",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "settings",
            "lookandfeel",
            "custom"
          ],
          "query": [
            {
              "key": "spaceKey",
              "value": "<string>"
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{}"
    },
    {
      "name": "Returned if;\n\n- The `spaceKey` is invalid\n- The request body contains invalid data.",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "description": {
              "content": "Added as a part of security scheme: oauth2",
              "type": "text/plain"
            },
            "key": "Authorization",
            "value": "<token>"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"headings\": {\n        \"color\": \"<string>\"\n    },\n    \"links\": {\n        \"color\": \"<string>\"\n    },\n    \"menus\": {\n        \"hoverOrFocus\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"color\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n    },\n    \"header\": {\n        \"backgroundColor\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"button\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"primaryNavigation\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"secondaryNavigation\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"search\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n    },\n    \"content\": {\n        \"screen\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"container\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"header\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"body\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n    },\n    \"bordersAndDividers\": {\n        \"color\": \"<string>\"\n    }\n}"
        },
        "url": {
          "raw": "{{baseUrl}}/api/settings/lookandfeel/custom?spaceKey=<string>",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "settings",
            "lookandfeel",
            "custom"
          ],
          "query": [
            {
              "key": "spaceKey",
              "value": "<string>"
            }
          ]
        }
      },
      "status": "Bad Request",
      "code": 400,
      "_postman_previewlanguage": "text",
      "header": [
        {
          "key": "Content-Type",
          "value": "text/plain"
        }
      ],
      "cookie": [
      ],
      "body": ""
    },
    {
      "name": "Returned if the calling user doesn't have permission to edit the\nlook and feel settings.",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "description": {
              "content": "Added as a part of security scheme: oauth2",
              "type": "text/plain"
            },
            "key": "Authorization",
            "value": "<token>"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"headings\": {\n        \"color\": \"<string>\"\n    },\n    \"links\": {\n        \"color\": \"<string>\"\n    },\n    \"menus\": {\n        \"hoverOrFocus\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"color\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n    },\n    \"header\": {\n        \"backgroundColor\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"button\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"primaryNavigation\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"secondaryNavigation\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"search\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n    },\n    \"content\": {\n        \"screen\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"container\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"header\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"body\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n    },\n    \"bordersAndDividers\": {\n        \"color\": \"<string>\"\n    }\n}"
        },
        "url": {
          "raw": "{{baseUrl}}/api/settings/lookandfeel/custom?spaceKey=<string>",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "settings",
            "lookandfeel",
            "custom"
          ],
          "query": [
            {
              "key": "spaceKey",
              "value": "<string>"
            }
          ]
        }
      },
      "status": "Forbidden",
      "code": 403,
      "_postman_previewlanguage": "text",
      "header": [
        {
          "key": "Content-Type",
          "value": "text/plain"
        }
      ],
      "cookie": [
      ],
      "body": ""
    },
    {
      "name": "Returned if there is no space with the given `spaceKey`.",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "description": {
              "content": "Added as a part of security scheme: oauth2",
              "type": "text/plain"
            },
            "key": "Authorization",
            "value": "<token>"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"headings\": {\n        \"color\": \"<string>\"\n    },\n    \"links\": {\n        \"color\": \"<string>\"\n    },\n    \"menus\": {\n        \"hoverOrFocus\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"color\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n    },\n    \"header\": {\n        \"backgroundColor\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"button\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"primaryNavigation\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"secondaryNavigation\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"search\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n    },\n    \"content\": {\n        \"screen\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"container\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"header\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"body\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n    },\n    \"bordersAndDividers\": {\n        \"color\": \"<string>\"\n    }\n}"
        },
        "url": {
          "raw": "{{baseUrl}}/api/settings/lookandfeel/custom?spaceKey=<string>",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "settings",
            "lookandfeel",
            "custom"
          ],
          "query": [
            {
              "key": "spaceKey",
              "value": "<string>"
            }
          ]
        }
      },
      "status": "Not Found",
      "code": 404,
      "_postman_previewlanguage": "text",
      "header": [
        {
          "key": "Content-Type",
          "value": "text/plain"
        }
      ],
      "cookie": [
      ],
      "body": ""
    }
  ]
}