Skip to main content

Atlassian Confluence Cloud

This Integration is part of the Atlassian Confluence Cloud Pack.#

Supported versions

Supported Cortex XSOAR versions: 6.2.0 and later.

Atlassian Confluence Cloud allows users to interact with confluence entities like content, space, users and groups. Users can also manage the space permissions. This integration was integrated and tested with version 1000.0.0-847bdcbfcd00 of Atlassian Confluence Cloud.

Configure Atlassian Confluence Cloud on Cortex XSOAR#

  1. Navigate to Settings > Integrations > Servers & Services.

  2. Search for Atlassian Confluence Cloud.

  3. Click Add instance to create and configure a new integration instance.

    ParameterDescriptionRequired
    Site Name (e.g., https://${site-name}.atlassian.net)Site name of the Confluence cloud the user wants to connect to.True
    EmailThe Atlassian account email.True
    API TokenTrue
    Use system proxy settingsFalse
    Trust any certificate (not secure)False
  4. Click Test to validate the URLs, token, and connection.

Commands#

You can execute these commands from the Cortex XSOAR CLI, as part of an automation, or in a playbook. After you successfully execute a command, a DBot message appears in the War Room with the command details.

confluence-cloud-space-create#


Creates a new space.
Note: If no permissions are specified, the default space permissions defined by the Confluence cloud account admin will be used.

Create Space with permissions#

  • The command arguments 'permission_account_id', 'permission_group_name', and 'permission_operations' can be used to limit access of the space to one individual or one group.
    For Example: !confluence-cloud-space-create unique_key=”Demo” name=”DemoSpace” permission_account_id=”123af245667” permission_group_name=”administrators” permission_operations=”read:space,write:page”
  • To limit access of the space to a specific number of people or groups, 'advanced_permissions' should contain a valid JSON.
    A valid JSON schema can be found here.

Base Command#

confluence-cloud-space-create

Input#

Argument NameDescriptionRequired
unique_keyThe key for the new space. It can contain any alphanumeric character (a-z, 0-9). The maximum length is 255 characters.

Note: unique_key cannot change after the space is created.
Required
nameThe name of the new space. The maximum length is 200 characters.Required
descriptionThe description of the new space.Optional
is_private_spaceWhether the user wants to create a private space.

Note: If this option is set to true, permission cannot be applied.

Default is false.
Optional
permission_account_idThe account ID of the user to whom permission should be granted.

Note: To retrieve the account ID, execute the confluence-cloud-user-list command.
Optional
permission_group_nameThe group name to whom permission should be granted.

Note: To retrieve the group name, execute the confluence-cloud-group-list command.
Optional
permission_operationsA comma-separated list of the permissions that should be applied.

Note: Requires either permission_account_id or permission_group_name.

Format accepted: operation1:targetType1, operation2:targetType2

For example: read:space, create:page

Possible values for operations: create, read, delete, export, administer.
Possible values for targetType: space, page, blogpost, comment, attachment.
Optional
advanced_permissionsSpecify 'advanced_permissions' to grant access to multiple users or groups. 'advanced_permissions' has priority over 'permission_operations'.

Note: Add backslash(\) before quotes.

For example: [ { \"subjects\": { \"user\": { \"results\": [ { \"accountId\": \"5ff2e30b4d2179006ea18449\" } ] }, \"group\": { \"results\": [ { \"name\": \"administrators\" } ] } }, \"operation\": { \"operation\": \"read\", \"targetType\": \"space\" }, \"anonymousAccess\": false, \"unlicensedAccess\": false } ]

To prepare a valid JSON for advanced_permissions, navigate to https://developer.atlassian.com/cloud/confluence/rest/api-group-space/#api-wiki-rest-api-space-post and see the permission parameter in it.
Optional

Context Output#

PathTypeDescription
ConfluenceCloud.Space.idNumberID of the space.
ConfluenceCloud.Space.keyStringKey of the space.
ConfluenceCloud.Space.nameStringName of the space.
ConfluenceCloud.Space.description.view.valueStringThe description of the space in view format.
ConfluenceCloud.Space.description.view.representationStringRepresentation format of the description in view format.
ConfluenceCloud.Space.description.plain.valueStringThe description of the space in plain format.
ConfluenceCloud.Space.description.plain.representationStringRepresentation format of the description in plain format.
ConfluenceCloud.Space.homepage.idStringID of the homepage of the space.
ConfluenceCloud.Space.homepage.typeStringType of the homepage of the space.
ConfluenceCloud.Space.homepage.statusStringStatus of the homepage of the space.
ConfluenceCloud.Space.homepage.titleStringTitle of the homepage of the space.
ConfluenceCloud.Space.homepage.extensions.positionNumberThe content extension position.
ConfluenceCloud.Space.homepage._links.selfStringLink to the homepage of the space.
ConfluenceCloud.Space.homepage._links.tinyuiStringTiny link to the homepage of the space.
ConfluenceCloud.Space.homepage._links.edituiStringEdit the user interface link to the homepage of the space.
ConfluenceCloud.Space.homepage._links.webuiStringWeb user interface link to the homepage of the space.
ConfluenceCloud.Space.typeStringType of the space.
ConfluenceCloud.Space.permissions.idNumberID of the space permission.
ConfluenceCloud.Space.permissions.subjects.user.results.typeStringType of the user to whom the space permission applies.
ConfluenceCloud.Space.permissions.subjects.user.results.accountIdStringAccount ID of the user to whom the space permission applies.
ConfluenceCloud.Space.permissions.subjects.user.results.accountTypeStringAccount type of the user to whom the space permission applies.
ConfluenceCloud.Space.permissions.subjects.user.results.emailStringEmail of the user to whom the space permission applies.
ConfluenceCloud.Space.permissions.subjects.user.results.publicNameStringPublic name of the user to whom the space permission applies.
ConfluenceCloud.Space.permissions.subjects.user.results.profilePicture.pathStringPath of the user's profile picture to whom the space permission applies.
ConfluenceCloud.Space.permissions.subjects.user.results.profilePicture.widthNumberWidth in pixels of the user's profile picture to whom the space permission applies.
ConfluenceCloud.Space.permissions.subjects.user.results.profilePicture.heightNumberHeight in pixels of the user's profile picture to whom the space permission applies.
ConfluenceCloud.Space.permissions.subjects.user.results.profilePicture.isDefaultBooleanWhether the profile picture of the user is default picture to whom the space permission applies.
ConfluenceCloud.Space.permissions.subjects.user.results.displayNameStringDisplay name of the user to whom the space permission applies.
ConfluenceCloud.Space.permissions.subjects.user.results.isExternalCollaboratorBooleanWhether the user is an external collaborator user.
ConfluenceCloud.Space.permissions.subjects.user.results._links.selfStringLink to the user to whom the space permission applies.
ConfluenceCloud.Space.permissions.subjects.user.sizeNumberSize of the list of users for a given space.
ConfluenceCloud.Space.permissions.subjects.group.results.typeStringType of the group to whom the space permission applies.
ConfluenceCloud.Space.permissions.subjects.group.results.nameStringName of the group to whom the space permission applies.
ConfluenceCloud.Space.permissions.subjects.group.results.idStringID of the group to whom the space permission applies.
ConfluenceCloud.Space.permissions.subjects.group.results._links.selfStringLink to the group to whom the space permission applies.
ConfluenceCloud.Space.permissions.subjects.group.sizeNumberSize of the list of groups for the given space.
ConfluenceCloud.Space.permissions.operation.operationStringName of the permission operation.
ConfluenceCloud.Space.permissions.operation.targetTypeStringThe space or content type that the operation applies to.
ConfluenceCloud.Space.permissions.anonymousAccessBooleanWhether anonymous users have permission to use the operation.
ConfluenceCloud.Space.permissions.unlicensedAccessBooleanWhether unlicensed users have access from JIRA Service Desk when used with the read space operation.
ConfluenceCloud.Space.statusStringStatus of the space.
ConfluenceCloud.Space._links.webuiStringWeb user interface link of the space.
ConfluenceCloud.Space._links.contextStringContext link of the space.
ConfluenceCloud.Space._links.selfStringLink to the space.
ConfluenceCloud.Space._links.collectionStringCollection link of the space.
ConfluenceCloud.Space._links.baseStringBase link to the space.

Command Example#

!confluence-cloud-space-create name="hello_world" unique_key="helloworld111"

Context Example#

{
"ConfluenceCloud": {
"Space": {
"_expandable": {
"lookAndFeel": "/rest/api/settings/lookandfeel?spaceKey=helloworld111",
"settings": "/rest/api/space/helloworld111/settings",
"theme": "/rest/api/space/helloworld111/theme"
},
"_links": {
"base": "https://xsoar-bd.atlassian.net/wiki",
"collection": "/rest/api/space",
"context": "/wiki",
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/space/helloworld111",
"webui": "/spaces/helloworld111"
},
"description": {
"plain": {
"representation": "plain"
}
},
"homepage": {
"_expandable": {
"children": "/rest/api/content/16711835/child",
"container": "/rest/api/space/helloworld111",
"descendants": "/rest/api/content/16711835/descendant",
"history": "/rest/api/content/16711835/history",
"restrictions": "/rest/api/content/16711835/restriction/byOperation",
"space": "/rest/api/space/helloworld111"
},
"_links": {
"editui": "/pages/resumedraft.action?draftId=16711835",
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/content/16711835",
"tinyui": "/x/mwD-/",
"webui": "/spaces/helloworld111/overview"
},
"extensions": {
"position": 797
},
"id": "16711835",
"status": "current",
"title": "hello_world Home",
"type": "page"
},
"id": 16711682,
"key": "helloworld111",
"name": "hello_world",
"permissions": [
{
"anonymousAccess": false,
"id": 16711685,
"operation": {
"operation": "create",
"targetType": "attachment"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/administrators"
},
"id": "10453df5-f7fc-47be-8ca7-bc2949c1bd5b",
"name": "administrators",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711686,
"operation": {
"operation": "delete",
"targetType": "page"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/confluence-users"
},
"id": "e50e7fe6-7961-4775-9bbf-99e4b50f8701",
"name": "confluence-users",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711687,
"operation": {
"operation": "restrict_content",
"targetType": "space"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/site-admins"
},
"id": "b7e24fd2-0faa-4eaa-9f87-b764ae157ae7",
"name": "site-admins",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711688,
"operation": {
"operation": "delete",
"targetType": "space"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/confluence-users"
},
"id": "e50e7fe6-7961-4775-9bbf-99e4b50f8701",
"name": "confluence-users",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711689,
"operation": {
"operation": "delete",
"targetType": "blogpost"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/confluence-users"
},
"id": "e50e7fe6-7961-4775-9bbf-99e4b50f8701",
"name": "confluence-users",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711690,
"operation": {
"operation": "delete",
"targetType": "attachment"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/confluence-users"
},
"id": "e50e7fe6-7961-4775-9bbf-99e4b50f8701",
"name": "confluence-users",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711691,
"operation": {
"operation": "export",
"targetType": "space"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/system-administrators"
},
"id": "2fda36d1-e4e0-4307-bc5f-ed0044f6ff2c",
"name": "system-administrators",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711693,
"operation": {
"operation": "restrict_content",
"targetType": "space"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/system-administrators"
},
"id": "2fda36d1-e4e0-4307-bc5f-ed0044f6ff2c",
"name": "system-administrators",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711694,
"operation": {
"operation": "create",
"targetType": "attachment"
},
"subjects": {
"user": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/user?accountId=5ff2e30b4d2179006ea18449"
},
"accountId": "5ff2e30b4d2179006ea18449",
"accountType": "atlassian",
"displayName": "John Doe",
"email": "dummy.dummy@dummy.com",
"isExternalCollaborator": false,
"profilePicture": {
"height": 48,
"isDefault": false,
"path": "/wiki/aa-avatar/5ff2e30b4d2179006ea18449",
"width": 48
},
"publicName": "John Doe",
"type": "known"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711695,
"operation": {
"operation": "delete",
"targetType": "comment"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/confluence-users"
},
"id": "e50e7fe6-7961-4775-9bbf-99e4b50f8701",
"name": "confluence-users",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711696,
"operation": {
"operation": "create",
"targetType": "comment"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/confluence-users"
},
"id": "e50e7fe6-7961-4775-9bbf-99e4b50f8701",
"name": "confluence-users",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711697,
"operation": {
"operation": "create",
"targetType": "page"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/system-administrators"
},
"id": "2fda36d1-e4e0-4307-bc5f-ed0044f6ff2c",
"name": "system-administrators",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711698,
"operation": {
"operation": "create",
"targetType": "blogpost"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/site-admins"
},
"id": "b7e24fd2-0faa-4eaa-9f87-b764ae157ae7",
"name": "site-admins",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711699,
"operation": {
"operation": "create",
"targetType": "blogpost"
},
"subjects": {
"user": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/user?accountId=5ff2e30b4d2179006ea18449"
},
"accountId": "5ff2e30b4d2179006ea18449",
"accountType": "atlassian",
"displayName": "John Doe",
"email": "dummy.dummy@dummy.com",
"isExternalCollaborator": false,
"profilePicture": {
"height": 48,
"isDefault": false,
"path": "/wiki/aa-avatar/5ff2e30b4d2179006ea18449",
"width": 48
},
"publicName": "John Doe",
"type": "known"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711700,
"operation": {
"operation": "create",
"targetType": "page"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/administrators"
},
"id": "10453df5-f7fc-47be-8ca7-bc2949c1bd5b",
"name": "administrators",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711701,
"operation": {
"operation": "delete",
"targetType": "comment"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/trusted-users-9704e596-7b55-4a8b-a77b-f617d67cffd9"
},
"id": "5178e800-9b33-4b4b-9854-1fdd6776bd42",
"name": "trusted-users-9704e596-7b55-4a8b-a77b-f617d67cffd9",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711702,
"operation": {
"operation": "create",
"targetType": "comment"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/trusted-users-9704e596-7b55-4a8b-a77b-f617d67cffd9"
},
"id": "5178e800-9b33-4b4b-9854-1fdd6776bd42",
"name": "trusted-users-9704e596-7b55-4a8b-a77b-f617d67cffd9",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711704,
"operation": {
"operation": "read",
"targetType": "space"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/confluence-users"
},
"id": "e50e7fe6-7961-4775-9bbf-99e4b50f8701",
"name": "confluence-users",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711705,
"operation": {
"operation": "administer",
"targetType": "space"
},
"subjects": {
"user": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/user?accountId=5ff2e30b4d2179006ea18449"
},
"accountId": "5ff2e30b4d2179006ea18449",
"accountType": "atlassian",
"displayName": "John Doe",
"email": "dummy.dummy@dummy.com",
"isExternalCollaborator": false,
"profilePicture": {
"height": 48,
"isDefault": false,
"path": "/wiki/aa-avatar/5ff2e30b4d2179006ea18449",
"width": 48
},
"publicName": "John Doe",
"type": "known"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711706,
"operation": {
"operation": "delete",
"targetType": "attachment"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/site-admins"
},
"id": "b7e24fd2-0faa-4eaa-9f87-b764ae157ae7",
"name": "site-admins",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711708,
"operation": {
"operation": "administer",
"targetType": "space"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/trusted-users-9704e596-7b55-4a8b-a77b-f617d67cffd9"
},
"id": "5178e800-9b33-4b4b-9854-1fdd6776bd42",
"name": "trusted-users-9704e596-7b55-4a8b-a77b-f617d67cffd9",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711709,
"operation": {
"operation": "read",
"targetType": "space"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/trusted-users-9704e596-7b55-4a8b-a77b-f617d67cffd9"
},
"id": "5178e800-9b33-4b4b-9854-1fdd6776bd42",
"name": "trusted-users-9704e596-7b55-4a8b-a77b-f617d67cffd9",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711710,
"operation": {
"operation": "create",
"targetType": "attachment"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/site-admins"
},
"id": "b7e24fd2-0faa-4eaa-9f87-b764ae157ae7",
"name": "site-admins",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711711,
"operation": {
"operation": "restrict_content",
"targetType": "space"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/administrators"
},
"id": "10453df5-f7fc-47be-8ca7-bc2949c1bd5b",
"name": "administrators",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711714,
"operation": {
"operation": "delete",
"targetType": "page"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/system-administrators"
},
"id": "2fda36d1-e4e0-4307-bc5f-ed0044f6ff2c",
"name": "system-administrators",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711715,
"operation": {
"operation": "read",
"targetType": "space"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/system-administrators"
},
"id": "2fda36d1-e4e0-4307-bc5f-ed0044f6ff2c",
"name": "system-administrators",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711716,
"operation": {
"operation": "delete",
"targetType": "comment"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/system-administrators"
},
"id": "2fda36d1-e4e0-4307-bc5f-ed0044f6ff2c",
"name": "system-administrators",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711717,
"operation": {
"operation": "delete",
"targetType": "blogpost"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/system-administrators"
},
"id": "2fda36d1-e4e0-4307-bc5f-ed0044f6ff2c",
"name": "system-administrators",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711718,
"operation": {
"operation": "create",
"targetType": "blogpost"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/administrators"
},
"id": "10453df5-f7fc-47be-8ca7-bc2949c1bd5b",
"name": "administrators",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711719,
"operation": {
"operation": "create",
"targetType": "comment"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/system-administrators"
},
"id": "2fda36d1-e4e0-4307-bc5f-ed0044f6ff2c",
"name": "system-administrators",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711720,
"operation": {
"operation": "delete",
"targetType": "blogpost"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/trusted-users-9704e596-7b55-4a8b-a77b-f617d67cffd9"
},
"id": "5178e800-9b33-4b4b-9854-1fdd6776bd42",
"name": "trusted-users-9704e596-7b55-4a8b-a77b-f617d67cffd9",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711721,
"operation": {
"operation": "administer",
"targetType": "space"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/administrators"
},
"id": "10453df5-f7fc-47be-8ca7-bc2949c1bd5b",
"name": "administrators",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711722,
"operation": {
"operation": "delete",
"targetType": "page"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/trusted-users-9704e596-7b55-4a8b-a77b-f617d67cffd9"
},
"id": "5178e800-9b33-4b4b-9854-1fdd6776bd42",
"name": "trusted-users-9704e596-7b55-4a8b-a77b-f617d67cffd9",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711723,
"operation": {
"operation": "delete",
"targetType": "space"
},
"subjects": {
"user": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/user?accountId=5ff2e30b4d2179006ea18449"
},
"accountId": "5ff2e30b4d2179006ea18449",
"accountType": "atlassian",
"displayName": "John Doe",
"email": "dummy.dummy@dummy.com",
"isExternalCollaborator": false,
"profilePicture": {
"height": 48,
"isDefault": false,
"path": "/wiki/aa-avatar/5ff2e30b4d2179006ea18449",
"width": 48
},
"publicName": "John Doe",
"type": "known"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711725,
"operation": {
"operation": "delete",
"targetType": "space"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/site-admins"
},
"id": "b7e24fd2-0faa-4eaa-9f87-b764ae157ae7",
"name": "site-admins",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711726,
"operation": {
"operation": "delete",
"targetType": "attachment"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/administrators"
},
"id": "10453df5-f7fc-47be-8ca7-bc2949c1bd5b",
"name": "administrators",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711727,
"operation": {
"operation": "export",
"targetType": "space"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/trusted-users-9704e596-7b55-4a8b-a77b-f617d67cffd9"
},
"id": "5178e800-9b33-4b4b-9854-1fdd6776bd42",
"name": "trusted-users-9704e596-7b55-4a8b-a77b-f617d67cffd9",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711728,
"operation": {
"operation": "create",
"targetType": "page"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/trusted-users-9704e596-7b55-4a8b-a77b-f617d67cffd9"
},
"id": "5178e800-9b33-4b4b-9854-1fdd6776bd42",
"name": "trusted-users-9704e596-7b55-4a8b-a77b-f617d67cffd9",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711729,
"operation": {
"operation": "delete",
"targetType": "page"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/administrators"
},
"id": "10453df5-f7fc-47be-8ca7-bc2949c1bd5b",
"name": "administrators",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711730,
"operation": {
"operation": "create",
"targetType": "attachment"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/confluence-users"
},
"id": "e50e7fe6-7961-4775-9bbf-99e4b50f8701",
"name": "confluence-users",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711731,
"operation": {
"operation": "delete",
"targetType": "space"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/administrators"
},
"id": "10453df5-f7fc-47be-8ca7-bc2949c1bd5b",
"name": "administrators",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711732,
"operation": {
"operation": "delete",
"targetType": "page"
},
"subjects": {
"user": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/user?accountId=5ff2e30b4d2179006ea18449"
},
"accountId": "5ff2e30b4d2179006ea18449",
"accountType": "atlassian",
"displayName": "John Doe",
"email": "dummy.dummy@dummy.com",
"isExternalCollaborator": false,
"profilePicture": {
"height": 48,
"isDefault": false,
"path": "/wiki/aa-avatar/5ff2e30b4d2179006ea18449",
"width": 48
},
"publicName": "John Doe",
"type": "known"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711733,
"operation": {
"operation": "delete",
"targetType": "blogpost"
},
"subjects": {
"user": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/user?accountId=5ff2e30b4d2179006ea18449"
},
"accountId": "5ff2e30b4d2179006ea18449",
"accountType": "atlassian",
"displayName": "John Doe",
"email": "dummy.dummy@dummy.com",
"isExternalCollaborator": false,
"profilePicture": {
"height": 48,
"isDefault": false,
"path": "/wiki/aa-avatar/5ff2e30b4d2179006ea18449",
"width": 48
},
"publicName": "John Doe",
"type": "known"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711735,
"operation": {
"operation": "administer",
"targetType": "space"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/system-administrators"
},
"id": "2fda36d1-e4e0-4307-bc5f-ed0044f6ff2c",
"name": "system-administrators",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711737,
"operation": {
"operation": "delete",
"targetType": "comment"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/site-admins"
},
"id": "b7e24fd2-0faa-4eaa-9f87-b764ae157ae7",
"name": "site-admins",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711738,
"operation": {
"operation": "create",
"targetType": "blogpost"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/confluence-users"
},
"id": "e50e7fe6-7961-4775-9bbf-99e4b50f8701",
"name": "confluence-users",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711739,
"operation": {
"operation": "create",
"targetType": "comment"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/site-admins"
},
"id": "b7e24fd2-0faa-4eaa-9f87-b764ae157ae7",
"name": "site-admins",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711740,
"operation": {
"operation": "delete",
"targetType": "attachment"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/trusted-users-9704e596-7b55-4a8b-a77b-f617d67cffd9"
},
"id": "5178e800-9b33-4b4b-9854-1fdd6776bd42",
"name": "trusted-users-9704e596-7b55-4a8b-a77b-f617d67cffd9",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711741,
"operation": {
"operation": "administer",
"targetType": "space"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/confluence-users"
},
"id": "e50e7fe6-7961-4775-9bbf-99e4b50f8701",
"name": "confluence-users",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711742,
"operation": {
"operation": "administer",
"targetType": "space"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/site-admins"
},
"id": "b7e24fd2-0faa-4eaa-9f87-b764ae157ae7",
"name": "site-admins",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711743,
"operation": {
"operation": "export",
"targetType": "space"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/administrators"
},
"id": "10453df5-f7fc-47be-8ca7-bc2949c1bd5b",
"name": "administrators",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711744,
"operation": {
"operation": "restrict_content",
"targetType": "space"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/trusted-users-9704e596-7b55-4a8b-a77b-f617d67cffd9"
},
"id": "5178e800-9b33-4b4b-9854-1fdd6776bd42",
"name": "trusted-users-9704e596-7b55-4a8b-a77b-f617d67cffd9",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711745,
"operation": {
"operation": "delete",
"targetType": "comment"
},
"subjects": {
"user": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/user?accountId=5ff2e30b4d2179006ea18449"
},
"accountId": "5ff2e30b4d2179006ea18449",
"accountType": "atlassian",
"displayName": "John Doe",
"email": "dummy.dummy@dummy.com",
"isExternalCollaborator": false,
"profilePicture": {
"height": 48,
"isDefault": false,
"path": "/wiki/aa-avatar/5ff2e30b4d2179006ea18449",
"width": 48
},
"publicName": "John Doe",
"type": "known"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711746,
"operation": {
"operation": "delete",
"targetType": "attachment"
},
"subjects": {
"user": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/user?accountId=5ff2e30b4d2179006ea18449"
},
"accountId": "5ff2e30b4d2179006ea18449",
"accountType": "atlassian",
"displayName": "John Doe",
"email": "dummy.dummy@dummy.com",
"isExternalCollaborator": false,
"profilePicture": {
"height": 48,
"isDefault": false,
"path": "/wiki/aa-avatar/5ff2e30b4d2179006ea18449",
"width": 48
},
"publicName": "John Doe",
"type": "known"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711747,
"operation": {
"operation": "read",
"targetType": "space"
},
"subjects": {
"user": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/user?accountId=5ff2e30b4d2179006ea18449"
},
"accountId": "5ff2e30b4d2179006ea18449",
"accountType": "atlassian",
"displayName": "John Doe",
"email": "dummy.dummy@dummy.com",
"isExternalCollaborator": false,
"profilePicture": {
"height": 48,
"isDefault": false,
"path": "/wiki/aa-avatar/5ff2e30b4d2179006ea18449",
"width": 48
},
"publicName": "John Doe",
"type": "known"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711748,
"operation": {
"operation": "create",
"targetType": "blogpost"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/trusted-users-9704e596-7b55-4a8b-a77b-f617d67cffd9"
},
"id": "5178e800-9b33-4b4b-9854-1fdd6776bd42",
"name": "trusted-users-9704e596-7b55-4a8b-a77b-f617d67cffd9",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711749,
"operation": {
"operation": "create",
"targetType": "attachment"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/system-administrators"
},
"id": "2fda36d1-e4e0-4307-bc5f-ed0044f6ff2c",
"name": "system-administrators",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711750,
"operation": {
"operation": "read",
"targetType": "space"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/site-admins"
},
"id": "b7e24fd2-0faa-4eaa-9f87-b764ae157ae7",
"name": "site-admins",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711751,
"operation": {
"operation": "delete",
"targetType": "blogpost"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/administrators"
},
"id": "10453df5-f7fc-47be-8ca7-bc2949c1bd5b",
"name": "administrators",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711752,
"operation": {
"operation": "create",
"targetType": "comment"
},
"subjects": {
"user": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/user?accountId=5ff2e30b4d2179006ea18449"
},
"accountId": "5ff2e30b4d2179006ea18449",
"accountType": "atlassian",
"displayName": "John Doe",
"email": "dummy.dummy@dummy.com",
"isExternalCollaborator": false,
"profilePicture": {
"height": 48,
"isDefault": false,
"path": "/wiki/aa-avatar/5ff2e30b4d2179006ea18449",
"width": 48
},
"publicName": "John Doe",
"type": "known"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711754,
"operation": {
"operation": "delete",
"targetType": "page"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/site-admins"
},
"id": "b7e24fd2-0faa-4eaa-9f87-b764ae157ae7",
"name": "site-admins",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711755,
"operation": {
"operation": "delete",
"targetType": "space"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/system-administrators"
},
"id": "2fda36d1-e4e0-4307-bc5f-ed0044f6ff2c",
"name": "system-administrators",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711756,
"operation": {
"operation": "restrict_content",
"targetType": "space"
},
"subjects": {
"user": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/user?accountId=5ff2e30b4d2179006ea18449"
},
"accountId": "5ff2e30b4d2179006ea18449",
"accountType": "atlassian",
"displayName": "John Doe",
"email": "dummy.dummy@dummy.com",
"isExternalCollaborator": false,
"profilePicture": {
"height": 48,
"isDefault": false,
"path": "/wiki/aa-avatar/5ff2e30b4d2179006ea18449",
"width": 48
},
"publicName": "John Doe",
"type": "known"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711757,
"operation": {
"operation": "restrict_content",
"targetType": "space"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/confluence-users"
},
"id": "e50e7fe6-7961-4775-9bbf-99e4b50f8701",
"name": "confluence-users",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711758,
"operation": {
"operation": "create",
"targetType": "blogpost"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/system-administrators"
},
"id": "2fda36d1-e4e0-4307-bc5f-ed0044f6ff2c",
"name": "system-administrators",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711760,
"operation": {
"operation": "create",
"targetType": "attachment"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/trusted-users-9704e596-7b55-4a8b-a77b-f617d67cffd9"
},
"id": "5178e800-9b33-4b4b-9854-1fdd6776bd42",
"name": "trusted-users-9704e596-7b55-4a8b-a77b-f617d67cffd9",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711761,
"operation": {
"operation": "delete",
"targetType": "attachment"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/system-administrators"
},
"id": "2fda36d1-e4e0-4307-bc5f-ed0044f6ff2c",
"name": "system-administrators",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711762,
"operation": {
"operation": "archive",
"targetType": "page"
},
"subjects": {
"user": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/user?accountId=5ff2e30b4d2179006ea18449"
},
"accountId": "5ff2e30b4d2179006ea18449",
"accountType": "atlassian",
"displayName": "John Doe",
"email": "dummy.dummy@dummy.com",
"isExternalCollaborator": false,
"profilePicture": {
"height": 48,
"isDefault": false,
"path": "/wiki/aa-avatar/5ff2e30b4d2179006ea18449",
"width": 48
},
"publicName": "John Doe",
"type": "known"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711763,
"operation": {
"operation": "read",
"targetType": "space"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/administrators"
},
"id": "10453df5-f7fc-47be-8ca7-bc2949c1bd5b",
"name": "administrators",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711764,
"operation": {
"operation": "export",
"targetType": "space"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/site-admins"
},
"id": "b7e24fd2-0faa-4eaa-9f87-b764ae157ae7",
"name": "site-admins",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711765,
"operation": {
"operation": "create",
"targetType": "comment"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/administrators"
},
"id": "10453df5-f7fc-47be-8ca7-bc2949c1bd5b",
"name": "administrators",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711767,
"operation": {
"operation": "create",
"targetType": "page"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/confluence-users"
},
"id": "e50e7fe6-7961-4775-9bbf-99e4b50f8701",
"name": "confluence-users",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711768,
"operation": {
"operation": "create",
"targetType": "page"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/site-admins"
},
"id": "b7e24fd2-0faa-4eaa-9f87-b764ae157ae7",
"name": "site-admins",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711769,
"operation": {
"operation": "create",
"targetType": "page"
},
"subjects": {
"user": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/user?accountId=5ff2e30b4d2179006ea18449"
},
"accountId": "5ff2e30b4d2179006ea18449",
"accountType": "atlassian",
"displayName": "John Doe",
"email": "dummy.dummy@dummy.com",
"isExternalCollaborator": false,
"profilePicture": {
"height": 48,
"isDefault": false,
"path": "/wiki/aa-avatar/5ff2e30b4d2179006ea18449",
"width": 48
},
"publicName": "John Doe",
"type": "known"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711770,
"operation": {
"operation": "delete",
"targetType": "blogpost"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/site-admins"
},
"id": "b7e24fd2-0faa-4eaa-9f87-b764ae157ae7",
"name": "site-admins",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711771,
"operation": {
"operation": "export",
"targetType": "space"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/confluence-users"
},
"id": "e50e7fe6-7961-4775-9bbf-99e4b50f8701",
"name": "confluence-users",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711772,
"operation": {
"operation": "delete",
"targetType": "space"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/trusted-users-9704e596-7b55-4a8b-a77b-f617d67cffd9"
},
"id": "5178e800-9b33-4b4b-9854-1fdd6776bd42",
"name": "trusted-users-9704e596-7b55-4a8b-a77b-f617d67cffd9",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711773,
"operation": {
"operation": "export",
"targetType": "space"
},
"subjects": {
"user": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/user?accountId=5ff2e30b4d2179006ea18449"
},
"accountId": "5ff2e30b4d2179006ea18449",
"accountType": "atlassian",
"displayName": "John Doe",
"email": "dummy.dummy@dummy.com",
"isExternalCollaborator": false,
"profilePicture": {
"height": 48,
"isDefault": false,
"path": "/wiki/aa-avatar/5ff2e30b4d2179006ea18449",
"width": 48
},
"publicName": "John Doe",
"type": "known"
}
],
"size": 1
}
},
"unlicensedAccess": false
},
{
"anonymousAccess": false,
"id": 16711774,
"operation": {
"operation": "delete",
"targetType": "comment"
},
"subjects": {
"group": {
"results": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/administrators"
},
"id": "10453df5-f7fc-47be-8ca7-bc2949c1bd5b",
"name": "administrators",
"type": "group"
}
],
"size": 1
}
},
"unlicensedAccess": false
}
],
"status": "current",
"type": "global"
}
}
}

