Chilkat Online Tools

PowerBuilder / Atlassian Confluence Cloud / Get content children

Back to Collection Items

integer li_rc
oleobject loo_Http
integer li_Success
oleobject loo_QueryParams
oleobject loo_Resp
oleobject loo_SbResponseBody
oleobject loo_JResp
integer li_RespStatusCode
string ls_Value
string ls_Attachment
string ls_Comment
string ls_Page
integer li_Start
integer li_Limit
integer li_Size
integer li_CommentStart
integer li_CommentLimit
integer li_CommentSize
integer li_PageStart
integer li_PageLimit
integer li_PageSize
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

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

loo_QueryParams.UpdateString("expand","<string>")
loo_QueryParams.UpdateString("expand","<string>")
loo_QueryParams.UpdateInt("parentVersion",0)

// Adds the "Authorization: Bearer <access_token>" header.
loo_Http.AuthToken = "<access_token>"

loo_Resp = loo_Http.QuickRequestParams("GET","https://your-domain.atlassian.net/wiki/rest/api/content/:id/child",loo_QueryParams)
if loo_Http.LastMethodSuccess = 0 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_Http
    destroy loo_QueryParams
    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_QueryParams
    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)

// {
//   "_expandable": {
//     "attachment": "in ut",
//     "comment": "dolor",
//     "page": "eu exercitation"
//   },
//   "_links": {},
//   "attachment": {
//     "results": [
//       {
//         "value": "<Circular reference to #/components/schemas/Content detected>"
//       },
//       {
//         "value": "<Circular reference to #/components/schemas/Content detected>"
//       }
//     ],
//     "start": -75729038,
//     "limit": 34726306,
//     "size": 18934279,
//     "_links": {}
//   },
//   "comment": {
//     "results": [
//       {
//         "value": "<Circular reference to #/components/schemas/Content detected>"
//       },
//       {
//         "value": "<Circular reference to #/components/schemas/Content detected>"
//       }
//     ],
//     "start": 37994470,
//     "limit": 2587712,
//     "size": -24049554,
//     "_links": {}
//   },
//   "page": {
//     "results": [
//       {
//         "value": "<Circular reference to #/components/schemas/Content detected>"
//       },
//       {
//         "value": "<Circular reference to #/components/schemas/Content detected>"
//       }
//     ],
//     "start": 66843073,
//     "limit": 57682154,
//     "size": -4004438,
//     "_links": {}
//   }
// }

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

ls_Attachment = loo_JResp.StringOf("_expandable.attachment")
ls_Comment = loo_JResp.StringOf("_expandable.comment")
ls_Page = loo_JResp.StringOf("_expandable.page")
li_Start = loo_JResp.IntOf("attachment.start")
li_Limit = loo_JResp.IntOf("attachment.limit")
li_Size = loo_JResp.IntOf("attachment.size")
li_CommentStart = loo_JResp.IntOf("comment.start")
li_CommentLimit = loo_JResp.IntOf("comment.limit")
li_CommentSize = loo_JResp.IntOf("comment.size")
li_PageStart = loo_JResp.IntOf("page.start")
li_PageLimit = loo_JResp.IntOf("page.limit")
li_PageSize = loo_JResp.IntOf("page.size")
i = 0
li_Count_i = loo_JResp.SizeOfArray("attachment.results")
do while i < li_Count_i
    loo_JResp.I = i
    ls_Value = loo_JResp.StringOf("attachment.results[i].value")
    i = i + 1
loop
i = 0
li_Count_i = loo_JResp.SizeOfArray("comment.results")
do while i < li_Count_i
    loo_JResp.I = i
    ls_Value = loo_JResp.StringOf("comment.results[i].value")
    i = i + 1
loop
i = 0
li_Count_i = loo_JResp.SizeOfArray("page.results")
do while i < li_Count_i
    loo_JResp.I = i
    ls_Value = loo_JResp.StringOf("page.results[i].value")
    i = i + 1
loop


destroy loo_Http
destroy loo_QueryParams
destroy loo_SbResponseBody
destroy loo_JResp

Curl Command

curl -G -d "expand=%3Cstring%3E"
	-d "expand=%3Cstring%3E"
	-d "parentVersion=0"
	-H "Authorization: Bearer <access_token>"
https://your-domain.atlassian.net/wiki/rest/api/content/:id/child

Postman Collection Item JSON

