Chilkat Online Tools

PowerBuilder / Atlassian Confluence Cloud / Update content template

Back to Collection Items

integer li_rc
oleobject loo_Http
integer li_Success
oleobject loo_Json
oleobject loo_SbRequestBody
oleobject loo_Resp
oleobject loo_SbResponseBody
oleobject loo_JResp
integer li_RespStatusCode
string ls_Prefix
string ls_Id
string ls_Label
string ls_EntityIdValue
string ls_EntityValue
string ls_Value
string ls_TemplateId
string ls_Name
string ls_Description
string ls_TemplateType
string ls_Body
string ls_Value
string ls_Representation
string ls_Content
string ls_AllValue
string ls_CssValue
string ls_JsValue
string ls_DataValue
string ls_SuperbatchValue
integer i
integer li_Count_i

// 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.

// {
//   "templateId": "<string>",
//   "name": "<string>",
//   "templateType": "<string>",
//   "body": {
//     "value": "<string>",
//     "representation": "<string>"
//   },
//   "description": "<string>",
//   "labels": [
//     {
//       "prefix": "ipsum dolor Excepteur Duis",
//       "name": "nulla et ipsum voluptate consectetur",
//       "id": "nostrud enim proident cupidatat eu",
//       "label": "enim Lorem veniam amet"
//     },
//     {
//       "prefix": "amet",
//       "name": "officia adipisicing ut labo",
//       "id": "ipsum in tempor",
//       "label": "est occaecat magna"
//     }
//   ],
//   "space": {
//     "key": "<string>"
//   }
// }

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

loo_Json.UpdateString("templateId","<string>")
loo_Json.UpdateString("name","<string>")
loo_Json.UpdateString("templateType","<string>")
loo_Json.UpdateString("body.value","<string>")
loo_Json.UpdateString("body.representation","<string>")
loo_Json.UpdateString("description","<string>")
loo_Json.UpdateString("labels[0].prefix","ipsum dolor Excepteur Duis")
loo_Json.UpdateString("labels[0].name","nulla et ipsum voluptate consectetur")
loo_Json.UpdateString("labels[0].id","nostrud enim proident cupidatat eu")
loo_Json.UpdateString("labels[0].label","enim Lorem veniam amet")
loo_Json.UpdateString("labels[1].prefix","amet")
loo_Json.UpdateString("labels[1].name","officia adipisicing ut labo")
loo_Json.UpdateString("labels[1].id","ipsum in tempor")
loo_Json.UpdateString("labels[1].label","est occaecat magna")
loo_Json.UpdateString("space.key","<string>")

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

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

loo_Json.EmitSb(loo_SbRequestBody)

loo_Resp = loo_Http.PTextSb("PUT","https://your-domain.atlassian.net/wiki/rest/api/template",loo_SbRequestBody,"utf-8","application/json",0,0)
if loo_Http.LastMethodSuccess = 0 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_Http
    destroy loo_Json
    destroy loo_SbRequestBody
    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_SbRequestBody
    destroy loo_SbResponseBody
    destroy loo_JResp
    return
end if

destroy loo_Resp

// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)

// {
//   "templateId": "id ipsum ut",
//   "name": "sit dolor sint dolore",
//   "description": "magna",
//   "labels": [
//     {
//       "prefix": "fugiat sit Ut in ea",
//       "name": "dolor in",
//       "id": "aliqua culpa veniam ea",
//       "label": "officia tempor ea"
//     },
//     {
//       "prefix": "exercitation culpa proident",
//       "name": "nulla mollit adipis",
//       "id": "laborum sint",
//       "label": "fugiat"
//     }
//   ],
//   "templateType": "in cillum",
//   "_expandable": {
//     "body": "anim aute officia in culpa"
//   },
//   "_links": {},
//   "body": {
//     "value": "aute sit pariatur consequat deserunt",
//     "representation": "anonymous_export_view",
//     "_expandable": {
//       "content": "nulla cillum reprehenderit"
//     },
//     "embeddedContent": [
//       {
//         "entityId": {
//           "value": "<Error: Too many levels of nesting to fake this schema>"
//         },
//         "entity": {
//           "value": "<Error: Too many levels of nesting to fake this schema>"
//         }
//       },
//       {
//         "entityId": {
//           "value": "<Error: Too many levels of nesting to fake this schema>"
//         },
//         "entity": {
//           "value": "<Error: Too many levels of nesting to fake this schema>"
//         }
//       }
//     ],
//     "webresource": {
//       "keys": [
//         {
//           "value": "<Error: Too many levels of nesting to fake this schema>"
//         },
//         {
//           "value": "<Error: Too many levels of nesting to fake this schema>"
//         }
//       ],
//       "contexts": [
//         {
//           "value": "<Error: Too many levels of nesting to fake this schema>"
//         },
//         {
//           "value": "<Error: Too many levels of nesting to fake this schema>"
//         }
//       ],
//       "uris": {
//         "all": {
//           "value": "<Error: Too many levels of nesting to fake this schema>"
//         },
//         "css": {
//           "value": "<Error: Too many levels of nesting to fake this schema>"
//         },
//         "js": {
//           "value": "<Error: Too many levels of nesting to fake this schema>"
//         }
//       },
//       "tags": {
//         "all": {
//           "value": "<Error: Too many levels of nesting to fake this schema>"
//         },
//         "css": {
//           "value": "<Error: Too many levels of nesting to fake this schema>"
//         },
//         "data": {
//           "value": "<Error: Too many levels of nesting to fake this schema>"
//         },
//         "js": {
//           "value": "<Error: Too many levels of nesting to fake this schema>"
//         }
//       },
//       "superbatch": {
//         "value": "<Error: Too many levels of nesting to fake this schema>"
//       }
//     }
//   }
// }