Human Readable Output#

Space#

IDNameTypeStatus
16711682hello_worldglobalcurrent

confluence-cloud-content-create#


Creates a page or blogpost for a given space.
Note: To view the expansion of content properties, execute confluence-cloud-content-list and confluence-cloud-content-search commands.

Base Command#

confluence-cloud-content-create

Input#

Argument NameDescriptionRequired
titleThe title of the content.

Note: The maximum title length is 255 characters.
Required
typeThe type of the new content.
Possible values: page, blogpost.
Required
space_keyThe space key that the content is being created in.Required
statusThe status of the new content.
Possible values: current, trashed, draft.

Note: The term 'current' refers to the content that is currently active.

Default is current.
Optional
body_valueThe body of the new content.

Note: 'body_value' must be a string. In order to reflect 'body_value', 'body_representation' is required.
Optional
body_representationThe content format type.
Possible values: view, export_view, styled_view, storage, editor2, anonymous_export_view.
Optional
ancestor_idThe ID of the parent content to create the child content.

Note: Supported for content type page only. To retrieve the ancestor_id, execute the confluence-cloud-content-search command using the query="type=page" argument.
Optional

Context Output#

PathTypeDescription
ConfluenceCloud.Content.idStringThe ID of the content.
ConfluenceCloud.Content.typeStringType of the content.
ConfluenceCloud.Content.statusStringStatus of the content.
ConfluenceCloud.Content.titleStringTitle of the content.
ConfluenceCloud.Content.childTypes.attachment.valueBooleanWhether the attachment has the given content.
ConfluenceCloud.Content.childTypes.attachment._links.selfStringLink to the attachment with the given content.
ConfluenceCloud.Content.childTypes.comment.valueBooleanWhether a comment is associated with the given content.
ConfluenceCloud.Content.childTypes.comment._links.selfStringLink to the comment associated with the given content.
ConfluenceCloud.Content.childTypes.page.valueBooleanWhether the page is associated with the given content.
ConfluenceCloud.Content.childTypes.page._links.selfStringLink to the page associated with given content.
ConfluenceCloud.Content.space.idNumberID of the space that the content is being created in.
ConfluenceCloud.Content.space.keyStringKey of the space that the content is being created in.
ConfluenceCloud.Content.space.nameStringName of the space that the content is being created in.
ConfluenceCloud.Content.space.typeStringType of the space that the content is being created in.
ConfluenceCloud.Content.space.statusStringStatus of the space that the content is being created in.
ConfluenceCloud.Content.space._links.webuiStringWeb user interface link to the space that the content is being created in.
ConfluenceCloud.Content.space._links.selfStringLink to the space that the content is being created in.
ConfluenceCloud.Content.history.latestBooleanWhether the content is the latest content.
ConfluenceCloud.Content.history.createdBy.typeStringType of the user who created the content.
ConfluenceCloud.Content.history.createdBy.accountIdStringAccount ID of the user creating the content.
ConfluenceCloud.Content.history.createdBy.accountTypeStringAccount type of the user creating the content.
ConfluenceCloud.Content.history.createdBy.emailStringEmail of the user creating the content.
ConfluenceCloud.Content.history.createdBy.publicNameStringPublic name of the user creating the content.
ConfluenceCloud.Content.history.createdBy.profilePicture.pathStringProfile picture path of the user creating the content.
ConfluenceCloud.Content.history.createdBy.profilePicture.widthNumberWidth in pixels of the profile picture of the user.
ConfluenceCloud.Content.history.createdBy.profilePicture.heightNumberHeight in pixels of the profile picture of the user.
ConfluenceCloud.Content.history.createdBy.profilePicture.isDefaultBooleanWhether the profile picture is the default profile picture.
ConfluenceCloud.Content.history.createdBy.displayNameStringDisplay name of the user who created the content.
ConfluenceCloud.Content.history.createdBy.isExternalCollaboratorBooleanWhether the user is an external collaborator.
ConfluenceCloud.Content.history.createdBy._links.selfStringLink to the creator of the content.
ConfluenceCloud.Content.history.createdDateDateDate and time, in ISO 8601 format, when the content was created.
ConfluenceCloud.Content.history._links.selfStringLink to the history of the content
ConfluenceCloud.Content.version.by.typeStringType of the user who last updated the content.
ConfluenceCloud.Content.version.by.accountIdStringAccount ID of the user who last updated the content.
ConfluenceCloud.Content.version.by.accountTypeStringAccount type of the user who last updated the content.
ConfluenceCloud.Content.version.by.emailStringEmail of the user who last updated the content.
ConfluenceCloud.Content.version.by.publicNameStringPublic name of the user who last updated the content.
ConfluenceCloud.Content.version.by.profilePicture.pathStringProfile picture of the user who last updated the content.
ConfluenceCloud.Content.version.by.profilePicture.widthNumberWidth in pixels of the profile picture of the user who last updated the content.
ConfluenceCloud.Content.version.by.profilePicture.heightNumberHeight in pixels of the profile picture of the user who last updated the content.
ConfluenceCloud.Content.version.by.profilePicture.isDefaultBooleanWhether the profile picture is the default profile picture.
ConfluenceCloud.Content.version.by.displayNameStringDisplay name of the user who last updated the content.
ConfluenceCloud.Content.version.by.isExternalCollaboratorBooleanWhether the user is an external collaborator.
ConfluenceCloud.Content.version.by._links.selfStringLink to the user who last updated the content.
ConfluenceCloud.Content.version.whenDateDate and time, in ISO 8601 format, when the content was updated.
ConfluenceCloud.Content.version.friendlyWhenStringDisplays when the content was created.
ConfluenceCloud.Content.version.messageStringMessage of the updated content.
ConfluenceCloud.Content.version.numberNumberVersion number of the updated content.
ConfluenceCloud.Content.version.minorEditBooleanWhether the edit was minor.
ConfluenceCloud.Content.version.confRevStringThe revision ID provided by Confluence to be used as a revision in Synchrony.
ConfluenceCloud.Content.version.contentTypeModifiedBooleanTrue if the content type is modified in the version. (e.g., page to blog)
ConfluenceCloud.Content.version._links.selfStringLink to the new version of the content.
ConfluenceCloud.Content.ancestors.idStringID of the parent page of the content.
ConfluenceCloud.Content.ancestors.typeStringType of the parent page of the content.
ConfluenceCloud.Content.ancestors.statusStringStatus of the parent page of the content.
ConfluenceCloud.Content.ancestors.titleStringTitle of the parent page of the content.
ConfluenceCloud.Content.ancestors.extensions.positionNumberThe content extension position.
ConfluenceCloud.Content.ancestors._links.selfStringLink to the parent page of the content.
ConfluenceCloud.Content.ancestors._links.tinyuiStringTiny link to the parent page of the content.
ConfluenceCloud.Content.ancestors._links.edituiStringEdit user interface link to the parent page of the content.
ConfluenceCloud.Content.ancestors._links.webuiStringWeb user interface link to the parent page of the content.
ConfluenceCloud.Content.container.idNumberID of the container of the content.
ConfluenceCloud.Content.container.keyStringKey of the container of the content.
ConfluenceCloud.Content.container.nameStringName of the container of the content.
ConfluenceCloud.Content.container.typeStringType of the container of the content.
ConfluenceCloud.Content.container.statusStringStatus of the container of the content.
ConfluenceCloud.Content.container._links.webuiStringWeb user interface link to the container of the content.
ConfluenceCloud.Content.container._links.selfStringLink to the container of the content.
ConfluenceCloud.Content.body.storage.valueStringThe body of the new content.
ConfluenceCloud.Content.body.storage.representationStringRepresentation format of the content.
ConfluenceCloud.Content.extensions.positionNumberThe content extension position.
ConfluenceCloud.Content._links.edituiStringEdit user interface link of the content.
ConfluenceCloud.Content._links.webuiStringWeb user interface link of the content.
ConfluenceCloud.Content._links.contextStringContext link of the content.
ConfluenceCloud.Content._links.selfStringLink to the content.
ConfluenceCloud.Content._links.tinyuiStringTiny link of the content.
ConfluenceCloud.Content._links.collectionStringCollection link of the content.
ConfluenceCloud.Content._links.baseStringBase link to the content.

