Chilkat Online Tools

PowerBuilder / Atlassian Confluence Cloud / Update look and feel settings

Back to Collection Items

integer li_rc
oleobject loo_Http
integer li_Success
oleobject loo_Json
oleobject loo_Resp
oleobject loo_SbResponseBody
oleobject loo_JResp
integer li_RespStatusCode

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

loo_Http = create oleobject
li_rc = loo_Http.ConnectToNewObject("Chilkat_9_5_0.Http")
if li_rc < 0 then
    destroy loo_Http
    MessageBox("Error","Connecting to COM object failed")
    return
end if

// 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>"
//   }
// }

loo_Json = create oleobject
li_rc = loo_Json.ConnectToNewObject("Chilkat_9_5_0.JsonObject")

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

// Adds the "Authorization: Bearer <access_token>" header.
loo_Http.AuthToken = "<access_token>"
loo_Http.SetRequestHeader("Content-Type","application/json")

loo_Resp = loo_Http.PostJson3("https://your-domain.atlassian.net/wiki/rest/api/settings/lookandfeel/custom?spaceKey=<string>","application/json",loo_Json)
if loo_Http.LastMethodSuccess = 0 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_Http
    destroy loo_Json
    return
end if

loo_SbResponseBody = create oleobject
li_rc = loo_SbResponseBody.ConnectToNewObject("Chilkat_9_5_0.StringBuilder")

loo_Resp.GetBodySb(loo_SbResponseBody)

loo_JResp = create oleobject
li_rc = loo_JResp.ConnectToNewObject("Chilkat_9_5_0.JsonObject")

loo_JResp.LoadSb(loo_SbResponseBody)
loo_JResp.EmitCompact = 0

Write-Debug "Response Body:"
Write-Debug loo_JResp.Emit()

li_RespStatusCode = loo_Resp.StatusCode
Write-Debug "Response Status Code = " + string(li_RespStatusCode)
if li_RespStatusCode >= 400 then
    Write-Debug "Response Header:"
    Write-Debug loo_Resp.Header
    Write-Debug "Failed."
    destroy loo_Resp
    destroy loo_Http
    destroy loo_Json
    destroy loo_SbResponseBody
    destroy loo_JResp
    return
end if

destroy loo_Resp


destroy loo_Http
destroy loo_Json
destroy loo_SbResponseBody
destroy loo_JResp

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": ""
    }
  ]
}