// Sample code for parsing the JSON response...
// Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code

ls_TemplateId = loo_JResp.StringOf("templateId")
ls_Name = loo_JResp.StringOf("name")
ls_Description = loo_JResp.StringOf("description")
ls_TemplateType = loo_JResp.StringOf("templateType")
ls_Body = loo_JResp.StringOf("_expandable.body")
ls_Value = loo_JResp.StringOf("body.value")
ls_Representation = loo_JResp.StringOf("body.representation")
ls_Content = loo_JResp.StringOf("body._expandable.content")
ls_AllValue = loo_JResp.StringOf("body.webresource.uris.all.value")
ls_CssValue = loo_JResp.StringOf("body.webresource.uris.css.value")
ls_JsValue = loo_JResp.StringOf("body.webresource.uris.js.value")
ls_AllValue = loo_JResp.StringOf("body.webresource.tags.all.value")
ls_CssValue = loo_JResp.StringOf("body.webresource.tags.css.value")
ls_DataValue = loo_JResp.StringOf("body.webresource.tags.data.value")
ls_JsValue = loo_JResp.StringOf("body.webresource.tags.js.value")
ls_SuperbatchValue = loo_JResp.StringOf("body.webresource.superbatch.value")
i = 0
li_Count_i = loo_JResp.SizeOfArray("labels")
do while i < li_Count_i
    loo_JResp.I = i
    ls_Prefix = loo_JResp.StringOf("labels[i].prefix")
    ls_Name = loo_JResp.StringOf("labels[i].name")
    ls_Id = loo_JResp.StringOf("labels[i].id")
    ls_Label = loo_JResp.StringOf("labels[i].label")
    i = i + 1
loop
i = 0
li_Count_i = loo_JResp.SizeOfArray("body.embeddedContent")
do while i < li_Count_i
    loo_JResp.I = i
    ls_EntityIdValue = loo_JResp.StringOf("body.embeddedContent[i].entityId.value")
    ls_EntityValue = loo_JResp.StringOf("body.embeddedContent[i].entity.value")
    i = i + 1
loop
i = 0
li_Count_i = loo_JResp.SizeOfArray("body.webresource.keys")
do while i < li_Count_i
    loo_JResp.I = i
    ls_Value = loo_JResp.StringOf("body.webresource.keys[i].value")
    i = i + 1
loop
i = 0
li_Count_i = loo_JResp.SizeOfArray("body.webresource.contexts")
do while i < li_Count_i
    loo_JResp.I = i
    ls_Value = loo_JResp.StringOf("body.webresource.contexts[i].value")
    i = i + 1
loop


destroy loo_Http
destroy loo_Json
destroy loo_SbRequestBody
destroy loo_SbResponseBody
destroy loo_JResp

Curl Command

curl -X PUT
	-H "Authorization: Bearer <access_token>"
	-H "Content-Type: application/json"
	-d '{
    "templateId": "<string>",
    "name": "<string>",
    "templateType": "<string>",
    "body": {
        "value": "<string>",
        "representation": "<string>"
    },
    "description": "<string>",
    "labels": [
        {
            "prefix": "ipsum dolor Excepteur Duis",
            "name": "nulla et ipsum voluptate consectetur",
            "id": "nostrud enim proident cupidatat eu",
            "label": "enim Lorem veniam amet"
        },
        {
            "prefix": "amet",
            "name": "officia adipisicing ut labo",
            "id": "ipsum in tempor",
            "label": "est occaecat magna"
        }
    ],
    "space": {
        "key": "<string>"
    }
}'
https://your-domain.atlassian.net/wiki/rest/api/template

Postman Collection Item JSON