Command Example#

!confluence-cloud-content-create title="XSOAR_Page_234567" type=page space_key="XSOAR"

Context Example#

{
"ConfluenceCloud": {
"Content": {
"_expandable": {
"children": "/rest/api/content/16711862/child",
"descendants": "/rest/api/content/16711862/descendant",
"restrictions": "/rest/api/content/16711862/restriction/byOperation"
},
"_links": {
"base": "https://xsoar-bd.atlassian.net/wiki",
"collection": "/rest/api/content",
"context": "/wiki",
"editui": "/pages/resumedraft.action?draftId=16711862",
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/content/16711862",
"tinyui": "/x/tgD-/",
"webui": "/spaces/XSOAR/pages/16711862/XSOAR_Page_234567"
},
"body": {
"storage": {
"_expandable": {
"content": "/rest/api/content/16711862"
},
"representation": "storage"
}
},
"container": {
"_expandable": {
"lookAndFeel": "/rest/api/settings/lookandfeel?spaceKey=XSOAR",
"settings": "/rest/api/space/XSOAR/settings",
"theme": "/rest/api/space/XSOAR/theme"
},
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/space/XSOAR",
"webui": "/spaces/XSOAR"
},
"history": {
"createdBy": {
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/user?accountId=5ff2e30b4d2179006ea18449"
},
"accountId": "5ff2e30b4d2179006ea18449",
"accountType": "atlassian",
"displayName": "John Doe",
"email": "dummy.dummy@dummy.com",
"isExternalCollaborator": false,
"profilePicture": {
"height": 48,
"isDefault": false,
"path": "/wiki/aa-avatar/5ff2e30b4d2179006ea18449",
"width": 48
},
"publicName": "John Doe",
"type": "known"
},
"createdDate": "2021-08-06T06:18:11.470Z"
},
"id": 2064386,
"key": "XSOAR",
"name": "XSOAR_Project",
"status": "current",
"type": "global"
},
"extensions": {
"position": 618
},
"history": {
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/content/16711862/history"
},
"createdBy": {
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/user?accountId=5ff2e30b4d2179006ea18449"
},
"accountId": "5ff2e30b4d2179006ea18449",
"accountType": "atlassian",
"displayName": "John Doe",
"email": "dummy.dummy@dummy.com",
"isExternalCollaborator": false,
"profilePicture": {
"height": 48,
"isDefault": false,
"path": "/wiki/aa-avatar/5ff2e30b4d2179006ea18449",
"width": 48
},
"publicName": "John Doe",
"type": "known"
},
"createdDate": "2021-09-02T06:36:33.937Z",
"latest": true
},
"id": "16711862",
"space": {
"_expandable": {
"lookAndFeel": "/rest/api/settings/lookandfeel?spaceKey=XSOAR",
"settings": "/rest/api/space/XSOAR/settings",
"theme": "/rest/api/space/XSOAR/theme"
},
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/space/XSOAR",
"webui": "/spaces/XSOAR"
},
"id": 2064386,
"key": "XSOAR",
"name": "XSOAR_Project",
"status": "current",
"type": "global"
},
"status": "current",
"title": "XSOAR_Page_234567",
"type": "page",
"version": {
"_expandable": {
"content": "/rest/api/content/16711862"
},
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/content/16711862/version/1"
},
"by": {
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/user?accountId=5ff2e30b4d2179006ea18449"
},
"accountId": "5ff2e30b4d2179006ea18449",
"accountType": "atlassian",
"displayName": "John Doe",
"email": "dummy.dummy@dummy.com",
"isExternalCollaborator": false,
"profilePicture": {
"height": 48,
"isDefault": false,
"path": "/wiki/aa-avatar/5ff2e30b4d2179006ea18449",
"width": 48
},
"publicName": "John Doe",
"type": "known"
},
"confRev": "confluence$content$16711862.2",
"contentTypeModified": false,
"friendlyWhen": "just a moment ago",
"minorEdit": false,
"number": 1,
"when": "2021-09-02T06:36:33.937Z"
}
}
}
}

