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_V_type
string ls_V_Type
string ls_Path
integer li_Width
integer li_Height
integer li_IsDefault
string ls_DisplayName
string ls_AccountId
string ls_Value
string ls_PersonalValue
string ls_Username
string ls_UserKey
string ls_ContentId
integer j
integer li_Count_j
string ls_Operation
string ls_TargetType
integer li_Start
integer li_Limit
integer li_Size
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
// Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0
li_rc = loo_Http.ConnectToNewObject("Chilkat.Http")
if li_rc < 0 then
destroy loo_Http
MessageBox("Error","Connecting to COM object failed")
return
end if
loo_QueryParams = create oleobject
// Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
li_rc = loo_QueryParams.ConnectToNewObject("Chilkat.JsonObject")
loo_QueryParams.UpdateInt("start",0)
loo_QueryParams.UpdateInt("limit",200)
// 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/notification/created",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
// Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0
li_rc = loo_SbResponseBody.ConnectToNewObject("Chilkat.StringBuilder")
loo_Resp.GetBodySb(loo_SbResponseBody)
loo_JResp = create oleobject
// Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
li_rc = loo_JResp.ConnectToNewObject("Chilkat.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)
// {
// "results": [
// {
// "type": "incididunt ea",
// "watcher": {
// "type": "elit in minim aliquip",
// "profilePicture": {
// "path": "tempor commodo amet voluptate",
// "width": -39236226,
// "height": 75695638,
// "isDefault": true
// },
// "displayName": "qui",
// "operations": [
// {
// "operation": "copy",
// "targetType": "space"
// },
// {
// "operation": "purge",
// "targetType": "space"
// }
// ],
// "accountId": "nulla dolor",
// "details": {
// "business": {
// "value": "<Error: Too many levels of nesting to fake this schema>"
// },
// "personal": {
// "value": "<Error: Too many levels of nesting to fake this schema>"
// }
// },
// "username": "veniam exercitation deserunt",
// "userKey": "adipisicing culpa eu"
// },
// "contentId": "do nostrud consectetur"
// },
// {
// "type": "qui in aliquip",
// "watcher": {
// "type": "culpa velit Excepteur in",
// "profilePicture": {
// "path": "est iru",
// "width": -23304200,
// "height": -94415594,
// "isDefault": false
// },
// "displayName": "eiusmod Ut",
// "operations": [
// {
// "operation": "purge",
// "targetType": "page"
// },
// {
// "operation": "move",
// "targetType": "space"
// }
// ],
// "accountId": "laborum",
// "details": {
// "business": {
// "value": "<Error: Too many levels of nesting to fake this schema>"
// },
// "personal": {
// "value": "<Error: Too many levels of nesting to fake this schema>"
// }
// },
// "username": "conse",
// "userKey": "id ad velit incididunt Ut"
// },
// "contentId": "Duis labore voluptate consectetur"
// }
// ],
// "start": 86483335,
// "limit": 45770246,
// "size": 20684808,
// "_links": {}
// }
// Sample code for parsing the JSON response...
// Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code
li_Start = loo_JResp.IntOf("start")
li_Limit = loo_JResp.IntOf("limit")
li_Size = loo_JResp.IntOf("size")
i = 0
li_Count_i = loo_JResp.SizeOfArray("results")
do while i < li_Count_i
loo_JResp.I = i
ls_V_type = loo_JResp.StringOf("results[i].type")
ls_V_Type = loo_JResp.StringOf("results[i].watcher.type")
ls_Path = loo_JResp.StringOf("results[i].watcher.profilePicture.path")
li_Width = loo_JResp.IntOf("results[i].watcher.profilePicture.width")
li_Height = loo_JResp.IntOf("results[i].watcher.profilePicture.height")
li_IsDefault = loo_JResp.BoolOf("results[i].watcher.profilePicture.isDefault")
ls_DisplayName = loo_JResp.StringOf("results[i].watcher.displayName")
ls_AccountId = loo_JResp.StringOf("results[i].watcher.accountId")
ls_Value = loo_JResp.StringOf("results[i].watcher.details.business.value")
ls_PersonalValue = loo_JResp.StringOf("results[i].watcher.details.personal.value")
ls_Username = loo_JResp.StringOf("results[i].watcher.username")
ls_UserKey = loo_JResp.StringOf("results[i].watcher.userKey")
ls_ContentId = loo_JResp.StringOf("results[i].contentId")
j = 0
li_Count_j = loo_JResp.SizeOfArray("results[i].watcher.operations")
do while j < li_Count_j
loo_JResp.J = j
ls_Operation = loo_JResp.StringOf("results[i].watcher.operations[j].operation")
ls_TargetType = loo_JResp.StringOf("results[i].watcher.operations[j].targetType")
j = j + 1
loop
i = i + 1
loop
destroy loo_Http
destroy loo_QueryParams
destroy loo_SbResponseBody
destroy loo_JResp
Curl Command
curl -G -d "start=0"
-d "limit=200"
-H "Authorization: Bearer <access_token>"
https://your-domain.atlassian.net/wiki/rest/api/content/:id/notification/created
Postman Collection Item JSON
{
"name": "Get watches for space",
"request": {
"auth": {
"type": "oauth2"
},
"method": "GET",
"header": [
],
"url": {
"raw": "{{baseUrl}}/api/content/:id/notification/created?start=0&limit=200",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"content",
":id",
"notification",
"created"
],
"query": [
{
"key": "start",
"value": "0",
"description": "The starting index of the returned watches."
},
{
"key": "limit",
"value": "200",
"description": "The maximum number of watches to return per page.\nNote, this may be restricted by fixed system limits."
}
],
"variable": [
{
"key": "id",
"value": "<string>",
"type": "string",
"description": "(Required) The ID of the content to be queried for its watches."
}
]
},
"description": "Returns all space watches for the space that the content is in. A user that\nwatches a space will receive receive notifications when any content in the\nspace is updated.\n\nIf you want to manage watches for a space, use the following `user` methods:\n\n- [Get space watch status for user](#api-user-watch-space-spaceKey-get)\n- [Add space watch](#api-user-watch-space-spaceKey-post)\n- [Remove space watch](#api-user-watch-space-spaceKey-delete)\n\n**[Permissions](https://confluence.atlassian.com/x/_AozKw) required**:\nPermission to access the Confluence site ('Can use' global permission)."
},
"response": [
{
"name": "Returned if the requested watches 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/notification/created?start=0&limit=200",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"content",
":id",
"notification",
"created"
],
"query": [
{
"key": "start",
"value": "0"
},
{
"key": "limit",
"value": "200"
}
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"results\": [\n {\n \"type\": \"incididunt ea\",\n \"watcher\": {\n \"type\": \"elit in minim aliquip\",\n \"profilePicture\": {\n \"path\": \"tempor commodo amet voluptate\",\n \"width\": -39236226,\n \"height\": 75695638,\n \"isDefault\": true\n },\n \"displayName\": \"qui\",\n \"operations\": [\n {\n \"operation\": \"copy\",\n \"targetType\": \"space\"\n },\n {\n \"operation\": \"purge\",\n \"targetType\": \"space\"\n }\n ],\n \"accountId\": \"nulla dolor\",\n \"details\": {\n \"business\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"personal\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n }\n },\n \"username\": \"veniam exercitation deserunt\",\n \"userKey\": \"adipisicing culpa eu\"\n },\n \"contentId\": \"do nostrud consectetur\"\n },\n {\n \"type\": \"qui in aliquip\",\n \"watcher\": {\n \"type\": \"culpa velit Excepteur in\",\n \"profilePicture\": {\n \"path\": \"est iru\",\n \"width\": -23304200,\n \"height\": -94415594,\n \"isDefault\": false\n },\n \"displayName\": \"eiusmod Ut\",\n \"operations\": [\n {\n \"operation\": \"purge\",\n \"targetType\": \"page\"\n },\n {\n \"operation\": \"move\",\n \"targetType\": \"space\"\n }\n ],\n \"accountId\": \"laborum\",\n \"details\": {\n \"business\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"personal\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n }\n },\n \"username\": \"conse\",\n \"userKey\": \"id ad velit incididunt Ut\"\n },\n \"contentId\": \"Duis labore voluptate consectetur\"\n }\n ],\n \"start\": 86483335,\n \"limit\": 45770246,\n \"size\": 20684808,\n \"_links\": {}\n}"
},
{
"name": "Returned if the authentication credentials are incorrect or missing\nfrom the request.",
"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/notification/created?start=0&limit=200",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"content",
":id",
"notification",
"created"
],
"query": [
{
"key": "start",
"value": "0"
},
{
"key": "limit",
"value": "200"
}
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Unauthorized",
"code": 401,
"_postman_previewlanguage": "text",
"header": [
{
"key": "Content-Type",
"value": "text/plain"
}
],
"cookie": [
],
"body": ""
}
]
}