{
  "name": "Get content children",
  "request": {
    "auth": {
      "type": "oauth2"
    },
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{baseUrl}}/api/content/:id/child?expand=<string>&expand=<string>&parentVersion=0",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "api",
        "content",
        ":id",
        "child"
      ],
      "query": [
        {
          "key": "expand",
          "value": "<string>",
          "description": "A multi-value parameter indicating which properties of the children to expand, where:\n\n- `attachment` returns all attachments for the content.\n- `comments` returns all comments for the content.\n- `page` returns all child pages of the content."
        },
        {
          "key": "expand",
          "value": "<string>",
          "description": "A multi-value parameter indicating which properties of the children to expand, where:\n\n- `attachment` returns all attachments for the content.\n- `comments` returns all comments for the content.\n- `page` returns all child pages of the content."
        },
        {
          "key": "parentVersion",
          "value": "0",
          "description": "The version of the parent content to retrieve children for.\nCurrently, this only works for the latest version."
        }
      ],
      "variable": [
        {
          "key": "id",
          "value": "<string>",
          "type": "string",
          "description": "(Required) The ID of the content to be queried for its children."
        }
      ]
    },
    "description": "Returns a map of the direct children of a piece of content. A piece of content\nhas different types of child content, depending on its type. These are\nthe default parent-child content type relationships:\n\n- `page`: child content is `page`, `comment`, `attachment`\n- `blogpost`: child content is `comment`, `attachment`\n- `attachment`: child content is `comment`\n- `comment`: child content is `attachment`\n\nApps can override these default relationships. Apps can also introduce\nnew content types that create new parent-child content relationships.\n\nNote, the map will always include all child content types that are valid\nfor the content. However, if the content has no instances of a child content\ntype, the map will contain an empty array for that child content type.\n\n**[Permissions](https://confluence.atlassian.com/x/_AozKw) required**: 'View' permission for the space,\nand permission to view the content if it is a page."
  },
  "response": [
    {
      "name": "Returned if the requested content children are returned.",
      "originalRequest": {
        "method": "GET",
        "header": [
          {
            "description": {
              "content": "Added as a part of security scheme: oauth2",
              "type": "text/plain"
            },
            "key": "Authorization",
            "value": "<token>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/content/:id/child?expand=<string>&expand=<string>&parentVersion=0",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "content",
            ":id",
            "child"
          ],
          "query": [
            {
              "key": "expand",
              "value": "<string>"
            },
            {
              "key": "expand",
              "value": "<string>"
            },
            {
              "key": "parentVersion",
              "value": "0"
            }
          ],
          "variable": [
            {
              "key": "id"
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n \"_expandable\": {\n  \"attachment\": \"in ut\",\n  \"comment\": \"dolor\",\n  \"page\": \"eu exercitation\"\n },\n \"_links\": {},\n \"attachment\": {\n  \"results\": [\n   {\n    \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n   },\n   {\n    \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n   }\n  ],\n  \"start\": -75729038,\n  \"limit\": 34726306,\n  \"size\": 18934279,\n  \"_links\": {}\n },\n \"comment\": {\n  \"results\": [\n   {\n    \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n   },\n   {\n    \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n   }\n  ],\n  \"start\": 37994470,\n  \"limit\": 2587712,\n  \"size\": -24049554,\n  \"_links\": {}\n },\n \"page\": {\n  \"results\": [\n   {\n    \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n   },\n   {\n    \"value\": \"<Circular reference to #/components/schemas/Content detected>\"\n   }\n  ],\n  \"start\": 66843073,\n  \"limit\": 57682154,\n  \"size\": -4004438,\n  \"_links\": {}\n }\n}"
    },
    {
      "name": "Returned if;\n\n- There is no content with the given ID.\n- The calling user does not have permission to view the content.",
      "originalRequest": {
        "method": "GET",
        "header": [
          {
            "description": {
              "content": "Added as a part of security scheme: oauth2",
              "type": "text/plain"
            },
            "key": "Authorization",
            "value": "<token>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/content/:id/child?expand=<string>&expand=<string>&parentVersion=0",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "content",
            ":id",
            "child"
          ],
          "query": [
            {
              "key": "expand",
              "value": "<string>"
            },
            {
              "key": "expand",
              "value": "<string>"
            },
            {
              "key": "parentVersion",
              "value": "0"
            }
          ],
          "variable": [
            {
              "key": "id"
            }
          ]
        }
      },
      "status": "Not Found",
      "code": 404,
      "_postman_previewlanguage": "text",
      "header": [
        {
          "key": "Content-Type",
          "value": "text/plain"
        }
      ],
      "cookie": [
      ],
      "body": ""
    }
  ]
}