Human Readable Output#

Content#

IDTitleTypeStatusSpace NameCreated ByCreated At
16711862XSOAR_Page_234567pagecurrentXSOAR_ProjectJohn Doe2021-09-02T06:36:33.937Z

confluence-cloud-comment-create#


Creates a comment for the given content.
Note: To view the expansion of content properties, execute the confluence-cloud-content-list and confluence-cloud-content-search commands.

Base Command#

confluence-cloud-comment-create

Input#

Argument NameDescriptionRequired
statusThe status of the new content.
Possible values: current, trashed, draft.

Note: The term 'current' refers to the comment that is currently active.

Default is current.
Optional
body_valueThe body of the new content.

Note: 'body_value' must be a string.
Required
body_representationThe content format type.
Possible values: storage, editor2, editor.
Required
ancestor_idThe ID of the parent comment for which to create the child comment.

Note: To retrieve the ancestor_id, execute the confluence-cloud-content-search command using the query="type=comment" argument.
Optional
container_idThe ID of the container for which to create a comment.

Note: To retrieve the container_id, execute the confluence-cloud-content-list command.
Required
container_typeThe type of the container.
Possible values: page, blogpost.
Optional

Context Output#

PathTypeDescription
ConfluenceCloud.Comment.idStringThe ID of the comment.
ConfluenceCloud.Comment.typeStringType of the comment.
ConfluenceCloud.Comment.statusStringStatus of the comment.
ConfluenceCloud.Comment.titleStringTitle of the comment.
ConfluenceCloud.Comment.childTypes.attachment.valueBooleanWhether the attachment has the given comment.
ConfluenceCloud.Comment.childTypes.attachment._links.selfStringLink to the attachment with the given comment.
ConfluenceCloud.Comment.childTypes.comment.valueBooleanWhether a comment is associated with the given comment.
ConfluenceCloud.Comment.childTypes.comment._links.selfStringLink to the comment associated with the given comment.
ConfluenceCloud.Comment.childTypes.page.valueBooleanWhether the page is associated with the given comment.
ConfluenceCloud.Comment.childTypes.page._links.selfStringLink to the page associated with the given comment.
ConfluenceCloud.Comment.space.idNumberID of the space that the comment is being created in.
ConfluenceCloud.Comment.space.keyStringKey of the space that the comment is being created in.
ConfluenceCloud.Comment.space.nameStringName of the space that the comment is being created in.
ConfluenceCloud.Comment.space.typeStringType of the space that the comment is being created in.
ConfluenceCloud.Comment.space.statusStringStatus of the space that the comment is being created in.
ConfluenceCloud.Comment.space._links.webuiStringWeb user interface link to the space that the comment is being created in.
ConfluenceCloud.Comment.space._links.selfStringLink to the space that the comment is being created in.
ConfluenceCloud.Comment.history.latestBooleanWhether the comment is the latest comment.
ConfluenceCloud.Comment.history.createdBy.typeStringType of the user who created the comment.
ConfluenceCloud.Comment.history.createdBy.accountIdStringAccount ID of the user creating the comment.
ConfluenceCloud.Comment.history.createdBy.accountTypeStringAccount type of the user creating the comment.
ConfluenceCloud.Comment.history.createdBy.emailStringEmail of the user creating the comment.
ConfluenceCloud.Comment.history.createdBy.publicNameStringPublic name of the user creating the comment.
ConfluenceCloud.Comment.history.createdBy.profilePicture.pathStringProfile picture path of the user creating the comment.
ConfluenceCloud.Comment.history.createdBy.profilePicture.widthNumberWidth in pixels of the profile picture of the user.
ConfluenceCloud.Comment.history.createdBy.profilePicture.heightNumberHeight in pixels of the profile picture of the user.
ConfluenceCloud.Comment.history.createdBy.profilePicture.isDefaultBooleanWhether the profile picture is default.
ConfluenceCloud.Comment.history.createdBy.displayNameStringDisplay name of the user who created the comment.
ConfluenceCloud.Comment.history.createdBy.isExternalCollaboratorBooleanWhether the user is an external collaborator.
ConfluenceCloud.Comment.history.createdBy._links.selfStringLink to the creator of the comment.
ConfluenceCloud.Comment.history.createdDateDateDate and time, in ISO 8601 format, when the comment was created.
ConfluenceCloud.Comment.history._links.selfStringLink to the history of the comment.
ConfluenceCloud.Comment.version.by.typeStringType of the user who last updated the comment.
ConfluenceCloud.Comment.version.by.accountIdStringAccount ID of the user who last updated the comment.
ConfluenceCloud.Comment.version.by.accountTypeStringAccount type of the user who last updated the comment.
ConfluenceCloud.Comment.version.by.emailStringEmail of the user who last updated the comment.
ConfluenceCloud.Comment.version.by.publicNameStringPublic name of the user who last updated the comment.
ConfluenceCloud.Comment.version.by.profilePicture.pathStringProfile picture of the user who last updated the comment.
ConfluenceCloud.Comment.version.by.profilePicture.widthNumberWidth in pixels of the profile picture of the user who last updated the comment.
ConfluenceCloud.Comment.version.by.profilePicture.heightNumberHeight in pixels of the profile picture of the user who last updated the comment.
ConfluenceCloud.Comment.version.by.profilePicture.isDefaultBooleanWhether the profile picture is the default profile picture.
ConfluenceCloud.Comment.version.by.displayNameStringDisplay name of the user who last updated the comment.
ConfluenceCloud.Comment.version.by.isExternalCollaboratorBooleanWhether the user is an external collaborator.
ConfluenceCloud.Comment.version.by._links.selfStringLink to the user who last updated the comment.
ConfluenceCloud.Comment.version.whenDateDate and time, in ISO 8601 format, when the comment was updated.
ConfluenceCloud.Comment.version.friendlyWhenStringDisplays when the content was created.
ConfluenceCloud.Comment.version.messageStringMessage of the updated comment.
ConfluenceCloud.Comment.version.numberNumberVersion number of the updated comment.
ConfluenceCloud.Comment.version.minorEditBooleanWhether the edit was minor.
ConfluenceCloud.Comment.version.confRevStringThe revision ID provided by Confluence to be used as a revision in Synchrony.
ConfluenceCloud.Comment.version.contentTypeModifiedBooleanTrue if the comment type is modified in the version. (e.g., page to blog)
ConfluenceCloud.Comment.version._links.selfStringLink to the new version of the comment.
ConfluenceCloud.Comment.ancestors.idStringID of the parent page of the comment.
ConfluenceCloud.Comment.ancestors.typeStringType of the parent page of the comment.
ConfluenceCloud.Comment.ancestors.statusStringStatus of the parent page of the comment.
ConfluenceCloud.Comment.ancestors.titleStringTitle of the parent page of the comment.
ConfluenceCloud.Comment.ancestors.extensions.locationStringLocation of the comment.
ConfluenceCloud.Comment.ancestors._links.selfStringLink to the parent page of the comment.
ConfluenceCloud.Comment.ancestors._links.tinyuiStringTiny link to the parent page of the comment.
ConfluenceCloud.Comment.ancestors._links.edituiStringEdit user interface link to the parent page of the comment.
ConfluenceCloud.Comment.ancestors._links.webuiStringWeb user interface link to the parent page of the comment.
ConfluenceCloud.Comment.container.idNumberID of the container of the comment.
ConfluenceCloud.Comment.container.keyStringKey of the container of the comment.
ConfluenceCloud.Comment.container.nameStringName of the container of the comment.
ConfluenceCloud.Comment.container.typeStringType of the container of the comment.
ConfluenceCloud.Comment.container.statusStringStatus of the container of the comment.
ConfluenceCloud.Comment.container._links.webuiStringWeb user interface link to the container of the comment.
ConfluenceCloud.Comment.container._links.selfStringLink to the container of the comment.
ConfluenceCloud.Comment.body.storage.valueStringThe body of the new comment.
ConfluenceCloud.Comment.body.storage.representationStringRepresentation format of the comment.
ConfluenceCloud.Comment.extensions.locationStringLocation of the comment.
ConfluenceCloud.Comment._links.edituiStringEdit user interface link of the comment.
ConfluenceCloud.Comment._links.webuiStringWeb user interface link of the comment.
ConfluenceCloud.Comment._links.contextStringContext link of the comment.
ConfluenceCloud.Comment._links.selfStringLink to the comment.
ConfluenceCloud.Comment._links.tinyuiStringTiny link of the comment.
ConfluenceCloud.Comment._links.collectionStringCollection link of the comment.
ConfluenceCloud.Comment._links.baseStringBase link to the comment.

Command Example#

!confluence-cloud-comment-create body_value="hello" body_representation="storage" container_id=2031630

Context Example#

{
"ConfluenceCloud": {
"Comment": {
"_expandable": {
"children": "/rest/api/content/16711873/child",
"descendants": "/rest/api/content/16711873/descendant",
"restrictions": "/rest/api/content/16711873/restriction/byOperation"
},
"_links": {
"base": "https://xsoar-bd.atlassian.net/wiki",
"collection": "/rest/api/content",
"context": "/wiki",
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/content/16711873",
"webui": "/spaces/XSOAR/blog/2021/08/06/2031630/XSOAR_blogpost?focusedCommentId=16711873#comment-16711873"
},
"body": {
"storage": {
"_expandable": {
"content": "/rest/api/content/16711873"
},
"representation": "storage",
"value": "hello"
}
},
"container": {
"_expandable": {
"children": "/rest/api/content/2031630/child",
"container": "/rest/api/space/XSOAR",
"descendants": "/rest/api/content/2031630/descendant",
"restrictions": "/rest/api/content/2031630/restriction/byOperation",
"space": "/rest/api/space/XSOAR"
},
"_links": {
"editui": "/pages/resumedraft.action?draftId=2031630",
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/content/2031630",
"tinyui": "/x/DgAf",
"webui": "/spaces/XSOAR/blog/2021/08/06/2031630/XSOAR_blogpost"
},
"history": {
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/content/2031630/history"
},
"createdBy": {
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/user?accountId=5ff2e30b4d2179006ea18449"
},
"accountId": "5ff2e30b4d2179006ea18449",
"accountType": "atlassian",
"displayName": "John Doe",
"email": "dummy.dummy@dummy.com",
"isExternalCollaborator": false,
"profilePicture": {
"height": 48,
"isDefault": false,
"path": "/wiki/aa-avatar/5ff2e30b4d2179006ea18449",
"width": 48
},
"publicName": "John Doe",
"type": "known"
},
"createdDate": "2021-08-06T06:59:04.777Z",
"latest": true
},
"id": "2031630",
"status": "current",
"title": "XSOAR_blogpost",
"type": "blogpost",
"version": {
"_expandable": {
"content": "/rest/api/content/2031630"
},
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/content/2031630/version/1"
},
"by": {
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/user?accountId=5ff2e30b4d2179006ea18449"
},
"accountId": "5ff2e30b4d2179006ea18449",
"accountType": "atlassian",
"displayName": "John Doe",
"email": "dummy.dummy@dummy.com",
"isExternalCollaborator": false,
"profilePicture": {
"height": 48,
"isDefault": false,
"path": "/wiki/aa-avatar/5ff2e30b4d2179006ea18449",
"width": 48
},
"publicName": "John Doe",
"type": "known"
},
"confRev": "confluence$content$2031630.4",
"contentTypeModified": false,
"friendlyWhen": "Aug 06, 2021",
"minorEdit": false,
"number": 1,
"syncRev": "0.confluence$content$2031630.3",
"syncRevSource": "synchrony-ack",
"when": "2021-08-06T06:59:04.777Z"
}
},
"extensions": {
"location": "footer"
},
"history": {
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/content/16711873/history"
},
"createdBy": {
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/user?accountId=5ff2e30b4d2179006ea18449"
},
"accountId": "5ff2e30b4d2179006ea18449",
"accountType": "atlassian",
"displayName": "John Doe",
"email": "dummy.dummy@dummy.com",
"isExternalCollaborator": false,
"profilePicture": {
"height": 48,
"isDefault": false,
"path": "/wiki/aa-avatar/5ff2e30b4d2179006ea18449",
"width": 48
},
"publicName": "John Doe",
"type": "known"
},
"createdDate": "2021-09-02T06:36:36.737Z",
"latest": true
},
"id": "16711873",
"space": {
"_expandable": {
"lookAndFeel": "/rest/api/settings/lookandfeel?spaceKey=XSOAR",
"settings": "/rest/api/space/XSOAR/settings",
"theme": "/rest/api/space/XSOAR/theme"
},
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/space/XSOAR",
"webui": "/spaces/XSOAR"
},
"id": 2064386,
"key": "XSOAR",
"name": "XSOAR_Project",
"status": "current",
"type": "global"
},
"status": "current",
"title": "Re: XSOAR_blogpost",
"type": "comment",
"version": {
"_expandable": {
"content": "/rest/api/content/16711873"
},
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/content/16711873/version/1"
},
"by": {
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/user?accountId=5ff2e30b4d2179006ea18449"
},
"accountId": "5ff2e30b4d2179006ea18449",
"accountType": "atlassian",
"displayName": "John Doe",
"email": "dummy.dummy@dummy.com",
"isExternalCollaborator": false,
"profilePicture": {
"height": 48,
"isDefault": false,
"path": "/wiki/aa-avatar/5ff2e30b4d2179006ea18449",
"width": 48
},
"publicName": "John Doe",
"type": "known"
},
"contentTypeModified": false,
"friendlyWhen": "just a moment ago",
"minorEdit": false,
"number": 1,
"when": "2021-09-02T06:36:36.737Z"
}
}
}
}