{
  "name": "Update content template",
  "request": {
    "auth": {
      "type": "oauth2"
    },
    "method": "PUT",
    "header": [
      {
        "key": "Content-Type",
        "value": "application/json"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n    \"templateId\": \"<string>\",\n    \"name\": \"<string>\",\n    \"templateType\": \"<string>\",\n    \"body\": {\n        \"value\": \"<string>\",\n        \"representation\": \"<string>\"\n    },\n    \"description\": \"<string>\",\n    \"labels\": [\n        {\n            \"prefix\": \"ipsum dolor Excepteur Duis\",\n            \"name\": \"nulla et ipsum voluptate consectetur\",\n            \"id\": \"nostrud enim proident cupidatat eu\",\n            \"label\": \"enim Lorem veniam amet\"\n        },\n        {\n            \"prefix\": \"amet\",\n            \"name\": \"officia adipisicing ut labo\",\n            \"id\": \"ipsum in tempor\",\n            \"label\": \"est occaecat magna\"\n        }\n    ],\n    \"space\": {\n        \"key\": \"<string>\"\n    }\n}"
    },
    "url": {
      "raw": "{{baseUrl}}/api/template",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "api",
        "template"
      ]
    },
    "description": "Updates a content template. Note, blueprint templates cannot be updated\nvia the REST API.\n\n**[Permissions](https://confluence.atlassian.com/x/_AozKw) required**:\n'Admin' permission for the space to create a space template or 'Confluence Administrator'\nglobal permission to create a global template."
  },
  "response": [
    {
      "name": "Returned if the template is updated.",
      "originalRequest": {
        "method": "PUT",
        "header": [
          {
            "description": {
              "content": "Added as a part of security scheme: oauth2",
              "type": "text/plain"
            },
            "key": "Authorization",
            "value": "<token>"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"templateId\": \"<string>\",\n    \"name\": \"<string>\",\n    \"templateType\": \"<string>\",\n    \"body\": {\n        \"value\": \"<string>\",\n        \"representation\": \"<string>\"\n    },\n    \"description\": \"<string>\",\n    \"labels\": [\n        {\n            \"prefix\": \"officia ea in eu\",\n            \"name\": \"commodo mollit\",\n            \"id\": \"veniam minim nisi quis officia\",\n            \"label\": \"commodo\"\n        },\n        {\n            \"prefix\": \"cupidatat dolor aliqua laboris\",\n            \"name\": \"officia amet\",\n            \"id\": \"voluptate ad quis p\",\n            \"label\": \"eu sit adipisicing ea Ut\"\n        }\n    ],\n    \"space\": {\n        \"key\": \"<string>\"\n    }\n}"
        },
        "url": {
          "raw": "{{baseUrl}}/api/template",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "template"
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n \"templateId\": \"id ipsum ut\",\n \"name\": \"sit dolor sint dolore\",\n \"description\": \"magna\",\n \"labels\": [\n  {\n   \"prefix\": \"fugiat sit Ut in ea\",\n   \"name\": \"dolor in\",\n   \"id\": \"aliqua culpa veniam ea\",\n   \"label\": \"officia tempor ea\"\n  },\n  {\n   \"prefix\": \"exercitation culpa proident\",\n   \"name\": \"nulla mollit adipis\",\n   \"id\": \"laborum sint\",\n   \"label\": \"fugiat\"\n  }\n ],\n \"templateType\": \"in cillum\",\n \"_expandable\": {\n  \"body\": \"anim aute officia in culpa\"\n },\n \"_links\": {},\n \"body\": {\n  \"value\": \"aute sit pariatur consequat deserunt\",\n  \"representation\": \"anonymous_export_view\",\n  \"_expandable\": {\n   \"content\": \"nulla cillum reprehenderit\"\n  },\n  \"embeddedContent\": [\n   {\n    \"entityId\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"entity\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   },\n   {\n    \"entityId\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"entity\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   }\n  ],\n  \"webresource\": {\n   \"keys\": [\n    {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   ],\n   \"contexts\": [\n    {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   ],\n   \"uris\": {\n    \"all\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"css\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"js\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   },\n   \"tags\": {\n    \"all\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"css\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"data\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    \"js\": {\n     \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n   },\n   \"superbatch\": {\n    \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n   }\n  }\n }\n}"
    },
    {
      "name": "Returned if the calling user does not have permission to update the\ntemplate.",
      "originalRequest": {
        "method": "PUT",
        "header": [
          {
            "description": {
              "content": "Added as a part of security scheme: oauth2",
              "type": "text/plain"
            },
            "key": "Authorization",
            "value": "<token>"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"templateId\": \"<string>\",\n    \"name\": \"<string>\",\n    \"templateType\": \"<string>\",\n    \"body\": {\n        \"value\": \"<string>\",\n        \"representation\": \"<string>\"\n    },\n    \"description\": \"<string>\",\n    \"labels\": [\n        {\n            \"prefix\": \"officia ea in eu\",\n            \"name\": \"commodo mollit\",\n            \"id\": \"veniam minim nisi quis officia\",\n            \"label\": \"commodo\"\n        },\n        {\n            \"prefix\": \"cupidatat dolor aliqua laboris\",\n            \"name\": \"officia amet\",\n            \"id\": \"voluptate ad quis p\",\n            \"label\": \"eu sit adipisicing ea Ut\"\n        }\n    ],\n    \"space\": {\n        \"key\": \"<string>\"\n    }\n}"
        },
        "url": {
          "raw": "{{baseUrl}}/api/template",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "template"
          ]
        }
      },
      "status": "Forbidden",
      "code": 403,
      "_postman_previewlanguage": "text",
      "header": [
        {
          "key": "Content-Type",
          "value": "text/plain"
        }
      ],
      "cookie": [
      ],
      "body": ""
    }
  ]
}