Human Readable Output#

Comment#

IDTitleTypeStatusSpace NameCreated ByCreated At
16711873Re: XSOAR_blogpostcommentcurrentXSOAR_ProjectJohn Doe2021-09-02T06:36:36.737Z

confluence-cloud-space-list#


Returns a list of all Confluence spaces.

Base Command#

confluence-cloud-space-list

Input#

Argument NameDescriptionRequired
limitNumber of records to retrieve in the response.

Note: The minimum value supported is 0 and the maximum value supported is int32.

Default is 50.
Optional
offsetThe starting index of the returned spaces.

Note: The minimum value supported is 0 and the maximum value supported is int32.

Default is 0.
Optional
space_keyThe space key to retrieve the specific space.

Note: Supports a comma-separated list of values.
Optional
space_idThe space ID to retrieve the specific space.

Note: Supports a comma-separated list of values.
Optional
statusFilter the results to list the spaces based on their status.
Possible values: current, archived.

Note: The term 'current' refers to the space that is currently active.
Optional
typeFilter the results to list the spaces based on their type.
Possible values: global, personal.
Optional
favouriteFilter the results to the favorite spaces of the current user.
Possible values: true, false.
Optional
expandIndicates which properties to expand.
For reference, visit https://developer.atlassian.com/cloud/confluence/rest/api-group-space/#api-wiki-rest-api-space-get.

Note: To separate multiple values, use commas. Expanded properties will be populated in context data only.
Optional

Context Output#

PathTypeDescription
ConfluenceCloud.Space.idNumberID of the space.
ConfluenceCloud.Space.keyStringKey of the space.
ConfluenceCloud.Space.nameStringName of the space.
ConfluenceCloud.Space.description.view.valueStringThe description of the space in view format.
ConfluenceCloud.Space.description.view.representationStringRepresentation format of the description in view format.
ConfluenceCloud.Space.description.plain.valueStringThe description of the space in plain format.
ConfluenceCloud.Space.description.plain.representationStringRepresentation format of the description in plain format.
ConfluenceCloud.Space.homepage.idStringID of the homepage of the space.
ConfluenceCloud.Space.homepage.typeStringType of the homepage of the space.
ConfluenceCloud.Space.homepage.statusStringStatus of the homepage of the space.
ConfluenceCloud.Space.homepage.titleStringTitle of the homepage of the space.
ConfluenceCloud.Space.homepage.extensions.positionNumberThe content extension position.
ConfluenceCloud.Space.homepage._links.selfStringLink to the homepage of the space.
ConfluenceCloud.Space.homepage._links.tinyuiStringTiny link to the homepage of the space.
ConfluenceCloud.Space.homepage._links.edituiStringEdit the user interface link to the homepage of the space.
ConfluenceCloud.Space.homepage._links.webuiStringWeb user interface link to the homepage of the space.
ConfluenceCloud.Space.typeStringType of the space.
ConfluenceCloud.Space.permissions.idNumberID of the space permission.
ConfluenceCloud.Space.permissions.subjects.user.results.typeStringType of the user to whom the space permission applies.
ConfluenceCloud.Space.permissions.subjects.user.results.accountIdStringAccount ID of the user to whom the space permission applies.
ConfluenceCloud.Space.permissions.subjects.user.results.accountTypeStringAccount type of the user to whom the space permission applies.
ConfluenceCloud.Space.permissions.subjects.user.results.emailStringEmail of the user to whom the space permission applies.
ConfluenceCloud.Space.permissions.subjects.user.results.publicNameStringPublic name to whom the space permission applies.
ConfluenceCloud.Space.permissions.subjects.user.results.profilePicture.pathStringPath of the user's profile picture to whom the space permission applies.
ConfluenceCloud.Space.permissions.subjects.user.results.profilePicture.widthNumberWidth in pixels of the user's profile picture to whom the space permission applies.
ConfluenceCloud.Space.permissions.subjects.user.results.profilePicture.heightNumberHeight in pixels of the user's profile picture to whom the space permission applies.
ConfluenceCloud.Space.permissions.subjects.user.results.profilePicture.isDefaultBooleanWhether the profile picture of the user is the default profile picture to whom the space permission applies.
ConfluenceCloud.Space.permissions.subjects.user.results.displayNameStringDisplay name of the user to whom the space permission applies.
ConfluenceCloud.Space.permissions.subjects.user.results.isExternalCollaboratorBooleanWhether the user is an external collaborator user.
ConfluenceCloud.Space.permissions.subjects.user.results._links.selfStringLink to the user to whom the space permission applies.
ConfluenceCloud.Space.permissions.subjects.user.sizeNumberSize of the list of users for a given space.
ConfluenceCloud.Space.permissions.subjects.group.results.typeStringType of the group to whom the space permission applies.
ConfluenceCloud.Space.permissions.subjects.group.results.nameStringName of the group to whom the space permission applies.
ConfluenceCloud.Space.permissions.subjects.group.results.idStringID of the group to whom the space permission applies.
ConfluenceCloud.Space.permissions.subjects.group.results._links.selfStringLink to the group to whom the space permission applies.
ConfluenceCloud.Space.permissions.subjects.group.sizeNumberSize of the list of groups for the given space.
ConfluenceCloud.Space.permissions.operation.operationStringName of the permission operation.
ConfluenceCloud.Space.permissions.operation.targetTypeStringThe space or content type that the operation applies to.
ConfluenceCloud.Space.permissions.anonymousAccessBooleanWhether anonymous users have permission to use the operation.
ConfluenceCloud.Space.permissions.unlicensedAccessBooleanWhether unlicensed users have access from JIRA Service Desk when used with the read space operation.
ConfluenceCloud.Space.statusStringStatus of the space.
ConfluenceCloud.Space._links.webuiStringWeb user interface link of the space.
ConfluenceCloud.Space._links.contextStringContext link of the space.
ConfluenceCloud.Space._links.selfStringLink to the space.
ConfluenceCloud.Space._links.collectionStringCollection link of the space.
ConfluenceCloud.Space._links.baseStringBase link to the space.

Command Example#

!confluence-cloud-space-list limit=2

Context Example#

{
"ConfluenceCloud": {
"Space": [
{
"_expandable": {
"homepage": "/rest/api/content/12943822",
"lookAndFeel": "/rest/api/settings/lookandfeel?spaceKey=unique2",
"settings": "/rest/api/space/unique2/settings",
"theme": "/rest/api/space/unique2/theme"
},
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/space/unique2",
"webui": "/spaces/unique2"
},
"history": {
"createdBy": {
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/user?accountId=5ff2e30b4d2179006ea18449"
},
"accountId": "5ff2e30b4d2179006ea18449",
"accountType": "atlassian",
"displayName": "John Doe",
"email": "dummy.dummy@dummy.com",
"isExternalCollaborator": false,
"profilePicture": {
"height": 48,
"isDefault": false,
"path": "/wiki/aa-avatar/5ff2e30b4d2179006ea18449",
"width": 48
},
"publicName": "John Doe",
"type": "known"
},
"createdDate": "2021-08-26T08:50:12.879Z"
},
"id": 12943669,
"key": "unique2",
"name": "11Nam quis nulla. Integer malesuada. In in enim a arcu imperdiet malesuada. Sed vel lectus. Donec odio urna, tempus molestie, porttitor ut, iaculis quis, sem. Phasellus rhoncus. Aenean id metus id velit",
"status": "current",
"type": "global"
},
{
"_expandable": {
"homepage": "/rest/api/content/12976407",
"lookAndFeel": "/rest/api/settings/lookandfeel?spaceKey=unique22",
"settings": "/rest/api/space/unique22/settings",
"theme": "/rest/api/space/unique22/theme"
},
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/space/unique22",
"webui": "/spaces/unique22"
},
"history": {
"createdBy": {
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/user?accountId=5ff2e30b4d2179006ea18449"
},
"accountId": "5ff2e30b4d2179006ea18449",
"accountType": "atlassian",
"displayName": "John Doe",
"email": "dummy.dummy@dummy.com",
"isExternalCollaborator": false,
"profilePicture": {
"height": 48,
"isDefault": false,
"path": "/wiki/aa-avatar/5ff2e30b4d2179006ea18449",
"width": 48
},
"publicName": "John Doe",
"type": "known"
},
"createdDate": "2021-08-26T13:19:25.526Z"
},
"id": 12976314,
"key": "unique22",
"name": "11Nam quis nulla. Integer malesuada. In in enim a arcu imperdiet malesuada. Sed vel lectus. Donec odio urna, tempus molestie, porttitor ut, iaculis quis, sem. Phasellus rhoncus. Aenean id metus id velit",
"status": "current",
"type": "global"
}
]
}
}

Human Readable Output#

Space(s)#

IDSpace KeyNameTypeStatusCreated ByCreated At
12943669unique211Nam quis nulla. Integer malesuada. In in enim a arcu imperdiet malesuada. Sed vel lectus. Donec odio urna, tempus molestie, porttitor ut, iaculis quis, sem. Phasellus rhoncus. Aenean id metus id velitglobalcurrentJohn Doe2021-08-26T08:50:12.879Z
12976314unique2211Nam quis nulla. Integer malesuada. In in enim a arcu imperdiet malesuada. Sed vel lectus. Donec odio urna, tempus molestie, porttitor ut, iaculis quis, sem. Phasellus rhoncus. Aenean id metus id velitglobalcurrentJohn Doe2021-08-26T13:19:25.526Z

confluence-cloud-content-list#


Returns the list of content of Confluence.

Base Command#

confluence-cloud-content-list

Input#

Argument NameDescriptionRequired
limitNumber of records to retrieve in the response.

Note: The minimum value supported is 0 and the maximum value supported is int32.

Default is 50.
Optional
offsetThe starting index of the returned content.

Note: The minimum value supported is 0 and the maximum value supported is int32.

Default is 0.
Optional
space_keyThe space key to retrieve the contents of a specific space.Optional
typeThe type to retrieve the contents.
Possible values: page, blogpost.

Default is page.
Optional
sort_orderOrder in which the response will be sorted.
Possible values: asc, desc.

Note: If ‘sort_key’ is specified, the default value for ‘sort_order’ is ascending.
Optional
sort_keyKey based on which the response will be sorted.

Note: If 'sort_order' is specified, 'sort_key' is required.
Optional
creation_dateThe date from which to return the content created on that specific date.
Formats accepted: 2 days, 2 weeks, 2 months, 2 years, yyyy-mm-dd.
Optional
statusFilter the results to a set of content based on their status. If set to any, content with any status is returned.
Possible values: any, current, trashed, draft, archived.

Note: The term 'current' refers to the content that is currently active.
Optional
expandIndicates which properties to expand.
For reference, visit https://developer.atlassian.com/cloud/confluence/rest/api-group-content/#api-wiki-rest-api-content-get.

Note: To separate multiple values, use commas. Expanded properties will be populated in context data only.
Optional

Context Output#

PathTypeDescription
ConfluenceCloud.Content.idStringThe ID of the content.
ConfluenceCloud.Content.typeStringType of the content.
ConfluenceCloud.Content.statusStringStatus of the content.
ConfluenceCloud.Content.titleStringTitle of the content.
ConfluenceCloud.Content.childTypes.attachment.valueBooleanWhether the attachment has the given content.
ConfluenceCloud.Content.childTypes.attachment._links.selfStringLink to the attachment with the given content.
ConfluenceCloud.Content.childTypes.comment.valueBooleanWhether a comment is associated with the given content.
ConfluenceCloud.Content.childTypes.comment._links.selfStringLink to the comment associated with the given content.
ConfluenceCloud.Content.childTypes.page.valueBooleanWhether the page is associated with the given content.
ConfluenceCloud.Content.childTypes.page._links.selfStringLink to page associated with given content.
ConfluenceCloud.Content.space.idNumberID of the space that the content is being created in.
ConfluenceCloud.Content.space.keyStringKey of the space that the content is being created in.
ConfluenceCloud.Content.space.nameStringName of the space that the content is being created in.
ConfluenceCloud.Content.space.typeStringType of the space that the content is being created in.
ConfluenceCloud.Content.space.statusStringStatus of the space that the content is being created in.
ConfluenceCloud.Content.space._links.webuiStringWeb user interface link to the space that the content is being created in.
ConfluenceCloud.Content.space._links.selfStringLink to the space that the content is being created in.
ConfluenceCloud.Content.history.latestBooleanWhether the content is the latest content.
ConfluenceCloud.Content.history.createdBy.typeStringType of the user who created the content.
ConfluenceCloud.Content.history.createdBy.accountIdStringAccount ID of the user creating the content.
ConfluenceCloud.Content.history.createdBy.accountTypeStringAccount type of the user creating the content.
ConfluenceCloud.Content.history.createdBy.emailStringEmail of the user creating the content.
ConfluenceCloud.Content.history.createdBy.publicNameStringPublic name of the user creating the content.
ConfluenceCloud.Content.history.createdBy.profilePicture.pathStringProfile picture path of the user creating the content.
ConfluenceCloud.Content.history.createdBy.profilePicture.widthNumberWidth in pixels of the profile picture of the user.
ConfluenceCloud.Content.history.createdBy.profilePicture.heightNumberHeight in pixels of the profile picture of the user.
ConfluenceCloud.Content.history.createdBy.profilePicture.isDefaultBooleanWhether the profile picture is the default profile picture.
ConfluenceCloud.Content.history.createdBy.displayNameStringDisplay name of the user who created the content.
ConfluenceCloud.Content.history.createdBy.isExternalCollaboratorBooleanWhether the user is an external collaborator.
ConfluenceCloud.Content.history.createdBy._links.selfStringLink to the creator of the content.
ConfluenceCloud.Content.history.createdDateDateDate and time, in ISO 8601 format, when the content was created.
ConfluenceCloud.Content.history._links.selfStringLink to the history of the content.
ConfluenceCloud.Content.version.by.typeStringType of the user who last updated the content.
ConfluenceCloud.Content.version.by.accountIdStringAccount ID of the user who last updated the content.
ConfluenceCloud.Content.version.by.accountTypeStringAccount type of the user who last updated the content.
ConfluenceCloud.Content.version.by.emailStringEmail of the user who last updated the content.
ConfluenceCloud.Content.version.by.publicNameStringPublic name of the user who last updated the content.
ConfluenceCloud.Content.version.by.profilePicture.pathStringProfile picture path of the user who last updated the content.
ConfluenceCloud.Content.version.by.profilePicture.widthNumberWidth in pixels of the profile picture of the user who last updated the content.
ConfluenceCloud.Content.version.by.profilePicture.heightNumberHeight in pixels of the profile picture of the user who last updated the content.
ConfluenceCloud.Content.version.by.profilePicture.isDefaultBooleanWhether the profile picture is the default profile picture.
ConfluenceCloud.Content.version.by.displayNameStringDisplay name of the user who last updated the content.
ConfluenceCloud.Content.version.by.isExternalCollaboratorBooleanWhether the user is an external collaborator.
ConfluenceCloud.Content.version.by._links.selfStringLink to the user who last updated the content.
ConfluenceCloud.Content.version.whenDateDate and time, in ISO 8601 format, when the content was updated.
ConfluenceCloud.Content.version.friendlyWhenStringDisplays when the content was created.
ConfluenceCloud.Content.version.messageStringMessage of the updated content.
ConfluenceCloud.Content.version.numberNumberVersion number of the updated content.
ConfluenceCloud.Content.version.minorEditBooleanWhether the edit was minor.
ConfluenceCloud.Content.version.confRevStringThe revision ID provided by Confluence to be used as a revision in Synchrony
ConfluenceCloud.Content.version.contentTypeModifiedBooleanTrue if the content type is modified in the version. (e.g., page to blog)
ConfluenceCloud.Content.version._links.selfStringLink to the new version of the content.
ConfluenceCloud.Content.ancestors.idStringID of the parent page of the content.
ConfluenceCloud.Content.ancestors.typeStringType of the parent page of the content.
ConfluenceCloud.Content.ancestors.statusStringStatus of the parent page of the content.
ConfluenceCloud.Content.container.idNumberID of the container of the content.
ConfluenceCloud.Content.container.keyStringKey of the container of the content.
ConfluenceCloud.Content.container.nameStringName of the container of the content.
ConfluenceCloud.Content.container.typeStringType of the container of the content.
ConfluenceCloud.Content.container.statusStringStatus of the container of the content.
ConfluenceCloud.Content.container._links.webuiStringWeb user interface link to the container of the content.
ConfluenceCloud.Content.container._links.selfStringLink to the container of the content.
ConfluenceCloud.Content.body.storage.valueStringThe body of the new content.
ConfluenceCloud.Content.body.storage.representationStringRepresentation format of the content.
ConfluenceCloud.Content.extensions.positionNumberThe content extension position.
ConfluenceCloud.Content._links.edituiStringEdit the user interface link of the content.
ConfluenceCloud.Content._links.webuiStringWeb user interface link of the content.
ConfluenceCloud.Content._links.selfStringLink to the content.
ConfluenceCloud.Content._links.tinyuiStringTiny link of the content.

Command Example#

!confluence-cloud-content-list limit=2

Context Example#

{
"ConfluenceCloud": {
"Content": [
{
"_expandable": {
"children": "/rest/api/content/65639/child",
"descendants": "/rest/api/content/65639/descendant",
"restrictions": "/rest/api/content/65639/restriction/byOperation"
},
"_links": {
"editui": "/pages/resumedraft.action?draftId=65639",
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/content/65639",
"tinyui": "/x/ZwAB",
"webui": "/spaces/~680738455/pages/65639/demo"
},
"childTypes": {
"attachment": {
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/content/65639/child/attachment"
},
"value": false
},
"comment": {
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/content/65639/child/comment"
},
"value": true
},
"page": {
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/content/65639/child/page"
},
"value": true
}
},
"container": {
"_expandable": {
"lookAndFeel": "/rest/api/settings/lookandfeel?spaceKey=~680738455",
"settings": "/rest/api/space/~680738455/settings",
"theme": "/rest/api/space/~680738455/theme"
},
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/space/~680738455",
"webui": "/spaces/~680738455"
},
"id": 65538,
"key": "~680738455",
"name": "John Doe",
"status": "current",
"type": "personal"
},
"extensions": {
"position": "none"
},
"history": {
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/content/65639/history"
},
"createdBy": {
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/user?accountId=5ff2e30b4d2179006ea18449"
},
"accountId": "5ff2e30b4d2179006ea18449",
"accountType": "atlassian",
"displayName": "John Doe",
"email": "dummy.dummy@dummy.com",
"isExternalCollaborator": false,
"profilePicture": {
"height": 48,
"isDefault": false,
"path": "/wiki/aa-avatar/5ff2e30b4d2179006ea18449",
"width": 48
},
"publicName": "John Doe",
"type": "known"
},
"createdDate": "2021-08-02T09:53:05.077Z",
"latest": true
},
"id": "65639",
"space": {
"_expandable": {
"lookAndFeel": "/rest/api/settings/lookandfeel?spaceKey=~680738455",
"settings": "/rest/api/space/~680738455/settings",
"theme": "/rest/api/space/~680738455/theme"
},
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/space/~680738455",
"webui": "/spaces/~680738455"
},
"id": 65538,
"key": "~680738455",
"name": "John Doe",
"status": "current",
"type": "personal"
},
"status": "current",
"title": "demo",
"type": "page",
"version": {
"_expandable": {
"content": "/rest/api/content/65639"
},
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/content/65639/version/4"
},
"by": {
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/user?accountId=5ff2e30b4d2179006ea18449"
},
"accountId": "5ff2e30b4d2179006ea18449",
"accountType": "atlassian",
"displayName": "John Doe",
"email": "dummy.dummy@dummy.com",
"isExternalCollaborator": false,
"profilePicture": {
"height": 48,
"isDefault": false,
"path": "/wiki/aa-avatar/5ff2e30b4d2179006ea18449",
"width": 48
},
"publicName": "John Doe",
"type": "known"
},
"confRev": "confluence$content$65639.32",
"contentTypeModified": false,
"friendlyWhen": "yesterday at 11:39 AM",
"minorEdit": false,
"number": 4,
"syncRev": "0.confluence$content$65639.30",
"syncRevSource": "synchrony-ack",
"when": "2021-09-01T06:09:38.912Z"
}
},
{
"_expandable": {
"children": "/rest/api/content/65656/child",
"descendants": "/rest/api/content/65656/descendant",
"restrictions": "/rest/api/content/65656/restriction/byOperation"
},
"_links": {
"editui": "/pages/resumedraft.action?draftId=65656",
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/content/65656",
"tinyui": "/x/eAAB",
"webui": "/spaces/~680738455/pages/65656/Product+requirements"
},
"ancestors": [
{
"_expandable": {
"children": "/rest/api/content/65639/child",
"container": "/rest/api/space/~680738455",
"descendants": "/rest/api/content/65639/descendant",
"history": "/rest/api/content/65639/history",
"restrictions": "/rest/api/content/65639/restriction/byOperation",
"space": "/rest/api/space/~680738455"
},
"_links": {
"editui": "/pages/resumedraft.action?draftId=65639",
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/content/65639",
"tinyui": "/x/ZwAB",
"webui": "/spaces/~680738455/pages/65639/demo"
},
"extensions": {
"position": "none"
},
"id": "65639",
"status": "current",
"title": "demo",
"type": "page"
}
],
"childTypes": {
"attachment": {
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/content/65656/child/attachment"
},
"value": false
},
"comment": {
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/content/65656/child/comment"
},
"value": true
},
"page": {
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/content/65656/child/page"
},
"value": false
}
},
"container": {
"_expandable": {
"lookAndFeel": "/rest/api/settings/lookandfeel?spaceKey=~680738455",
"settings": "/rest/api/space/~680738455/settings",
"theme": "/rest/api/space/~680738455/theme"
},
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/space/~680738455",
"webui": "/spaces/~680738455"
},
"id": 65538,
"key": "~680738455",
"name": "John Doe",
"status": "current",
"type": "personal"
},
"extensions": {
"position": 499279072
},
"history": {
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/content/65656/history"
},
"createdBy": {
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/user?accountId=5ff2e30b4d2179006ea18449"
},
"accountId": "5ff2e30b4d2179006ea18449",
"accountType": "atlassian",
"displayName": "John Doe",
"email": "dummy.dummy@dummy.com",
"isExternalCollaborator": false,
"profilePicture": {
"height": 48,
"isDefault": false,
"path": "/wiki/aa-avatar/5ff2e30b4d2179006ea18449",
"width": 48
},
"publicName": "John Doe",
"type": "known"
},
"createdDate": "2021-08-02T09:53:05.312Z",
"latest": true
},
"id": "65656",
"space": {
"_expandable": {
"lookAndFeel": "/rest/api/settings/lookandfeel?spaceKey=~680738455",
"settings": "/rest/api/space/~680738455/settings",
"theme": "/rest/api/space/~680738455/theme"
},
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/space/~680738455",
"webui": "/spaces/~680738455"
},
"id": 65538,
"key": "~680738455",
"name": "John Doe",
"status": "current",
"type": "personal"
},
"status": "current",
"title": "Product requirements",
"type": "page",
"version": {
"_expandable": {
"content": "/rest/api/content/65656"
},
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/content/65656/version/1"
},
"by": {
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/user?accountId=5ff2e30b4d2179006ea18449"
},
"accountId": "5ff2e30b4d2179006ea18449",
"accountType": "atlassian",
"displayName": "John Doe",
"email": "dummy.dummy@dummy.com",
"isExternalCollaborator": false,
"profilePicture": {
"height": 48,
"isDefault": false,
"path": "/wiki/aa-avatar/5ff2e30b4d2179006ea18449",
"width": 48
},
"publicName": "John Doe",
"type": "known"
},
"confRev": "confluence$content$65656.5",
"contentTypeModified": false,
"friendlyWhen": "Aug 02, 2021",
"minorEdit": false,
"number": 1,
"syncRev": "0.confluence$content$65656.2",
"syncRevSource": "synchrony-ack",
"when": "2021-08-02T09:53:05.312Z"
}
}
]
}
}

Human Readable Output#

Content(s)#

IDTitleTypeStatusSpace NameCreated ByCreated AtVersion
65639demopagecurrentJohn DoeJohn Doe2021-08-02T09:53:05.077Z2
65656Product requirementspagecurrentJohn DoeJohn Doe2021-08-02T09:53:05.312Z2

confluence-cloud-content-delete#


Delete the content depending on the content's type and status.

Note: If the content's type is page or blogpost, it should be moved to trash before deleting permanently.

Base Command#

confluence-cloud-content-delete

Input#

Argument NameDescriptionRequired
content_idThe ID of the content to be deleted.Required
deletion_typeThe deletion type for the content to be deleted.
Possible values: move to trash (current), permanent delete (trashed), permanent delete draft (draft).
Optional

Context Output#

There is no context output for this command.

Command Example#

!confluence-cloud-content-delete content_id="3704312"

Human Readable Output#

Content with Id 3704312 is deleted successfully.

confluence-cloud-content-update#


Update the existing content with new content.
Note: Updating draft content is currently not supported.

Base Command#

confluence-cloud-content-update

Input#

Argument NameDescriptionRequired
content_idThe ID of the content to be updated.Required
statusThe updated status of the content.
Possible values: current, trashed, historical, draft.

Note: The term 'current' refers to the content that is currently active.

Default is current.
Optional
versionThe new version for the updated content. Set the version to the current version number incremented by one. If the status changed to 'draft', then it must be 1.

Note: To retrieve the current version, execute the confluence-cloud-content-search command using the query="id={content_id}" argument.
Required
titleThe updated title of the content. If the field is not changing, set the title to the current title.

Note: The maximum title length is 255 characters.
Required
typeThe type of content. Set the type to the current type of the content.
Possible values: page, blogpost, comment, attachment.
Required
body_valueThe body of the content in the relevant format.Optional
body_representationThe content format type.
Possible values: view, export_view, styled_view, storage, editor2, anonymous_export_view.

Note: If type is comment, possible values are editor, editor2 or storage.
Optional

Context Output#

PathTypeDescription
ConfluenceCloud.Content.idStringThe ID of the content.
ConfluenceCloud.Content.typeStringType of the content.
ConfluenceCloud.Content.statusStringStatus of the content.
ConfluenceCloud.Content.titleStringTitle of the content.
ConfluenceCloud.Content.childTypes.attachment.valueBooleanWhether the attachment has the given content.
ConfluenceCloud.Content.childTypes.attachment._links.selfStringLink to the attachment with the given content.
ConfluenceCloud.Content.childTypes.comment.valueBooleanWhether a comment is associated with the given content.
ConfluenceCloud.Content.childTypes.comment._links.selfStringLink to the comment associated with the given content.
ConfluenceCloud.Content.childTypes.page.valueBooleanWhether the page is associated with the given content.
ConfluenceCloud.Content.childTypes.page._links.selfStringLink to the page associated with the given content.
ConfluenceCloud.Content.space.idNumberID of the space that the content is being created in.
ConfluenceCloud.Content.space.keyStringKey of the space that the content is being created in.
ConfluenceCloud.Content.space.nameStringName of the space that the content is being created in.
ConfluenceCloud.Content.space.typeStringType of the space that the content is being created in.
ConfluenceCloud.Content.space.statusStringStatus of the space that the content is being created in.
ConfluenceCloud.Content.space._links.webuiStringWeb user interface link to the space that the content is being created in.
ConfluenceCloud.Content.space._links.selfStringLink to the space that the content is being created in.
ConfluenceCloud.Content.history.latestBooleanWhether the content is the latest content.
ConfluenceCloud.Content.history.createdBy.typeStringType of the user who created the content.
ConfluenceCloud.Content.history.createdBy.accountIdStringAccount ID of the user creating the content.
ConfluenceCloud.Content.history.createdBy.accountTypeStringAccount type of the user creating the content.
ConfluenceCloud.Content.history.createdBy.emailStringEmail of the user creating the content.
ConfluenceCloud.Content.history.createdBy.publicNameStringPublic name of the user creating the content.
ConfluenceCloud.Content.history.createdBy.profilePicture.pathStringProfile picture path of the user creating the content.
ConfluenceCloud.Content.history.createdBy.profilePicture.widthNumberWidth in pixels of the profile picture of the user.
ConfluenceCloud.Content.history.createdBy.profilePicture.heightNumberHeight in pixels of the profile picture of the user.
ConfluenceCloud.Content.history.createdBy.profilePicture.isDefaultBooleanWhether the profile picture is default.
ConfluenceCloud.Content.history.createdBy.displayNameStringDisplay name of the user who created the content.
ConfluenceCloud.Content.history.createdBy.isExternalCollaboratorBooleanWhether the user is an external collaborator.
ConfluenceCloud.Content.history.createdBy._links.selfStringLink to the creator of the content.
ConfluenceCloud.Content.history.createdDateDateDate and time, in ISO 8601 format, when the content was created.
ConfluenceCloud.Content.history._links.selfStringLink to the history of the content.
ConfluenceCloud.Content.version.by.typeStringType of the user who last updated the content.
ConfluenceCloud.Content.version.by.accountIdStringAccount ID of the user who last updated the content.
ConfluenceCloud.Content.version.by.accountTypeStringAccount type of the user who last updated the content.
ConfluenceCloud.Content.version.by.emailStringEmail of the user who last updated the content.
ConfluenceCloud.Content.version.by.publicNameStringPublic name of the user who last updated the content.
ConfluenceCloud.Content.version.by.profilePicture.pathStringProfile picture path of the user who last updated the content.
ConfluenceCloud.Content.version.by.profilePicture.widthNumberWidth in pixels of the profile picture of the user who last updated the content.
ConfluenceCloud.Content.version.by.profilePicture.heightNumberHeight in pixels of the profile picture of the user who last updated the content.
ConfluenceCloud.Content.version.by.profilePicture.isDefaultBooleanWhether the profile picture is default.
ConfluenceCloud.Content.version.by.displayNameStringDisplay name of the user who last updated the content.
ConfluenceCloud.Content.version.by.isExternalCollaboratorBooleanWhether the user is an external collaborator.
ConfluenceCloud.Content.version.by._links.selfStringLink to the user who last updated the content.
ConfluenceCloud.Content.version.whenDateDate and time, in ISO 8601 format, when the content was updated.
ConfluenceCloud.Content.version.friendlyWhenStringDisplay the information of when the content was created.
ConfluenceCloud.Content.version.messageStringMessage of the updated content.
ConfluenceCloud.Content.version.numberNumberVersion number of the updated content.
ConfluenceCloud.Content.version.minorEditBooleanWhether the edit was minor.
ConfluenceCloud.Content.version.confRevStringThe revision ID provided by Confluence to be used as a revision in Synchrony.
ConfluenceCloud.Content.version.contentTypeModifiedBooleanTrue if the content type is modified in the version. (e.g. page to blog)
ConfluenceCloud.Content.version._links.selfStringLink to the new version of the content.
ConfluenceCloud.Content.ancestors.idStringID of the parent page of the content.
ConfluenceCloud.Content.ancestors.typeStringType of the parent page of the content.
ConfluenceCloud.Content.ancestors.statusStringStatus of the parent page of the content.
ConfluenceCloud.Content.ancestors.titleStringTitle of the parent page of the content.
ConfluenceCloud.Content.ancestors.extensions.positionNumberThe content extension position.
ConfluenceCloud.Content.ancestors._links.selfStringLink to the parent page of the content.
ConfluenceCloud.Content.ancestors._links.tinyuiStringTiny link to the parent page of the content.
ConfluenceCloud.Content.ancestors._links.edituiStringEdit the user interface link to the parent page of the content.
ConfluenceCloud.Content.ancestors._links.webuiStringWeb user interface link to the parent page of the content.
ConfluenceCloud.Content.container.idNumberID of the container of the content.
ConfluenceCloud.Content.container.keyStringKey of the container of the content.
ConfluenceCloud.Content.container.nameStringName of the container of the content.
ConfluenceCloud.Content.container.typeStringType of the container of the content.
ConfluenceCloud.Content.container.statusStringStatus of the container of the content.
ConfluenceCloud.Content.container._links.webuiStringWeb user interface link to the container of the content.
ConfluenceCloud.Content.container._links.selfStringLink to the container of the content.
ConfluenceCloud.Content.body.storage.valueStringThe body of the new content.
ConfluenceCloud.Content.body.storage.representationStringRepresentation format of the content.
ConfluenceCloud.Content.extensions.positionNumberThe content extension position.
ConfluenceCloud.Content._links.edituiStringEdit the user interface link of the content.
ConfluenceCloud.Content._links.webuiStringWeb user interface link of the content.
ConfluenceCloud.Content._links.contextStringContext link of the content.
ConfluenceCloud.Content._links.selfStringLink to the content.
ConfluenceCloud.Content._links.tinyuiStringTiny link of the content.
ConfluenceCloud.Content._links.collectionStringCollection link of the content.
ConfluenceCloud.Content._links.baseStringBase link to the content.

Command Example#

!confluence-cloud-content-update content_id=2097159 title="testing123" type=page version=5

Context Example#

{
"ConfluenceCloud": {
"Content": {
"_expandable": {
"children": "/rest/api/content/2097159/child",
"descendants": "/rest/api/content/2097159/descendant",
"restrictions": "/rest/api/content/2097159/restriction/byOperation"
},
"_links": {
"base": "https://xsoar-bd.atlassian.net/wiki",
"collection": "/rest/api/content",
"context": "/wiki",
"editui": "/pages/resumedraft.action?draftId=2097159",
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/content/2097159",
"tinyui": "/x/BwAg",
"webui": "/spaces/XSOAR/pages/2097159/testing123"
},
"body": {
"storage": {
"_expandable": {
"content": "/rest/api/content/2097159"
},
"representation": "storage"
}
},
"container": {
"_expandable": {
"lookAndFeel": "/rest/api/settings/lookandfeel?spaceKey=XSOAR",
"settings": "/rest/api/space/XSOAR/settings",
"theme": "/rest/api/space/XSOAR/theme"
},
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/space/XSOAR",
"webui": "/spaces/XSOAR"
},
"history": {
"createdBy": {
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/user?accountId=5ff2e30b4d2179006ea18449"
},
"accountId": "5ff2e30b4d2179006ea18449",
"accountType": "atlassian",
"displayName": "John Doe",
"email": "dummy.dummy@dummy.com",
"isExternalCollaborator": false,
"profilePicture": {
"height": 48,
"isDefault": false,
"path": "/wiki/aa-avatar/5ff2e30b4d2179006ea18449",
"width": 48
},
"publicName": "John Doe",
"type": "known"
},
"createdDate": "2021-08-06T06:18:11.470Z"
},
"id": 2064386,
"key": "XSOAR",
"name": "XSOAR_Project",
"status": "current",
"type": "global"
},
"extensions": {
"position": "none"
},
"history": {
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/content/2097159/history"
},
"createdBy": {
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/user?accountId=5ff2e30b4d2179006ea18449"
},
"accountId": "5ff2e30b4d2179006ea18449",
"accountType": "atlassian",
"displayName": "John Doe",
"email": "dummy.dummy@dummy.com",
"isExternalCollaborator": false,
"profilePicture": {
"height": 48,
"isDefault": false,
"path": "/wiki/aa-avatar/5ff2e30b4d2179006ea18449",
"width": 48
},
"publicName": "John Doe",
"type": "known"
},
"createdDate": "2021-08-06T06:23:36.076Z",
"latest": true
},
"id": "2097159",
"space": {
"_expandable": {
"lookAndFeel": "/rest/api/settings/lookandfeel?spaceKey=XSOAR",
"settings": "/rest/api/space/XSOAR/settings",
"theme": "/rest/api/space/XSOAR/theme"
},
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/space/XSOAR",
"webui": "/spaces/XSOAR"
},
"id": 2064386,
"key": "XSOAR",
"name": "XSOAR_Project",
"status": "current",
"type": "global"
},
"status": "current",
"title": "testing123",
"type": "page",
"version": {
"_expandable": {
"content": "/rest/api/content/2097159"
},
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/content/2097159/version/4"
},
"by": {
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/user?accountId=5ff2e30b4d2179006ea18449"
},
"accountId": "5ff2e30b4d2179006ea18449",
"accountType": "atlassian",
"displayName": "John Doe",
"email": "dummy.dummy@dummy.com",
"isExternalCollaborator": false,
"profilePicture": {
"height": 48,
"isDefault": false,
"path": "/wiki/aa-avatar/5ff2e30b4d2179006ea18449",
"width": 48
},
"publicName": "John Doe",
"type": "known"
},
"confRev": "confluence$content$2097159.25",
"contentTypeModified": false,
"friendlyWhen": "38 minutes ago",
"minorEdit": false,
"number": 4,
"syncRev": "0.confluence$content$2097159.22",
"syncRevSource": "synchrony-ack",
"when": "2021-09-02T05:58:18.823Z"
}
}
}
}

Human Readable Output#

Content#

IDTitleTypeStatusSpace NameCreated ByCreated At
2097159testing123pagecurrentXSOAR_ProjectJohn Doe2021-08-06T06:23:36.076Z

confluence-cloud-content-search#


Retrieves a list of content using the Confluence Query Language (CQL).

For more information on CQL, see: https://developer.atlassian.com/cloud/confluence/advanced-searching-using-cql/.

Base Command#

confluence-cloud-content-search

Input#

Argument NameDescriptionRequired
queryThe CQL (Confluence Query Language) string that is used to find the requested content.Required
limitNumber of records to retrieve in the response.

Note: The minimum value supported is 0 and the maximum value supported is int32.

Default is 50.
Optional
content_statusFilter the result based on the content status.
Possible values: current, draft, archived.

Note: Supports multiple comma-separated values.
Optional
next_page_tokenRetrieves the next page records for the given query (next_page_token retrieved in previous content response).Optional
expandIndicates which properties to expand.
For reference, visit https://developer.atlassian.com/cloud/confluence/rest/api-group-content/#api-wiki-rest-api-content-search-get.

Note: To separate multiple values, use commas. Expanded properties will be populated in context data only.
Optional

Context Output#

PathTypeDescription
ConfluenceCloud.Content.idStringThe ID of the content.
ConfluenceCloud.Content.typeStringType of the content.
ConfluenceCloud.Content.statusStringStatus of the content.
ConfluenceCloud.Content.titleStringTitle of the content.
ConfluenceCloud.Content.childTypes.attachment.valueBooleanWhether the attachment has the given content.
ConfluenceCloud.Content.childTypes.attachment._links.selfStringLink to the attachment with the given content.
ConfluenceCloud.Content.childTypes.comment.valueBooleanWhether a comment is associated with the given content.
ConfluenceCloud.Content.childTypes.comment._links.selfStringLink to the comment associated with the given content.
ConfluenceCloud.Content.childTypes.page.valueBooleanWhether the page is associated with the given content.
ConfluenceCloud.Content.childTypes.page._links.selfStringLink to the page associated with given content.
ConfluenceCloud.Content.space.idNumberID of the space that the content is being created in.
ConfluenceCloud.Content.space.keyStringKey of the space that the content is being created in.
ConfluenceCloud.Content.space.nameStringName of the space that the content is being created in.
ConfluenceCloud.Content.space.typeStringType of the space that the content is being created in.
ConfluenceCloud.Content.space.statusStringStatus of the space that the content is being created in.
ConfluenceCloud.Content.space._links.webuiStringWeb user interface link to the space that the content is being created in.
ConfluenceCloud.Content.space._links.selfStringLink to the space that the content is being created in.
ConfluenceCloud.Content.history.latestBooleanWhether the content is the latest content.
ConfluenceCloud.Content.history.createdBy.typeStringType of the user who created the content.
ConfluenceCloud.Content.history.createdBy.accountIdStringAccount ID of the user creating the content.
ConfluenceCloud.Content.history.createdBy.accountTypeStringAccount type of the user creating the content.
ConfluenceCloud.Content.history.createdBy.emailStringEmail of the user creating the content.
ConfluenceCloud.Content.history.createdBy.publicNameStringPublic name of the user creating the content.
ConfluenceCloud.Content.history.createdBy.profilePicture.pathStringProfile picture path of the user creating the content.
ConfluenceCloud.Content.history.createdBy.profilePicture.widthNumberWidth in pixels of the profile picture of the user.
ConfluenceCloud.Content.history.createdBy.profilePicture.heightNumberHeight in pixels of the profile picture of the user.
ConfluenceCloud.Content.history.createdBy.profilePicture.isDefaultBooleanWhether the profile picture is the default profile picture.
ConfluenceCloud.Content.history.createdBy.displayNameStringDisplay name of the user who created the content.
ConfluenceCloud.Content.history.createdBy.isExternalCollaboratorBooleanWhether the user is an external collaborator.
ConfluenceCloud.Content.history.createdBy._links.selfStringLink to the creator of the content.
ConfluenceCloud.Content.history.createdDateDateDate and time, in ISO 8601 format, when the content was created.
ConfluenceCloud.Content.history._links.selfStringLink to the history of the content.
ConfluenceCloud.Content.version.by.typeStringType of the user who last updated the content.
ConfluenceCloud.Content.version.by.accountIdStringAccount ID of the user who last updated the content.
ConfluenceCloud.Content.version.by.accountTypeStringAccount type of the user who last updated the content.
ConfluenceCloud.Content.version.by.emailStringEmail of the user who last updated the content.
ConfluenceCloud.Content.version.by.publicNameStringPublic name of the user who last updated the content.
ConfluenceCloud.Content.version.by.profilePicture.pathStringProfile picture path of the user who last updated the content.
ConfluenceCloud.Content.version.by.profilePicture.widthNumberWidth in pixels of the profile picture of the user who last updated the content.
ConfluenceCloud.Content.version.by.profilePicture.heightNumberHeight in pixels of the profile picture of the user who last updated the content.
ConfluenceCloud.Content.version.by.profilePicture.isDefaultBooleanWhether the profile picture is the default profile picture.
ConfluenceCloud.Content.version.by.displayNameStringDisplay name of the user who last updated the content.
ConfluenceCloud.Content.version.by.isExternalCollaboratorBooleanWhether the user is an external collaborator.
ConfluenceCloud.Content.version.by._links.selfStringLink to the user who last updated the content.
ConfluenceCloud.Content.version.whenDateDate and time, in ISO 8601 format, when the content was updated.
ConfluenceCloud.Content.version.friendlyWhenStringDisplays when the content was created.
ConfluenceCloud.Content.version.messageStringMessage of the updated content.
ConfluenceCloud.Content.version.numberNumberVersion number of the updated content.
ConfluenceCloud.Content.version.minorEditBooleanWhether the edit was minor.
ConfluenceCloud.Content.version.confRevStringThe revision ID provided by Confluence to be used as a revision in Synchrony.
ConfluenceCloud.Content.version.contentTypeModifiedBooleanTrue if the content type is modified in the version. (e.g., page to blog)
ConfluenceCloud.Content.version._links.selfStringLink to the new version of the content.
ConfluenceCloud.Content.ancestors.idStringID of the parent page of the content.
ConfluenceCloud.Content.ancestors.typeStringType of the parent page of the content.
ConfluenceCloud.Content.ancestors.statusStringStatus of the parent page of the content.
ConfluenceCloud.Content.container.idNumberID of the container of the content.
ConfluenceCloud.Content.container.keyStringKey of the container of the content.
ConfluenceCloud.Content.container.nameStringName of the container of the content.
ConfluenceCloud.Content.container.typeStringType of the container of the content.
ConfluenceCloud.Content.container.statusStringStatus of the container of the content.
ConfluenceCloud.Content.container._links.webuiStringWeb user interface link to the container of the content.
ConfluenceCloud.Content.container._links.selfStringLink to the container of the content.
ConfluenceCloud.Content.body.storage.valueStringThe body of the new content.
ConfluenceCloud.Content.body.storage.representationStringRepresentation format of the content.
ConfluenceCloud.Content.extensions.positionNumberThe content extension position.
ConfluenceCloud.Content._links.edituiStringEdit the user interface link of the content.
ConfluenceCloud.Content._links.webuiStringWeb user interface link of the content.
ConfluenceCloud.Content._links.selfStringLink to the content.
ConfluenceCloud.Content._links.tinyuiStringTiny link of the content.
ConfluenceCloud.PageToken.nameStringThe command name.
ConfluenceCloud.PageToken.next_tokenStringThe next page token.

Command Example#

!confluence-cloud-content-search query="type=page" limit=2

Context Example#

{
"ConfluenceCloud": {
"Content": [
{
"_expandable": {
"children": "/rest/api/content/8912897/child",
"descendants": "/rest/api/content/8912897/descendant",
"restrictions": "/rest/api/content/8912897/restriction/byOperation"
},
"_links": {
"editui": "/pages/resumedraft.action?draftId=8912897",
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/content/8912897",
"tinyui": "/x/AQCI",
"webui": "/spaces/TRIAL/pages/8912897/Trial_1"
},
"ancestors": [
{
"_expandable": {
"children": "/rest/api/content/7798799/child",
"container": "/rest/api/space/TRIAL",
"descendants": "/rest/api/content/7798799/descendant",
"history": "/rest/api/content/7798799/history",
"restrictions": "/rest/api/content/7798799/restriction/byOperation",
"space": "/rest/api/space/TRIAL"
},
"_links": {
"editui": "/pages/resumedraft.action?draftId=7798799",
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/content/7798799",
"tinyui": "/x/DwB3",
"webui": "/spaces/TRIAL/pages/7798799/Trial1212"
},
"extensions": {
"position": 4059
},
"id": "7798799",
"status": "current",
"title": "Trial1212",
"type": "page"
}
],
"childTypes": {
"attachment": {
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/content/8912897/child/attachment"
},
"value": false
},
"comment": {
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/content/8912897/child/comment"
},
"value": false
},
"page": {
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/content/8912897/child/page"
},
"value": false
}
},
"container": {
"_expandable": {
"lookAndFeel": "/rest/api/settings/lookandfeel?spaceKey=TRIAL",
"settings": "/rest/api/space/TRIAL/settings",
"theme": "/rest/api/space/TRIAL/theme"
},
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/space/TRIAL",
"webui": "/spaces/TRIAL"
},
"id": 33012,
"key": "TRIAL",
"name": "Trial",
"status": "current",
"type": "global"
},
"extensions": {
"position": 96200139
},
"history": {
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/content/8912897/history"
},
"createdBy": {
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/user?accountId=5ff2e30b4d2179006ea18449"
},
"accountId": "5ff2e30b4d2179006ea18449",
"accountType": "atlassian",
"displayName": "John Doe",
"email": "dummy.dummy@dummy.com",
"isExternalCollaborator": false,
"profilePicture": {
"height": 48,
"isDefault": false,
"path": "/wiki/aa-avatar/5ff2e30b4d2179006ea18449",
"width": 48
},
"publicName": "John Doe",
"type": "known"
},
"createdDate": "2021-08-19T09:11:19.755Z",
"latest": true
},
"id": "8912897",
"space": {
"_expandable": {
"lookAndFeel": "/rest/api/settings/lookandfeel?spaceKey=TRIAL",
"settings": "/rest/api/space/TRIAL/settings",
"theme": "/rest/api/space/TRIAL/theme"
},
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/space/TRIAL",
"webui": "/spaces/TRIAL"
},
"id": 33012,
"key": "TRIAL",
"name": "Trial",
"status": "current",
"type": "global"
},
"status": "current",
"title": "Trial_1",
"type": "page",
"version": {
"_expandable": {
"content": "/rest/api/content/8912897"
},
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/content/8912897/version/1"
},
"by": {
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/user?accountId=5ff2e30b4d2179006ea18449"
},
"accountId": "5ff2e30b4d2179006ea18449",
"accountType": "atlassian",
"displayName": "John Doe",
"email": "dummy.dummy@dummy.com",
"isExternalCollaborator": false,
"profilePicture": {
"height": 48,
"isDefault": false,
"path": "/wiki/aa-avatar/5ff2e30b4d2179006ea18449",
"width": 48
},
"publicName": "John Doe",
"type": "known"
},
"confRev": "confluence$content$8912897.4",
"contentTypeModified": false,
"friendlyWhen": "Aug 19, 2021",
"minorEdit": false,
"number": 1,
"syncRev": "0.confluence$content$8912897.2",
"syncRevSource": "synchrony-ack",
"when": "2021-08-19T09:11:19.755Z"
}
},
{
"_expandable": {
"children": "/rest/api/content/8847372/child",
"descendants": "/rest/api/content/8847372/descendant",
"restrictions": "/rest/api/content/8847372/restriction/byOperation"
},
"_links": {
"editui": "/pages/resumedraft.action?draftId=8847372",
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/content/8847372",
"tinyui": "/x/DACH",
"webui": "/spaces/TRIAL/pages/8847372/Testing_XSOAR"
},
"ancestors": [
{
"_expandable": {
"children": "/rest/api/content/7798799/child",
"container": "/rest/api/space/TRIAL",
"descendants": "/rest/api/content/7798799/descendant",
"history": "/rest/api/content/7798799/history",
"restrictions": "/rest/api/content/7798799/restriction/byOperation",
"space": "/rest/api/space/TRIAL"
},
"_links": {
"editui": "/pages/resumedraft.action?draftId=7798799",
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/content/7798799",
"tinyui": "/x/DwB3",
"webui": "/spaces/TRIAL/pages/7798799/Trial1212"
},
"extensions": {
"position": 4059
},
"id": "7798799",
"status": "current",
"title": "Trial1212",
"type": "page"
}
],
"childTypes": {
"attachment": {
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/content/8847372/child/attachment"
},
"value": false
},
"comment": {
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/content/8847372/child/comment"
},
"value": false
},
"page": {
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/content/8847372/child/page"
},
"value": false
}
},
"container": {
"_expandable": {
"lookAndFeel": "/rest/api/settings/lookandfeel?spaceKey=TRIAL",
"settings": "/rest/api/space/TRIAL/settings",
"theme": "/rest/api/space/TRIAL/theme"
},
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/space/TRIAL",
"webui": "/spaces/TRIAL"
},
"id": 33012,
"key": "TRIAL",
"name": "Trial",
"status": "current",
"type": "global"
},
"extensions": {
"position": 633071049
},
"history": {
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/content/8847372/history"
},
"createdBy": {
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/user?accountId=5ff2e30b4d2179006ea18449"
},
"accountId": "5ff2e30b4d2179006ea18449",
"accountType": "atlassian",
"displayName": "John Doe",
"email": "dummy.dummy@dummy.com",
"isExternalCollaborator": false,
"profilePicture": {
"height": 48,
"isDefault": false,
"path": "/wiki/aa-avatar/5ff2e30b4d2179006ea18449",
"width": 48
},
"publicName": "John Doe",
"type": "known"
},
"createdDate": "2021-08-19T10:09:37.066Z",
"latest": true
},
"id": "8847372",
"space": {
"_expandable": {
"lookAndFeel": "/rest/api/settings/lookandfeel?spaceKey=TRIAL",
"settings": "/rest/api/space/TRIAL/settings",
"theme": "/rest/api/space/TRIAL/theme"
},
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/space/TRIAL",
"webui": "/spaces/TRIAL"
},
"id": 33012,
"key": "TRIAL",
"name": "Trial",
"status": "current",
"type": "global"
},
"status": "current",
"title": "Testing_XSOAR",
"type": "page",
"version": {
"_expandable": {
"content": "/rest/api/content/8847372"
},
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/content/8847372/version/1"
},
"by": {
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/user?accountId=5ff2e30b4d2179006ea18449"
},
"accountId": "5ff2e30b4d2179006ea18449",
"accountType": "atlassian",
"displayName": "John Doe",
"email": "dummy.dummy@dummy.com",
"isExternalCollaborator": false,
"profilePicture": {
"height": 48,
"isDefault": false,
"path": "/wiki/aa-avatar/5ff2e30b4d2179006ea18449",
"width": 48
},
"publicName": "John Doe",
"type": "known"
},
"confRev": "confluence$content$8847372.4",
"contentTypeModified": false,
"friendlyWhen": "Aug 19, 2021",
"minorEdit": false,
"number": 1,
"syncRev": "0.confluence$content$8847372.2",
"syncRevSource": "synchrony-ack",
"when": "2021-08-19T10:09:37.066Z"
}
}
],
"PageToken": {
"Content": {
"name": "confluence-cloud-content-search",
"next_token": "_sa_WyJcdDg4NDczNzIgUU5aRTlIVzxbclZnSitSZXBSTU4gY3AiXQ=="
}
}
}
}

Human Readable Output#

Content(s)#

IDTitleTypeStatusSpace NameCreated ByCreated AtVersion
8912897Trial_1pagecurrentTrialJohn Doe2021-08-19T09:11:19.755Z3
8847372Testing_XSOARpagecurrentTrialJohn Doe2021-08-19T10:09:37.066Z3

Run the command with argument next_page_token=_sa_WyJcdDg4NDczNzIgUU5aRTlIVzxbclZnSitSZXBSTU4gY3AiXQ== to see the next set of contents.

confluence-cloud-user-list#


Returns a list of users.

Base Command#

confluence-cloud-user-list

Input#

Argument NameDescriptionRequired
limitNumber of records to retrieve in the response.

Note: The minimum value supported is 0 and the maximum value supported is int32.

Default is 50.
Optional
offsetThe starting index of the returned users.

Note: The minimum value supported is 0 and the maximum value supported is int32.

Default is 0.
Optional

Context Output#

PathTypeDescription
ConfluenceCloud.User.typeStringType of the user.
ConfluenceCloud.User.accountIdStringAccount ID of the user.
ConfluenceCloud.User.accountTypeStringAccount type of the user.
ConfluenceCloud.User.publicNameStringThe public name or nickname of the user.
ConfluenceCloud.User.profilePicture.pathStringPath of the user's profile picture.
ConfluenceCloud.User.profilePicture.widthNumberWidth in pixels of the user's profile picture.
ConfluenceCloud.User.profilePicture.heightNumberHeight in pixels of the user's profile picture.
ConfluenceCloud.User.profilePicture.isDefaultBooleanWhether the profile picture is the default profile picture.
ConfluenceCloud.User.displayNameStringDisplay name of the user.
ConfluenceCloud.User.isExternalCollaboratorBooleanWhether the user is an external collaborator user.
ConfluenceCloud.User._links.selfStringLink to the user.

Command Example#

!confluence-cloud-user-list limit=2

Context Example#

{
"ConfluenceCloud": {
"User": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/user?accountId=5d9afe0010f4800c341a2bba"
},
"accountId": "5d9afe0010f4800c341a2bba",
"displayName": "Opsgenie Incident Timeline",
"isExternalCollaborator": false,
"profilePicture": {
"height": 48,
"isDefault": false,
"path": "/wiki/aa-avatar/5d9afe0010f4800c341a2bba",
"width": 48
},
"publicName": "Opsgenie Incident Timeline",
"type": "known"
},
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/api/user?accountId=5d9b2860cd50b80dcea8a5b7"
},
"accountId": "5d9b2860cd50b80dcea8a5b7",
"displayName": "Opsgenie Incident Timeline",
"isExternalCollaborator": false,
"profilePicture": {
"height": 48,
"isDefault": false,
"path": "/wiki/aa-avatar/5d9b2860cd50b80dcea8a5b7",
"width": 48
},
"publicName": "Opsgenie Incident Timeline",
"type": "known"
}
]
}
}

Human Readable Output#

User(s)#

Account IDNameUser Type
5d9afe0010f4800c341a2bbaOpsgenie Incident Timelineknown
5d9b2860cd50b80dcea8a5b7Opsgenie Incident Timelineknown

confluence-cloud-group-list#


Returns all user groups.

Base Command#

confluence-cloud-group-list

Input#

Argument NameDescriptionRequired
limitNumber of records to retrieve in the response.

Note: The minimum value supported is 0 and the maximum value supported is int32.

Default is 50.
Optional
offsetThe starting index of the returned groups.

Note: The minimum value supported is 0 and the maximum value supported is int32.

Default is 0.
Optional
access_typeThe group permission level for which to filter results.
Possible values: user, admin, site-admin.
Optional

Context Output#

PathTypeDescription
ConfluenceCloud.Group.typeStringType of the group.
ConfluenceCloud.Group.nameStringName of the group.
ConfluenceCloud.Group.idStringID of the group.
ConfluenceCloud.Group._links.selfStringLink to the group.

Command Example#

!confluence-cloud-group-list limit=2

Context Example#

{
"ConfluenceCloud": {
"Group": [
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/administrators"
},
"id": "10453df5-f7fc-47be-8ca7-bc2949c1bd5b",
"name": "administrators",
"type": "group"
},
{
"_links": {
"self": "https://xsoar-bd.atlassian.net/wiki/rest/experimental/group/confluence-users"
},
"id": "e50e7fe6-7961-4775-9bbf-99e4b50f8701",
"name": "confluence-users",
"type": "group"
}
]
}
}

Human Readable Output#

Group(s)#

IDName
10453df5-f7fc-47be-8ca7-bc2949c1bd5badministrators
e50e7fe6-7961-4775-9bbf-99e4b50f8701confluence-users