category: Utilities provider: Atlassian supportlevelheader: xsoar sectionorder: - Connect - Collect commonfields: id: Atlassian Confluence Cloud version: -1 configuration: - additionalinfo: Site name of the Confluence cloud the user wants to connect to. display: Site Name (e.g., https://${site-name}.atlassian.net) name: url required: true type: 0 section: Connect - additionalinfo: Select the authentication method to use. Basic authentication requires username and API token. OAuth 2.0 requires Client ID and Client Secret. display: Authentication Method name: auth_method type: 15 required: false defaultvalue: Basic options: - Basic - OAuth 2.0 section: Connect - additionalinfo: The Atlassian account email. Required for Basic authentication. display: Email displaypassword: API Token name: username required: false type: 9 section: Connect - additionalinfo: Required for Confluence Cloud instances using OAuth 2.0. You can find your Cloud ID by navigating to https://admin.atlassian.com and selecting your site. display: Cloud ID name: cloud_id required: false type: 0 section: Connect - additionalinfo: The redirect URL to use for OAuth 2.0 (e.g., https://localhost/myapp) display: Callback URL name: callback_url required: false type: 0 section: Connect - additionalinfo: OAuth 2.0 credentials. Required when using OAuth 2.0 authentication. display: Client ID name: client_credentials required: false type: 9 displaypassword: Client Secret section: Connect - display: Use system proxy settings name: proxy type: 8 required: false section: Connect - display: Trust any certificate (not secure) name: insecure type: 8 required: false section: Connect - defaultvalue: '1' display: Events Fetch Interval name: eventFetchInterval type: 19 required: false advanced: true section: Collect hidden: - xsoar supportedModules: - xsiam - defaultvalue: 10000 section: Collect display: Max number of events per fetch name: max_events_per_fetch required: false type: 0 hidden: - xsoar supportedModules: - xsiam - display: Fetch Events defaultvalue: 'false' name: isFetchEvents type: 8 required: false section: Collect hidden: - xsoar supportedModules: - xsiam description: Atlassian Confluence Cloud allows users to interact with confluence entities like content, space, users, and groups. Users can also manage the space permissions. display: Atlassian Confluence Cloud name: Atlassian Confluence Cloud script: commands: - arguments: - description: |- The ID of the space where the page is created. Retrieve using the confluence-cloud-space-listv2 command. name: space_id required: true - description: The title of the page. name: title required: true - description: The status of the page to be created. name: status auto: PREDEFINED defaultValue: current predefined: - current - draft - description: |- The content body value of the page. name: body_value required: true - description: |- The content format type of the body value. name: body_representation auto: PREDEFINED defaultValue: storage predefined: - storage - atlas_doc_format - wiki - description: |- The ID of the parent page under which the new page is created. name: parent_id description: |- Creates a new page in Confluence Cloud (REST API v2). name: confluence-cloud-page-create outputs: - contextPath: ConfluenceCloud.Page.id description: The ID of the page. type: String - contextPath: ConfluenceCloud.Page.status description: The status of the page. type: String - contextPath: ConfluenceCloud.Page.title description: The title of the page. type: String - contextPath: ConfluenceCloud.Page.spaceId description: The ID of the space the page belongs to. type: String - contextPath: ConfluenceCloud.Page.parentId description: The ID of the parent page. type: String - contextPath: ConfluenceCloud.Page.authorId description: The account ID of the page author. type: String - contextPath: ConfluenceCloud.Page.createdAt description: Date and time, in ISO 8601 format, when the page was created (e.g., 2024-01-15T12:34:56Z). type: Date - contextPath: ConfluenceCloud.Page.version.number description: The version number of the page. type: Number - arguments: - description: |- A comma-separated list of page IDs to filter by. name: id isArray: true - description: "A comma-separated list of space IDs to filter by." name: space_id isArray: true - description: The status of pages to filter by. name: status auto: PREDEFINED predefined: - current - archived - deleted - trashed - description: |- The title of pages to filter by. name: title - description: |- The subtype of pages to filter by. name: subtype auto: PREDEFINED predefined: - page - live - description: |- Ordering of the results by a particular field. Prefix with '-' for descending order. name: sort - description: |- The maximum number of records to return. Value must be between 1 and 250. name: limit defaultValue: '50' - description: The cursor to use for fetching the next page of results (from a previous run's ConfluenceCloud.PageToken output). name: cursor description: |- Returns a list of pages from Confluence Cloud (REST API v2). name: confluence-cloud-page-list outputs: - contextPath: ConfluenceCloud.Page.id description: The ID of the page. type: String - contextPath: ConfluenceCloud.Page.status description: The status of the page. type: String - contextPath: ConfluenceCloud.Page.title description: The title of the page. type: String - contextPath: ConfluenceCloud.Page.spaceId description: The ID of the space the page belongs to. type: String - contextPath: ConfluenceCloud.Page.authorId description: The account ID of the page author. type: String - contextPath: ConfluenceCloud.Page.createdAt description: Date and time, in ISO 8601 format, when the page was created (e.g., 2024-01-15T12:34:56Z). type: Date - contextPath: ConfluenceCloud.PageToken.Content.next_page_token description: The cursor to use for fetching the next page of results. type: String - contextPath: ConfluenceCloud.PageToken.Content.name description: The name of the command that produced the page token. type: String - arguments: - description: |- The ID of the page to update. name: page_id required: true - description: |- The new version number for the page. Must be one greater than the current version. name: version_number required: true - description: |- The title of the page. name: title required: true - description: |- The status of the page. name: status required: true auto: PREDEFINED defaultValue: current predefined: - current - draft - description: |- The content body value of the page. name: body_value required: true - auto: PREDEFINED description: |- The content format type of the body value. name: body_representation predefined: - storage - atlas_doc_format - wiki defaultValue: storage - description: The ID of the space to move the page to. name: space_id - description: A message describing the update for the version history. name: version_message description: |- Updates an existing page in Confluence Cloud (REST API v2). name: confluence-cloud-page-update outputs: - contextPath: ConfluenceCloud.Page.id description: The ID of the page. type: String - contextPath: ConfluenceCloud.Page.status description: The status of the page. type: String - contextPath: ConfluenceCloud.Page.title description: The title of the page. type: String - contextPath: ConfluenceCloud.Page.spaceId description: The ID of the space the page belongs to. type: String - contextPath: ConfluenceCloud.Page.version.number description: The version number of the page. type: Number - arguments: - description: |- The ID of the page to delete. name: page_id required: true - defaultValue: 'false' description: |- Whether to permanently purge the page from the trash. Requires the page to already be in the trash. name: purge auto: PREDEFINED predefined: - 'true' - 'false' description: Deletes a page in Confluence Cloud (REST API v2). name: confluence-cloud-page-delete outputs: [] - arguments: - description: |- The ID of the space where the blog post is created. Retrieve using the confluence-cloud-space-listv2 command. name: space_id required: true - description: |- The title of the blog post. name: title required: true - description: The status of the blog post to be created. name: status auto: PREDEFINED defaultValue: current predefined: - current - draft - description: "The content body value of the blog post." name: body_value required: true - auto: PREDEFINED description: |- The content format type of the body value. name: body_representation predefined: - storage - atlas_doc_format - wiki defaultValue: storage description: Creates a new blog post in Confluence Cloud (REST API v2). name: confluence-cloud-blogpost-create outputs: - contextPath: ConfluenceCloud.Blogpost.id description: The ID of the blog post. type: String - contextPath: ConfluenceCloud.Blogpost.status description: The status of the blog post. type: String - contextPath: ConfluenceCloud.Blogpost.title description: The title of the blog post. type: String - contextPath: ConfluenceCloud.Blogpost.spaceId description: The ID of the space the blog post belongs to. type: String - contextPath: ConfluenceCloud.Blogpost.authorId description: The account ID of the blog post author. type: String - contextPath: ConfluenceCloud.Blogpost.createdAt description: Date and time, in ISO 8601 format, when the blog post was created (e.g., 2024-01-15T12:34:56Z). type: Date - contextPath: ConfluenceCloud.Blogpost.version.number description: The version number of the blog post. type: Number - arguments: - description: A comma-separated list of blog post IDs to filter by. name: id isArray: true - description: |- A comma-separated list of space IDs to filter by. name: space_id isArray: true - auto: PREDEFINED description: The status of blog posts to filter by. name: status predefined: - current - deleted - trashed - description: The title of blog posts to filter by. name: title - description: Ordering of the results by a particular field. Prefix with '-' for descending order. name: sort - defaultValue: '50' description: The maximum number of records to return. Value must be between 1 and 250. name: limit - description: The cursor to use for fetching the next page of results (from a previous run's ConfluenceCloud.PageToken output). name: cursor description: |- Returns a list of blog posts from Confluence Cloud (REST API v2). name: confluence-cloud-blogpost-list outputs: - contextPath: ConfluenceCloud.Blogpost.id description: The ID of the blog post. type: String - contextPath: ConfluenceCloud.Blogpost.status description: The status of the blog post. type: String - contextPath: ConfluenceCloud.Blogpost.title description: The title of the blog post. type: String - contextPath: ConfluenceCloud.Blogpost.spaceId description: The ID of the space the blog post belongs to. type: String - contextPath: ConfluenceCloud.Blogpost.authorId description: The account ID of the blog post author. type: String - contextPath: ConfluenceCloud.Blogpost.createdAt description: Date and time, in ISO 8601 format, when the blog post was created (e.g., 2024-01-15T12:34:56Z). type: Date - contextPath: ConfluenceCloud.PageToken.Content.next_page_token description: The cursor to use for fetching the next page of results. type: String - contextPath: ConfluenceCloud.PageToken.Content.name description: The name of the command that produced the page token. type: String - arguments: - description: The ID of the blog post to update. name: blogpost_id required: true - description: |- The new version number for the blog post. Must be one greater than the current version. name: version_number required: true - description: |- The title of the blog post. name: title required: true - description: |- The status of the blog post. name: status auto: PREDEFINED defaultValue: current predefined: - current - draft - description: |- The content body value of the blog post. name: body_value required: true - description: |- The content format type of the body value. name: body_representation auto: PREDEFINED defaultValue: storage predefined: - storage - atlas_doc_format - wiki - description: |- A message describing the update for the version history. name: version_message description: |- Updates an existing blog post in Confluence Cloud (REST API v2). name: confluence-cloud-blogpost-update outputs: - contextPath: ConfluenceCloud.Blogpost.id description: The ID of the blog post. type: String - contextPath: ConfluenceCloud.Blogpost.status description: The status of the blog post. type: String - contextPath: ConfluenceCloud.Blogpost.title description: The title of the blog post. type: String - contextPath: ConfluenceCloud.Blogpost.spaceId description: The ID of the space the blog post belongs to. type: String - contextPath: ConfluenceCloud.Blogpost.version.number description: The version number of the blog post. type: Number - arguments: - description: The ID of the blog post to delete. name: blogpost_id required: true - defaultValue: 'false' description: |- Whether to permanently purge the blog post from the trash. Requires the blog post to already be in the trash. name: purge auto: PREDEFINED predefined: - 'true' - 'false' description: |- Deletes a blog post in Confluence Cloud (REST API v2). name: confluence-cloud-blogpost-delete outputs: [] - arguments: - description: |- The content body value of the comment. name: body_value required: true - defaultValue: 'storage' description: |- The content format type of the body value. name: body_representation auto: PREDEFINED predefined: - storage - atlas_doc_format - description: The ID of the page to attach the comment to. One of page_id, blogpost_id, parent_comment_id, attachment_id, or custom_content_id is required. name: page_id - description: The ID of the blog post to attach the comment to. name: blogpost_id - description: The ID of the parent comment to reply to. name: parent_comment_id - description: The ID of the attachment to attach the comment to. name: attachment_id - description: The ID of the custom content to attach the comment to. name: custom_content_id description: Creates a footer comment in Confluence Cloud (REST API v2). name: confluence-cloud-footer-comment-create outputs: - contextPath: ConfluenceCloud.Comment.id description: The ID of the comment. type: String - contextPath: ConfluenceCloud.Comment.status description: The status of the comment. type: String - contextPath: ConfluenceCloud.Comment.pageId description: The ID of the page the comment belongs to. type: String - contextPath: ConfluenceCloud.Comment.blogPostId description: The ID of the blog post the comment belongs to. type: String - contextPath: ConfluenceCloud.Comment.parentCommentId description: The ID of the parent comment. type: String - contextPath: ConfluenceCloud.Comment.version.number description: The version number of the comment. type: Number - arguments: - name: ids description: A comma-separated list of space IDs to filter by. isArray: true - name: keys description: A comma-separated list of space keys to filter by. isArray: true - name: type description: The type of spaces to filter by. auto: PREDEFINED predefined: - global - personal - auto: PREDEFINED description: The status of spaces to filter by. name: status predefined: - current - archived - description: Ordering of the results by a particular field. Prefix with '-' for descending order. name: sort - defaultValue: '50' description: The maximum number of records to return. Value must be between 1 and 250. name: limit - description: The cursor to use for fetching the next page of results (from a previous run's ConfluenceCloud.PageToken output). name: cursor name: confluence-cloud-space-listv2 description: Returns a list of spaces from Confluence Cloud (REST API v2). outputs: - contextPath: ConfluenceCloud.Space.id description: The ID of the space. type: String - contextPath: ConfluenceCloud.Space.key description: The key of the space. type: String - contextPath: ConfluenceCloud.Space.name description: The name of the space. type: String - contextPath: ConfluenceCloud.Space.type description: The type of the space. type: String - contextPath: ConfluenceCloud.Space.status description: The status of the space. type: String - contextPath: ConfluenceCloud.PageToken.Content.next_page_token description: The cursor to use for fetching the next page of results. type: String - contextPath: ConfluenceCloud.PageToken.Content.name description: The name of the command that produced the page token. type: String - arguments: - description: The name of the new space. The maximum length is 200 characters. name: name required: true - description: The key for the new space. It can contain any alphanumeric character (a-z, 0-9). The maximum length is 255 characters. name: key required: true - description: The description text of the new space. name: description_value - auto: PREDEFINED defaultValue: plain description: The format of the space description. name: description_format predefined: - plain - view - description: |- A JSON array of role assignments granting access to principals. For example: [{"principal": {"type": "user", "id": ""}, "roleId": ""}]. name: role_assignments description: Creates a new space in Confluence Cloud (REST API v2). name: confluence-cloud-space-createv2 outputs: - contextPath: ConfluenceCloud.Space.id description: The ID of the space. type: String - contextPath: ConfluenceCloud.Space.key description: The key of the space. type: String - contextPath: ConfluenceCloud.Space.name description: The name of the space. type: String - contextPath: ConfluenceCloud.Space.type description: The type of the space. type: String - contextPath: ConfluenceCloud.Space.status description: The status of the space. type: String - arguments: - description: |- The 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 be changed after the space is created. name: unique_key required: true - description: The name of the new space. The maximum length is 200 characters. name: name required: true - description: The description of the new space. name: description - auto: PREDEFINED defaultValue: 'false' description: |- Whether the user wants to create a private space. Note: If this option is set to true, permission cannot be applied. name: is_private_space predefined: - 'true' - 'false' - description: |- The account ID of the user to whom permission should be granted. Note: To retrieve the account ID, execute the confluence-cloud-user-list command. name: permission_account_id - description: |- The group name to whom permission should be granted. Note: To retrieve the group name, execute the confluence-cloud-group-list command. name: permission_group_name - description: |- A 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 operation: create, read, delete, export, administer. Possible values for targetType: space, page, blogpost, comment, attachment. isArray: true name: permission_operations - description: |- Specify '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. name: advanced_permissions description: |- Creates a new space. Note: If no permissions are specified, the default space permissions defined by the Confluence cloud account admin will be used. name: confluence-cloud-space-create outputs: - contextPath: ConfluenceCloud.Space.id description: ID of the space. type: Number - contextPath: ConfluenceCloud.Space.key description: Key of the space. type: String - contextPath: ConfluenceCloud.Space.name description: Name of the space. type: String - contextPath: ConfluenceCloud.Space.description.view.value description: The description of the space in view format. type: String - contextPath: ConfluenceCloud.Space.description.view.representation description: Representation format of the description in view format. type: String - contextPath: ConfluenceCloud.Space.description.plain.value description: The description of the space in plain format. type: String - contextPath: ConfluenceCloud.Space.description.plain.representation description: Representation format of the description in plain format. type: String - contextPath: ConfluenceCloud.Space.homepage.id description: ID of the homepage of the space. type: String - contextPath: ConfluenceCloud.Space.homepage.type description: Type of the homepage of the space. type: String - contextPath: ConfluenceCloud.Space.homepage.status description: Status of the homepage of the space. type: String - contextPath: ConfluenceCloud.Space.homepage.title description: Title of the homepage of the space. type: String - contextPath: ConfluenceCloud.Space.homepage.extensions.position description: The content extension position. type: Number - contextPath: ConfluenceCloud.Space.homepage._links.self description: Link to the homepage of the space. type: String - contextPath: ConfluenceCloud.Space.homepage._links.tinyui description: Tiny link to the homepage of the space. type: String - contextPath: ConfluenceCloud.Space.homepage._links.editui description: Edit the user interface link to the homepage of the space. type: String - contextPath: ConfluenceCloud.Space.homepage._links.webui description: Web user interface link to the homepage of the space. type: String - contextPath: ConfluenceCloud.Space.type description: Type of the space. type: String - contextPath: ConfluenceCloud.Space.permissions.id description: ID of the space permission. type: Number - contextPath: ConfluenceCloud.Space.permissions.subjects.user.results.type description: Type of the user to whom the space permission applies. type: String - contextPath: ConfluenceCloud.Space.permissions.subjects.user.results.accountId description: Account ID of the user to whom the space permission applies. type: String - contextPath: ConfluenceCloud.Space.permissions.subjects.user.results.accountType description: Account type of the user to whom the space permission applies. type: String - contextPath: ConfluenceCloud.Space.permissions.subjects.user.results.email description: Email of the user to whom the space permission applies. type: String - contextPath: ConfluenceCloud.Space.permissions.subjects.user.results.publicName description: Public name of the user to whom the space permission applies. type: String - contextPath: ConfluenceCloud.Space.permissions.subjects.user.results.profilePicture.path description: Path of the user's profile picture to whom the space permission applies. type: String - contextPath: ConfluenceCloud.Space.permissions.subjects.user.results.profilePicture.width description: Width in pixels of the user's profile picture to whom the space permission applies. type: Number - contextPath: ConfluenceCloud.Space.permissions.subjects.user.results.profilePicture.height description: Height in pixels of the user's profile picture to whom the space permission applies. type: Number - contextPath: ConfluenceCloud.Space.permissions.subjects.user.results.profilePicture.isDefault description: Whether the profile picture of the user is the default picture to whom the space permission applies. type: Boolean - contextPath: ConfluenceCloud.Space.permissions.subjects.user.results.displayName description: Display name of the user to whom the space permission applies. type: String - contextPath: ConfluenceCloud.Space.permissions.subjects.user.results.isExternalCollaborator description: Whether the user is an external collaborator user. type: Boolean - contextPath: ConfluenceCloud.Space.permissions.subjects.user.results._links.self description: Link to the user to whom the space permission applies. type: String - contextPath: ConfluenceCloud.Space.permissions.subjects.user.size description: Size of the list of users for a given space. type: Number - contextPath: ConfluenceCloud.Space.permissions.subjects.group.results.type description: Type of the group to whom the space permission applies. type: String - contextPath: ConfluenceCloud.Space.permissions.subjects.group.results.name description: Name of the group to whom the space permission applies. type: String - contextPath: ConfluenceCloud.Space.permissions.subjects.group.results.id description: ID of the group to whom the space permission applies. type: String - contextPath: ConfluenceCloud.Space.permissions.subjects.group.results._links.self description: Link to the group to whom the space permission applies. type: String - contextPath: ConfluenceCloud.Space.permissions.subjects.group.size description: Size of the list of groups for the given space. type: Number - contextPath: ConfluenceCloud.Space.permissions.operation.operation description: Name of the permission operation. type: String - contextPath: ConfluenceCloud.Space.permissions.operation.targetType description: The space or content type that the operation applies to. type: String - contextPath: ConfluenceCloud.Space.permissions.anonymousAccess description: Whether anonymous users have permission to use the operation. type: Boolean - contextPath: ConfluenceCloud.Space.permissions.unlicensedAccess description: Whether unlicensed users have access from JIRA Service Desk when used with the read space operation. type: Boolean - contextPath: ConfluenceCloud.Space.status description: Status of the space. type: String - contextPath: ConfluenceCloud.Space._links.webui description: Web user interface link of the space. type: String - contextPath: ConfluenceCloud.Space._links.context description: Context link of the space. type: String - contextPath: ConfluenceCloud.Space._links.self description: Link to the space. type: String - contextPath: ConfluenceCloud.Space._links.collection description: Collection link of the space. type: String - contextPath: ConfluenceCloud.Space._links.base description: Base link to the space. type: String - arguments: - description: |- The title of the content. Note: The maximum title length is 255 characters. name: title required: true - auto: PREDEFINED description: "The type of the new content. \nPossible values: page, blogpost." name: type predefined: - page - blogpost required: true - description: The space key that the content is being created in. name: space_key required: true - auto: PREDEFINED defaultValue: current description: |- The status of the new content. Possible values: current, trashed, draft. Note: The term 'current' refers to the content that is currently active. name: status predefined: - current - trashed - draft - description: |- The body of the new content. Note: 'body_value' must be a string. In order to reflect 'body_value', 'body_representation' is required. name: body_value - auto: PREDEFINED description: |- The content format type. Possible values: view, export_view, styled_view, storage, editor2, anonymous_export_view. name: body_representation predefined: - view - export_view - styled_view - storage - editor2 - anonymous_export_view - description: |- The 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. name: ancestor_id name: confluence-cloud-content-create deprecated: true description: |- Deprecated. Use confluence-cloud-page-create or confluence-cloud-blogpost-create instead. Creates a page or blogpost for a given space. Note: To view the expansion of content properties, execute the confluence-cloud-content-list and confluence-cloud-content-search commands. outputs: - contextPath: ConfluenceCloud.Content.id description: The ID of the content. type: String - contextPath: ConfluenceCloud.Content.type description: Type of the content. type: String - contextPath: ConfluenceCloud.Content.status description: Status of the content. type: String - contextPath: ConfluenceCloud.Content.title description: Title of the content. type: String - contextPath: ConfluenceCloud.Content.childTypes.attachment.value description: Whether the attachment has the given content. type: Boolean - contextPath: ConfluenceCloud.Content.childTypes.attachment._links.self description: Link to the attachment with the given content. type: String - contextPath: ConfluenceCloud.Content.childTypes.comment.value description: Whether a comment is associated with the given content. type: Boolean - contextPath: ConfluenceCloud.Content.childTypes.comment._links.self description: Link to the comment associated with the given content. type: String - contextPath: ConfluenceCloud.Content.childTypes.page.value description: Whether the page is associated with the given content. type: Boolean - contextPath: ConfluenceCloud.Content.childTypes.page._links.self description: Link to the page associated with the given content. type: String - contextPath: ConfluenceCloud.Content.space.id description: ID of the space that the content is being created in. type: Number - contextPath: ConfluenceCloud.Content.space.key description: Key of the space that the content is being created in. type: String - contextPath: ConfluenceCloud.Content.space.name description: Name of the space that the content is being created in. type: String - contextPath: ConfluenceCloud.Content.space.type description: Type of the space that the content is being created in. type: String - contextPath: ConfluenceCloud.Content.space.status description: Status of the space that the content is being created in. type: String - contextPath: ConfluenceCloud.Content.space._links.webui description: Web user interface link to the space that the content is being created in. type: String - contextPath: ConfluenceCloud.Content.space._links.self description: Link to the space that the content is being created in. type: String - contextPath: ConfluenceCloud.Content.history.latest description: Whether the content is the latest content. type: Boolean - contextPath: ConfluenceCloud.Content.history.createdBy.type description: Type of the user who created the content. type: String - contextPath: ConfluenceCloud.Content.history.createdBy.accountId description: Account ID of the user creating the content. type: String - contextPath: ConfluenceCloud.Content.history.createdBy.accountType description: Account type of the user creating the content. type: String - contextPath: ConfluenceCloud.Content.history.createdBy.email description: Email of the user creating the content. type: String - contextPath: ConfluenceCloud.Content.history.createdBy.publicName description: Public name of the user creating the content. type: String - contextPath: ConfluenceCloud.Content.history.createdBy.profilePicture.path description: Profile picture path of the user creating the content. type: String - contextPath: ConfluenceCloud.Content.history.createdBy.profilePicture.width description: Width in pixels of the profile picture of the user. type: Number - contextPath: ConfluenceCloud.Content.history.createdBy.profilePicture.height description: Height in pixels of the profile picture of the user. type: Number - contextPath: ConfluenceCloud.Content.history.createdBy.profilePicture.isDefault description: Whether the profile picture is the default profile picture. type: Boolean - contextPath: ConfluenceCloud.Content.history.createdBy.displayName description: Display name of the user who created the content. type: String - contextPath: ConfluenceCloud.Content.history.createdBy.isExternalCollaborator description: Whether the user is an external collaborator. type: Boolean - contextPath: ConfluenceCloud.Content.history.createdBy._links.self description: Link to the creator of the content. type: String - contextPath: ConfluenceCloud.Content.history.createdDate description: Date and time, in ISO 8601 format, when the content was created (e.g., 2024-01-15T12:34:56Z). type: Date - contextPath: ConfluenceCloud.Content.history._links.self description: Link to the history of the content. type: String - contextPath: ConfluenceCloud.Content.version.by.type description: Type of the user who last updated the content. type: String - contextPath: ConfluenceCloud.Content.version.by.accountId description: Account ID of the user who last updated the content. type: String - contextPath: ConfluenceCloud.Content.version.by.accountType description: Account type of the user who last updated the content. type: String - contextPath: ConfluenceCloud.Content.version.by.email description: Email of the user who last updated the content. type: String - contextPath: ConfluenceCloud.Content.version.by.publicName description: Public name of the user who last updated the content. type: String - contextPath: ConfluenceCloud.Content.version.by.profilePicture.path description: Profile picture of the user who last updated the content. type: String - contextPath: ConfluenceCloud.Content.version.by.profilePicture.width description: Width in pixels of the profile picture of the user who last updated the content. type: Number - contextPath: ConfluenceCloud.Content.version.by.profilePicture.height description: Height in pixels of the profile picture of the user who last updated the content. type: Number - contextPath: ConfluenceCloud.Content.version.by.profilePicture.isDefault description: Whether the profile picture is the default profile picture. type: Boolean - contextPath: ConfluenceCloud.Content.version.by.displayName description: Display name of the user who last updated the content. type: String - contextPath: ConfluenceCloud.Content.version.by.isExternalCollaborator description: Whether the user is an external collaborator. type: Boolean - contextPath: ConfluenceCloud.Content.version.by._links.self description: Link to the user who last updated the content. type: String - contextPath: ConfluenceCloud.Content.version.when description: Date and time, in ISO 8601 format, when the content was updated (e.g., 2024-01-15T12:34:56Z). type: Date - contextPath: ConfluenceCloud.Content.version.friendlyWhen description: Displays when the content was created. type: String - contextPath: ConfluenceCloud.Content.version.message description: Message of the updated content. type: String - contextPath: ConfluenceCloud.Content.version.number description: Version number of the updated content. type: Number - contextPath: ConfluenceCloud.Content.version.minorEdit description: Whether the edit was minor. type: Boolean - contextPath: ConfluenceCloud.Content.version.confRev description: The revision ID provided by Confluence to be used as a revision in Synchrony. type: String - contextPath: ConfluenceCloud.Content.version.contentTypeModified description: True if the content type is modified in the version. (e.g., page to blog). type: Boolean - contextPath: ConfluenceCloud.Content.version._links.self description: Link to the new version of the content. type: String - contextPath: ConfluenceCloud.Content.ancestors.id description: ID of the parent page of the content. type: String - contextPath: ConfluenceCloud.Content.ancestors.type description: Type of the parent page of the content. type: String - contextPath: ConfluenceCloud.Content.ancestors.status description: Status of the parent page of the content. type: String - contextPath: ConfluenceCloud.Content.ancestors.title description: Title of the parent page of the content. type: String - contextPath: ConfluenceCloud.Content.ancestors.extensions.position description: The content extension position. type: Number - contextPath: ConfluenceCloud.Content.ancestors._links.self description: Link to the parent page of the content. type: String - contextPath: ConfluenceCloud.Content.ancestors._links.tinyui description: Tiny link to the parent page of the content. type: String - contextPath: ConfluenceCloud.Content.ancestors._links.editui description: Edit user interface link to the parent page of the content. type: String - contextPath: ConfluenceCloud.Content.ancestors._links.webui description: Web user interface link to the parent page of the content. type: String - contextPath: ConfluenceCloud.Content.container.id description: ID of the container of the content. type: Number - contextPath: ConfluenceCloud.Content.container.key description: Key of the container of the content. type: String - contextPath: ConfluenceCloud.Content.container.name description: Name of the container of the content. type: String - contextPath: ConfluenceCloud.Content.container.type description: Type of the container of the content. type: String - contextPath: ConfluenceCloud.Content.container.status description: Status of the container of the content. type: String - contextPath: ConfluenceCloud.Content.container._links.webui description: Web user interface link to the container of the content. type: String - contextPath: ConfluenceCloud.Content.container._links.self description: Link to the container of the content. type: String - contextPath: ConfluenceCloud.Content.body.storage.value description: The body of the new content. type: String - contextPath: ConfluenceCloud.Content.body.storage.representation description: Representation format of the content. type: String - contextPath: ConfluenceCloud.Content.extensions.position description: The content extension position. type: Number - contextPath: ConfluenceCloud.Content._links.editui description: Edit user interface link of the content. type: String - contextPath: ConfluenceCloud.Content._links.webui description: Web user interface link of the content. type: String - contextPath: ConfluenceCloud.Content._links.context description: Context link of the content. type: String - contextPath: ConfluenceCloud.Content._links.self description: Link to the content. type: String - contextPath: ConfluenceCloud.Content._links.tinyui description: Tiny link of the content. type: String - contextPath: ConfluenceCloud.Content._links.collection description: Collection link of the content. type: String - contextPath: ConfluenceCloud.Content._links.base description: Base link to the content. type: String - arguments: - description: |- The status of the new content. Possible values: current, trashed, draft. Note: The term 'current' refers to the comment that is currently active. name: status auto: PREDEFINED defaultValue: current predefined: - current - trashed - draft - description: |- The body of the new content. Note: 'body_value' must be a string. name: body_value required: true - auto: PREDEFINED description: |- The content format type. Possible values: storage, editor2, editor. name: body_representation predefined: - storage - editor2 - editor required: true - description: |- The 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. name: ancestor_id - description: |- The ID of the container for which to create a comment. Note: To retrieve the container_id, execute the confluence-cloud-content-list command. name: container_id required: true - auto: PREDEFINED description: |- The type of the container. Possible values: page, blogpost. name: container_type predefined: - page - blogpost name: confluence-cloud-comment-create deprecated: true description: |- Deprecated. Use confluence-cloud-footer-comment-create instead. Creates a comment for the given content. Note: To view the expansion of the content properties, execute the confluence-cloud-content-list and confluence-cloud-content-search commands. outputs: - contextPath: ConfluenceCloud.Comment.id description: The ID of the comment. type: String - contextPath: ConfluenceCloud.Comment.type description: Type of the comment. type: String - contextPath: ConfluenceCloud.Comment.status description: Status of the comment. type: String - contextPath: ConfluenceCloud.Comment.title description: Title of the comment. type: String - contextPath: ConfluenceCloud.Comment.childTypes.attachment.value description: Whether the attachment has the given comment. type: Boolean - contextPath: ConfluenceCloud.Comment.childTypes.attachment._links.self description: Link to the attachment with the given comment. type: String - contextPath: ConfluenceCloud.Comment.childTypes.comment.value description: Whether a comment is associated with the given comment. type: Boolean - contextPath: ConfluenceCloud.Comment.childTypes.comment._links.self description: Link to the comment associated with the given comment. type: String - contextPath: ConfluenceCloud.Comment.childTypes.page.value description: Whether the page is associated with the given comment. type: Boolean - contextPath: ConfluenceCloud.Comment.childTypes.page._links.self description: Link to the page associated with the given comment. type: String - contextPath: ConfluenceCloud.Comment.space.id description: ID of the space that the comment is being created in. type: Number - contextPath: ConfluenceCloud.Comment.space.key description: Key of the space that the comment is being created in. type: String - contextPath: ConfluenceCloud.Comment.space.name description: Name of the space that the comment is being created in. type: String - contextPath: ConfluenceCloud.Comment.space.type description: Type of the space that the comment is being created in. type: String - contextPath: ConfluenceCloud.Comment.space.status description: Status of the space that the comment is being created in. type: String - contextPath: ConfluenceCloud.Comment.space._links.webui description: Web user interface link to the space that the comment is being created in. type: String - contextPath: ConfluenceCloud.Comment.space._links.self description: Link to the space that the comment is being created in. type: String - contextPath: ConfluenceCloud.Comment.history.latest description: Whether the comment is latest. type: Boolean - contextPath: ConfluenceCloud.Comment.history.createdBy.type description: Type of the user who created the comment. type: String - contextPath: ConfluenceCloud.Comment.history.createdBy.accountId description: Account ID of the user creating the comment. type: String - contextPath: ConfluenceCloud.Comment.history.createdBy.accountType description: Account type of the user creating the comment. type: String - contextPath: ConfluenceCloud.Comment.history.createdBy.email description: Email of the user creating the comment. type: String - contextPath: ConfluenceCloud.Comment.history.createdBy.publicName description: Public name of the user creating the comment. type: String - contextPath: ConfluenceCloud.Comment.history.createdBy.profilePicture.path description: Profile picture path of the user creating the comment. type: String - contextPath: ConfluenceCloud.Comment.history.createdBy.profilePicture.width description: Width in pixels of the profile picture of the user. type: Number - contextPath: ConfluenceCloud.Comment.history.createdBy.profilePicture.height description: Height in pixels of the profile picture of the user. type: Number - contextPath: ConfluenceCloud.Comment.history.createdBy.profilePicture.isDefault description: Whether the profile picture is the default profile picture. type: Boolean - contextPath: ConfluenceCloud.Comment.history.createdBy.displayName description: Display name of the user who created the comment. type: String - contextPath: ConfluenceCloud.Comment.history.createdBy.isExternalCollaborator description: Whether the user is an external collaborator. type: Boolean - contextPath: ConfluenceCloud.Comment.history.createdBy._links.self description: Link to the creator of the comment. type: String - contextPath: ConfluenceCloud.Comment.history.createdDate description: Date and time, in ISO 8601 format, when the comment was created (e.g., 2024-01-15T12:34:56Z). type: Date - contextPath: ConfluenceCloud.Comment.history._links.self description: Link to the history of the comment. type: String - contextPath: ConfluenceCloud.Comment.version.by.type description: Type of the user who last updated the comment. type: String - contextPath: ConfluenceCloud.Comment.version.by.accountId description: Account ID of the user who last updated the comment. type: String - contextPath: ConfluenceCloud.Comment.version.by.accountType description: Account type of the user who last updated the comment. type: String - contextPath: ConfluenceCloud.Comment.version.by.email description: Email of the user who last updated the comment. type: String - contextPath: ConfluenceCloud.Comment.version.by.publicName description: Public name of the user who last updated the comment. type: String - contextPath: ConfluenceCloud.Comment.version.by.profilePicture.path description: Profile picture of the user who last updated the comment. type: String - contextPath: ConfluenceCloud.Comment.version.by.profilePicture.width description: Width in pixels of the profile picture of the user who last updated the comment. type: Number - contextPath: ConfluenceCloud.Comment.version.by.profilePicture.height description: Height in pixels of the profile picture of the user who last updated the comment. type: Number - contextPath: ConfluenceCloud.Comment.version.by.profilePicture.isDefault description: Whether the profile picture is the default profile picture. type: Boolean - contextPath: ConfluenceCloud.Comment.version.by.displayName description: Display name of the user who last updated the comment. type: String - contextPath: ConfluenceCloud.Comment.version.by.isExternalCollaborator description: Whether the user is an external collaborator. type: Boolean - contextPath: ConfluenceCloud.Comment.version.by._links.self description: Link to the user who last updated the comment. type: String - contextPath: ConfluenceCloud.Comment.version.when description: Date and time, in ISO 8601 format, when the comment was updated (e.g., 2024-01-15T12:34:56Z). type: Date - contextPath: ConfluenceCloud.Comment.version.friendlyWhen description: Displays when the content was created. type: String - contextPath: ConfluenceCloud.Comment.version.message description: Message of the updated comment. type: String - contextPath: ConfluenceCloud.Comment.version.number description: Version number of the updated comment. type: Number - contextPath: ConfluenceCloud.Comment.version.minorEdit description: Whether the edit was minor. type: Boolean - contextPath: ConfluenceCloud.Comment.version.confRev description: The revision ID provided by Confluence to be used as a revision in Synchrony. type: String - contextPath: ConfluenceCloud.Comment.version.contentTypeModified description: True if the comment type is modified in the version. (e.g., page to blog). type: Boolean - contextPath: ConfluenceCloud.Comment.version._links.self description: Link to the new version of the comment. type: String - contextPath: ConfluenceCloud.Comment.ancestors.id description: ID of the parent page of the comment. type: String - contextPath: ConfluenceCloud.Comment.ancestors.type description: Type of the parent page of the comment. type: String - contextPath: ConfluenceCloud.Comment.ancestors.status description: Status of the parent page of the comment. type: String - contextPath: ConfluenceCloud.Comment.ancestors.title description: Title of the parent page of the comment. type: String - contextPath: ConfluenceCloud.Comment.ancestors.extensions.location description: Location of the comment. type: String - contextPath: ConfluenceCloud.Comment.ancestors._links.self description: Link to the parent page of the comment. type: String - contextPath: ConfluenceCloud.Comment.ancestors._links.tinyui description: Tiny link to the parent page of the comment. type: String - contextPath: ConfluenceCloud.Comment.ancestors._links.editui description: Edit user interface link to the parent page of the comment. type: String - contextPath: ConfluenceCloud.Comment.ancestors._links.webui description: Web user interface link to the parent page of the comment. type: String - contextPath: ConfluenceCloud.Comment.container.id description: ID of the container of the comment. type: Number - contextPath: ConfluenceCloud.Comment.container.key description: Key of the container of the comment. type: String - contextPath: ConfluenceCloud.Comment.container.name description: Name of the container of the comment. type: String - contextPath: ConfluenceCloud.Comment.container.type description: Type of the container of the comment. type: String - contextPath: ConfluenceCloud.Comment.container.status description: Status of the container of the comment. type: String - contextPath: ConfluenceCloud.Comment.container._links.webui description: Web user interface link to the container of the comment. type: String - contextPath: ConfluenceCloud.Comment.container._links.self description: Link to the container of the comment. type: String - contextPath: ConfluenceCloud.Comment.body.storage.value description: The body of the new comment. type: String - contextPath: ConfluenceCloud.Comment.body.storage.representation description: Representation format of the comment. type: String - contextPath: ConfluenceCloud.Comment.extensions.location description: Location of the comment. type: String - contextPath: ConfluenceCloud.Comment._links.editui description: Edit user interface link of the comment. type: String - contextPath: ConfluenceCloud.Comment._links.webui description: Web user interface link of the comment. type: String - contextPath: ConfluenceCloud.Comment._links.context description: Context link of the comment. type: String - contextPath: ConfluenceCloud.Comment._links.self description: Link to the comment. type: String - contextPath: ConfluenceCloud.Comment._links.tinyui description: Tiny link of the comment. type: String - contextPath: ConfluenceCloud.Comment._links.collection description: Collection link of the comment. type: String - contextPath: ConfluenceCloud.Comment._links.base description: Base link to the comment. type: String - arguments: - defaultValue: '50' description: |- Number of records to retrieve in the response. Note: The minimum value supported is 0 and the maximum value supported is int32. name: limit - defaultValue: '0' description: |- The starting index of the returned spaces. Note: The minimum value supported is 0 and maximum value supported is int32. name: offset - description: |- A space key to retrieve the specific space. Note: Supports a comma-separated list of values. isArray: true name: space_key - description: |- The space ID to retrieve the specific space. Note: Supports a comma-separated list of values. isArray: true name: space_id - auto: PREDEFINED description: "Filter the results to list the spaces based on their status. \nPossible values: current, archived.\n\nNote: The term 'current' refers to the space that is currently active." name: status predefined: - current - archived - auto: PREDEFINED description: "Filter the results to list the spaces based on their type. \nPossible values: global, personal." name: type predefined: - global - personal - auto: PREDEFINED description: |- Whether to filter the results to the favorite spaces of the current user. Possible values: true, false. name: favourite predefined: - 'true' - 'false' - description: "Indicates which properties to expand. \nFor reference, visit https://developer.atlassian.com/cloud/confluence/rest/api-group-space/#api-wiki-rest-api-space-get.\n\nNote: To separate multiple values, use commas. Expanded properties will be populated in context data only." isArray: true name: expand name: confluence-cloud-space-list deprecated: true description: Deprecated. Use confluence-cloud-space-listv2 instead. Returns a list of all Confluence spaces. outputs: - contextPath: ConfluenceCloud.Space.id description: ID of the space. type: Number - contextPath: ConfluenceCloud.Space.key description: Key of the space. type: String - contextPath: ConfluenceCloud.Space.name description: Name of the space. type: String - contextPath: ConfluenceCloud.Space.description.view.value description: The description of the space in view format. type: String - contextPath: ConfluenceCloud.Space.description.view.representation description: Representation format of the description in view format. type: String - contextPath: ConfluenceCloud.Space.description.plain.value description: The description of the space in plain format in plain format. type: String - contextPath: ConfluenceCloud.Space.description.plain.representation description: Representation format of the description in plain format. type: String - contextPath: ConfluenceCloud.Space.homepage.id description: ID of the homepage of the space. type: String - contextPath: ConfluenceCloud.Space.homepage.type description: Type of the homepage of the space. type: String - contextPath: ConfluenceCloud.Space.homepage.status description: Status of the homepage of the space. type: String - contextPath: ConfluenceCloud.Space.homepage.title description: Title of the homepage of the space. type: String - contextPath: ConfluenceCloud.Space.homepage.extensions.position description: The content extension position. type: Number - contextPath: ConfluenceCloud.Space.homepage._links.self description: Link to the homepage of the space. type: String - contextPath: ConfluenceCloud.Space.homepage._links.tinyui description: Tiny link to the homepage of the space. type: String - contextPath: ConfluenceCloud.Space.homepage._links.editui description: Edit the user interface link to the homepage of the space. type: String - contextPath: ConfluenceCloud.Space.homepage._links.webui description: Web user interface link to the homepage of the space. type: String - contextPath: ConfluenceCloud.Space.type description: Type of the space. type: String - contextPath: ConfluenceCloud.Space.permissions.id description: ID of the space permission. type: Number - contextPath: ConfluenceCloud.Space.permissions.subjects.user.results.type description: Type of the user to whom the space permission applies. type: String - contextPath: ConfluenceCloud.Space.permissions.subjects.user.results.accountId description: Account ID of the user to whom the space permission applies. type: String - contextPath: ConfluenceCloud.Space.permissions.subjects.user.results.accountType description: Account type of the user to whom the space permission applies. type: String - contextPath: ConfluenceCloud.Space.permissions.subjects.user.results.email description: Email of the user to whom the space permission applies. type: String - contextPath: ConfluenceCloud.Space.permissions.subjects.user.results.publicName description: Public name to whom the space permission applies. type: String - contextPath: ConfluenceCloud.Space.permissions.subjects.user.results.profilePicture.path description: Path of the user's profile picture to whom the space permission applies. type: String - contextPath: ConfluenceCloud.Space.permissions.subjects.user.results.profilePicture.width description: Width in pixels of the user's profile picture to whom the space permission applies. type: Number - contextPath: ConfluenceCloud.Space.permissions.subjects.user.results.profilePicture.height description: Height in pixels of the user's profile picture to whom the space permission applies. type: Number - contextPath: ConfluenceCloud.Space.permissions.subjects.user.results.profilePicture.isDefault description: Whether the profile picture of the user is the default to whom the space permission applies. type: Boolean - contextPath: ConfluenceCloud.Space.permissions.subjects.user.results.displayName description: Display name of the user to whom the space permission applies. type: String - contextPath: ConfluenceCloud.Space.permissions.subjects.user.results.isExternalCollaborator description: Whether the user is an external collaborator user. type: Boolean - contextPath: ConfluenceCloud.Space.permissions.subjects.user.results._links.self description: Link to the user to whom the space permission applies. type: String - contextPath: ConfluenceCloud.Space.permissions.subjects.user.size description: Size of the list of users for the given space. type: Number - contextPath: ConfluenceCloud.Space.permissions.subjects.group.results.type description: Type of the group to whom the space permission applies. type: String - contextPath: ConfluenceCloud.Space.permissions.subjects.group.results.name description: Name of the group to whom the space permission applies. type: String - contextPath: ConfluenceCloud.Space.permissions.subjects.group.results.id description: ID of the group to whom the space permission applies. type: String - contextPath: ConfluenceCloud.Space.permissions.subjects.group.results._links.self description: Link to the group to whom the space permission applies. type: String - contextPath: ConfluenceCloud.Space.permissions.subjects.group.size description: Size of the list of groups for the given space. type: Number - contextPath: ConfluenceCloud.Space.permissions.operation.operation description: Name of the permission operation. type: String - contextPath: ConfluenceCloud.Space.permissions.operation.targetType description: The space or content type that the operation applies to. type: String - contextPath: ConfluenceCloud.Space.permissions.anonymousAccess description: Whether anonymous users have permission to use the operation. type: Boolean - contextPath: ConfluenceCloud.Space.permissions.unlicensedAccess description: Whether unlicensed users have access from JIRA Service Desk when used with the read space operation. type: Boolean - contextPath: ConfluenceCloud.Space.status description: Status of the space. type: String - contextPath: ConfluenceCloud.Space._links.webui description: Web user interface link of the space. type: String - contextPath: ConfluenceCloud.Space._links.context description: Context link of the space. type: String - contextPath: ConfluenceCloud.Space._links.self description: Link to the space. type: String - contextPath: ConfluenceCloud.Space._links.collection description: Collection link of the space. type: String - contextPath: ConfluenceCloud.Space._links.base description: Base link to the space. type: String - arguments: - defaultValue: '50' description: |- Number of records to retrieve in the response. Note: The minimum value supported is 0 and the maximum value supported is int32. name: limit - defaultValue: '0' description: |- The starting index of the returned content. Note: The minimum value supported is 0 and the maximum value supported is int32. name: offset - description: The space key to retrieve the contents of a specific space. name: space_key - auto: PREDEFINED defaultValue: page description: "The type to retrieve the contents. \nPossible values: page, blogpost." name: type predefined: - page - blogpost - auto: PREDEFINED description: |- Order 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. name: sort_order predefined: - asc - desc - description: |- Key based on which the response will be sorted. Note: If 'sort_order' is specified, 'sort_key' is required. name: sort_key - description: |- The 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. name: creation_date - auto: PREDEFINED description: |- Filter 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. isArray: true name: status predefined: - any - current - trashed - draft - archived - description: |- Indicates 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. isArray: true name: expand description: Deprecated. Use confluence-cloud-page-list or confluence-cloud-blogpost-list instead. Returns the list of content of Confluence. name: confluence-cloud-content-list deprecated: true outputs: - contextPath: ConfluenceCloud.Content.id description: The ID of the content. type: String - contextPath: ConfluenceCloud.Content.type description: Type of the content. type: String - contextPath: ConfluenceCloud.Content.status description: Status of the content. type: String - contextPath: ConfluenceCloud.Content.title description: Title of the content. type: String - contextPath: ConfluenceCloud.Content.childTypes.attachment.value description: Whether the attachment has the given content. type: Boolean - contextPath: ConfluenceCloud.Content.childTypes.attachment._links.self description: Link to the attachment with the given content. type: String - contextPath: ConfluenceCloud.Content.childTypes.comment.value description: Whether a comment is associated with the given content. type: Boolean - contextPath: ConfluenceCloud.Content.childTypes.comment._links.self description: Link to the comment associated with the given content. type: String - contextPath: ConfluenceCloud.Content.childTypes.page.value description: Whether the page is associated with the given content. type: Boolean - contextPath: ConfluenceCloud.Content.childTypes.page._links.self description: Link to the page associated with the given content. type: String - contextPath: ConfluenceCloud.Content.space.id description: ID of the space that the content is being created in. type: Number - contextPath: ConfluenceCloud.Content.space.key description: Key of the space that the content is being created in. type: String - contextPath: ConfluenceCloud.Content.space.name description: Name of the space that the content is being created in. type: String - contextPath: ConfluenceCloud.Content.space.type description: Type of the space that the content is being created in. type: String - contextPath: ConfluenceCloud.Content.space.status description: Status of the space that the content is being created in. type: String - contextPath: ConfluenceCloud.Content.space._links.webui description: Web user interface link to the space that the content is being created in. type: String - contextPath: ConfluenceCloud.Content.space._links.self description: Link to the space that the content is being created in. type: String - contextPath: ConfluenceCloud.Content.history.latest description: Whether the content is the latest content. type: Boolean - contextPath: ConfluenceCloud.Content.history.createdBy.type description: Type of the user who created the content. type: String - contextPath: ConfluenceCloud.Content.history.createdBy.accountId description: Account ID of the user creating the content. type: String - contextPath: ConfluenceCloud.Content.history.createdBy.accountType description: Account type of the user creating the content. type: String - contextPath: ConfluenceCloud.Content.history.createdBy.email description: Email of the user creating the content. type: String - contextPath: ConfluenceCloud.Content.history.createdBy.publicName description: Public name of the user creating the content. type: String - contextPath: ConfluenceCloud.Content.history.createdBy.profilePicture.path description: Profile picture path of the user creating the content. type: String - contextPath: ConfluenceCloud.Content.history.createdBy.profilePicture.width description: Width in pixels of the profile picture of the user. type: Number - contextPath: ConfluenceCloud.Content.history.createdBy.profilePicture.height description: Height in pixels of the profile picture of the user. type: Number - contextPath: ConfluenceCloud.Content.history.createdBy.profilePicture.isDefault description: Whether the profile picture is the default profile picture. type: Boolean - contextPath: ConfluenceCloud.Content.history.createdBy.displayName description: Display name of the user who created the content. type: String - contextPath: ConfluenceCloud.Content.history.createdBy.isExternalCollaborator description: Whether the user is an external collaborator. type: Boolean - contextPath: ConfluenceCloud.Content.history.createdBy._links.self description: Link to the creator of the content. type: String - contextPath: ConfluenceCloud.Content.history.createdDate description: Date and time, in ISO 8601 format, when the content was created (e.g., 2024-01-15T12:34:56Z). type: Date - contextPath: ConfluenceCloud.Content.history._links.self description: Link to the history of the content. type: String - contextPath: ConfluenceCloud.Content.version.by.type description: Type of the user who last updated the content. type: String - contextPath: ConfluenceCloud.Content.version.by.accountId description: Account ID of the user who last updated the content. type: String - contextPath: ConfluenceCloud.Content.version.by.accountType description: Account type of the user who last updated the content. type: String - contextPath: ConfluenceCloud.Content.version.by.email description: Email of the user who last updated the content. type: String - contextPath: ConfluenceCloud.Content.version.by.publicName description: Public name of the user who last updated the content. type: String - contextPath: ConfluenceCloud.Content.version.by.profilePicture.path description: Profile picture path of the user who last updated the content. type: String - contextPath: ConfluenceCloud.Content.version.by.profilePicture.width description: Width in pixels of the profile picture of the user who last updated the content. type: Number - contextPath: ConfluenceCloud.Content.version.by.profilePicture.height description: Height in pixels of the profile picture of the user who last updated the content. type: Number - contextPath: ConfluenceCloud.Content.version.by.profilePicture.isDefault description: Whether the profile picture is the default profile picture. type: Boolean - contextPath: ConfluenceCloud.Content.version.by.displayName description: Display name of the user who last updated the content. type: String - contextPath: ConfluenceCloud.Content.version.by.isExternalCollaborator description: Whether the user is an external collaborator. type: Boolean - contextPath: ConfluenceCloud.Content.version.by._links.self description: Link to the user who last updated the content. type: String - contextPath: ConfluenceCloud.Content.version.when description: Date and time, in ISO 8601 format, when the content was updated (e.g., 2024-01-15T12:34:56Z). type: Date - contextPath: ConfluenceCloud.Content.version.friendlyWhen description: Displays when the content was created. type: String - contextPath: ConfluenceCloud.Content.version.message description: Message of the updated content. type: String - contextPath: ConfluenceCloud.Content.version.number description: Version number of the updated content. type: Number - contextPath: ConfluenceCloud.Content.version.minorEdit description: Whether the edit was minor. type: Boolean - contextPath: ConfluenceCloud.Content.version.confRev description: The revision ID provided by Confluence to be used as a revision in Synchrony. type: String - contextPath: ConfluenceCloud.Content.version.contentTypeModified description: True if the content type is modified in the version. (e.g., page to blog). type: Boolean - contextPath: ConfluenceCloud.Content.version._links.self description: Link to the new version of the content. type: String - contextPath: ConfluenceCloud.Content.ancestors.id description: ID of the parent page of the content. type: String - contextPath: ConfluenceCloud.Content.ancestors.type description: Type of the parent page of the content. type: String - contextPath: ConfluenceCloud.Content.ancestors.status description: Status of the parent page of the content. type: String - contextPath: ConfluenceCloud.Content.container.id description: ID of the container of the content. type: Number - contextPath: ConfluenceCloud.Content.container.key description: Key of the container of the content. type: String - contextPath: ConfluenceCloud.Content.container.name description: Name of the container of the content. type: String - contextPath: ConfluenceCloud.Content.container.type description: Type of the container of the content. type: String - contextPath: ConfluenceCloud.Content.container.status description: Status of the container of the content. type: String - contextPath: ConfluenceCloud.Content.container._links.webui description: Web user interface link to the container of the content. type: String - contextPath: ConfluenceCloud.Content.container._links.self description: Link to the container of the content. type: String - contextPath: ConfluenceCloud.Content.body.storage.value description: The body of the new content. type: String - contextPath: ConfluenceCloud.Content.body.storage.representation description: Representation format of the content. type: String - contextPath: ConfluenceCloud.Content.extensions.position description: The content extension position. type: Number - contextPath: ConfluenceCloud.Content._links.editui description: Edit the user interface link of the content. type: String - contextPath: ConfluenceCloud.Content._links.webui description: Web user interface link of the content. type: String - contextPath: ConfluenceCloud.Content._links.self description: Link to the content. type: String - contextPath: ConfluenceCloud.Content._links.tinyui description: Tiny link of the content. type: String - arguments: - description: The ID of the content to be deleted. name: content_id required: true - auto: PREDEFINED description: |- The deletion type for the content to be deleted. Possible values: move to trash (current), permanent delete (trashed), permanent delete draft (draft). name: deletion_type predefined: - move to trash - permanent delete - permanent delete draft description: |- Deprecated. Use confluence-cloud-page-delete or confluence-cloud-blogpost-delete instead. 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. execution: true name: confluence-cloud-content-delete deprecated: true - arguments: - description: The ID of the content to be updated. name: content_id required: true - auto: PREDEFINED defaultValue: current description: |- The updated status of the content. Possible values: current, trashed, draft. Note: The term 'current' refers to the content that is currently active. name: status predefined: - current - trashed - draft - description: |- The 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. name: version required: true - description: |- The 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. name: title required: true - auto: PREDEFINED description: |- The type of the content. Set the type to the current type of the content. Possible values: page, blogpost, comment, attachment. Note: If type is comment, 'body_value' and 'body_representation' is required. name: type predefined: - page - blogpost - comment - attachment required: true - description: |- The body of the content in the relevant format. Note: 'body_value' must be a string. In order to reflect 'body_value', 'body_representation' is required. name: body_value - auto: PREDEFINED description: |- The content format type. Possible values: view, export_view, styled_view, storage, editor, editor2, anonymous_export_view. Note: If type is comment, possible values are editor, editor2, or storage. name: body_representation predefined: - view - export_view - styled_view - storage - editor - editor2 - anonymous_export_view description: |- Deprecated. Use confluence-cloud-page-update or confluence-cloud-blogpost-update instead. Update the existing content with new content. Note: Updating draft content is currently not supported. name: confluence-cloud-content-update deprecated: true outputs: - contextPath: ConfluenceCloud.Content.id description: The ID of the content. type: String - contextPath: ConfluenceCloud.Content.type description: Type of the content. type: String - contextPath: ConfluenceCloud.Content.status description: Status of the content. type: String - contextPath: ConfluenceCloud.Content.title description: Title of the content. type: String - contextPath: ConfluenceCloud.Content.childTypes.attachment.value description: Whether the attachment has the given content. type: Boolean - contextPath: ConfluenceCloud.Content.childTypes.attachment._links.self description: Link to the attachment with the given content. type: String - contextPath: ConfluenceCloud.Content.childTypes.comment.value description: Whether a comment is associated with the given content. type: Boolean - contextPath: ConfluenceCloud.Content.childTypes.comment._links.self description: Link to the comment associated with the given content. type: String - contextPath: ConfluenceCloud.Content.childTypes.page.value description: Whether the page is associated with the given content. type: Boolean - contextPath: ConfluenceCloud.Content.childTypes.page._links.self description: Link to the page associated with the given content. type: String - contextPath: ConfluenceCloud.Content.space.id description: ID of the space that the content is being created in. type: Number - contextPath: ConfluenceCloud.Content.space.key description: Key of the space that the content is being created in. type: String - contextPath: ConfluenceCloud.Content.space.name description: Name of the space that the content is being created in. type: String - contextPath: ConfluenceCloud.Content.space.type description: Type of the space that the content is being created in. type: String - contextPath: ConfluenceCloud.Content.space.status description: Status of the space that the content is being created in. type: String - contextPath: ConfluenceCloud.Content.space._links.webui description: Web user interface link to the space that the content is being created in. type: String - contextPath: ConfluenceCloud.Content.space._links.self description: Link to the space that the content is being created in. type: String - contextPath: ConfluenceCloud.Content.history.latest description: Whether the content is the latest content. type: Boolean - contextPath: ConfluenceCloud.Content.history.createdBy.type description: Type of the user who created the content. type: String - contextPath: ConfluenceCloud.Content.history.createdBy.accountId description: Account ID of the user creating the content. type: String - contextPath: ConfluenceCloud.Content.history.createdBy.accountType description: Account type of the user creating the content. type: String - contextPath: ConfluenceCloud.Content.history.createdBy.email description: Email of the user creating the content. type: String - contextPath: ConfluenceCloud.Content.history.createdBy.publicName description: Public name of the user creating the content. type: String - contextPath: ConfluenceCloud.Content.history.createdBy.profilePicture.path description: Profile picture path of the user creating the content. type: String - contextPath: ConfluenceCloud.Content.history.createdBy.profilePicture.width description: Width in pixels of the profile picture of the user. type: Number - contextPath: ConfluenceCloud.Content.history.createdBy.profilePicture.height description: Height in pixels of the profile picture of the user. type: Number - contextPath: ConfluenceCloud.Content.history.createdBy.profilePicture.isDefault description: Whether the profile picture is the default profile picture. type: Boolean - contextPath: ConfluenceCloud.Content.history.createdBy.displayName description: Display name of the user who created the content. type: String - contextPath: ConfluenceCloud.Content.history.createdBy.isExternalCollaborator description: Whether the user is an external collaborator. type: Boolean - contextPath: ConfluenceCloud.Content.history.createdBy._links.self description: Link to the creator of the content. type: String - contextPath: ConfluenceCloud.Content.history.createdDate description: Date and time, in ISO 8601 format, when the content was created (e.g., 2024-01-15T12:34:56Z). type: Date - contextPath: ConfluenceCloud.Content.history._links.self description: Link to the history of the content. type: String - contextPath: ConfluenceCloud.Content.version.by.type description: Type of the user who last updated the content. type: String - contextPath: ConfluenceCloud.Content.version.by.accountId description: Account ID of the user who last updated the content. type: String - contextPath: ConfluenceCloud.Content.version.by.accountType description: Account type of the user who last updated the content. type: String - contextPath: ConfluenceCloud.Content.version.by.email description: Email of the user who last updated the content. type: String - contextPath: ConfluenceCloud.Content.version.by.publicName description: Public name of the user who last updated the content. type: String - contextPath: ConfluenceCloud.Content.version.by.profilePicture.path description: Profile picture path of the user who last updated the content. type: String - contextPath: ConfluenceCloud.Content.version.by.profilePicture.width description: Width in pixels of the profile picture of the user who last updated the content. type: Number - contextPath: ConfluenceCloud.Content.version.by.profilePicture.height description: Height in pixels of the profile picture of the user who last updated the content. type: Number - contextPath: ConfluenceCloud.Content.version.by.profilePicture.isDefault description: Whether the profile picture is the default profile picture. type: Boolean - contextPath: ConfluenceCloud.Content.version.by.displayName description: Display name of the user who last updated the content. type: String - contextPath: ConfluenceCloud.Content.version.by.isExternalCollaborator description: Whether the user is an external collaborator. type: Boolean - contextPath: ConfluenceCloud.Content.version.by._links.self description: Link to the user who last updated the content. type: String - contextPath: ConfluenceCloud.Content.version.when description: Date and time, in ISO 8601 format, when the content was updated (e.g., 2024-01-15T12:34:56Z). type: Date - contextPath: ConfluenceCloud.Content.version.friendlyWhen description: Display the information of when the content was created. type: String - contextPath: ConfluenceCloud.Content.version.message description: Message of the updated content. type: String - contextPath: ConfluenceCloud.Content.version.number description: Version number of the updated content. type: Number - contextPath: ConfluenceCloud.Content.version.minorEdit description: Whether the edit was minor. type: Boolean - contextPath: ConfluenceCloud.Content.version.confRev description: The revision ID provided by Confluence to be used as a revision in Synchrony. type: String - contextPath: ConfluenceCloud.Content.version.contentTypeModified description: True if the content type is modified in the version. (e.g., page to blog). type: Boolean - contextPath: ConfluenceCloud.Content.version._links.self description: Link to the new version of the content. type: String - contextPath: ConfluenceCloud.Content.ancestors.id description: ID of the parent page of the content. type: String - contextPath: ConfluenceCloud.Content.ancestors.type description: Type of the parent page of the content. type: String - contextPath: ConfluenceCloud.Content.ancestors.status description: Status of the parent page of the content. type: String - contextPath: ConfluenceCloud.Content.ancestors.title description: Title of the parent page of the content. type: String - contextPath: ConfluenceCloud.Content.ancestors.extensions.position description: The content extension position. type: Number - contextPath: ConfluenceCloud.Content.ancestors._links.self description: Link to the parent page of the content. type: String - contextPath: ConfluenceCloud.Content.ancestors._links.tinyui description: Tiny link to the parent page of the content. type: String - contextPath: ConfluenceCloud.Content.ancestors._links.editui description: Edit the user interface link to the parent page of the content. type: String - contextPath: ConfluenceCloud.Content.ancestors._links.webui description: Web user interface link to the parent page of the content. type: String - contextPath: ConfluenceCloud.Content.container.id description: ID of the container of the content. type: Number - contextPath: ConfluenceCloud.Content.container.key description: Key of the container of the content. type: String - contextPath: ConfluenceCloud.Content.container.name description: Name of the container of the content. type: String - contextPath: ConfluenceCloud.Content.container.type description: Type of the container of the content. type: String - contextPath: ConfluenceCloud.Content.container.status description: Status of the container of the content. type: String - contextPath: ConfluenceCloud.Content.container._links.webui description: Web user interface link to the container of the content. type: String - contextPath: ConfluenceCloud.Content.container._links.self description: Link to the container of the content. type: String - contextPath: ConfluenceCloud.Content.body.storage.value description: The body of the new content. type: String - contextPath: ConfluenceCloud.Content.body.storage.representation description: Representation format of the content. type: String - contextPath: ConfluenceCloud.Content.extensions.position description: The content extension position. type: Number - contextPath: ConfluenceCloud.Content._links.editui description: Edit the user interface link of the content. type: String - contextPath: ConfluenceCloud.Content._links.webui description: Web user interface link of the content. type: String - contextPath: ConfluenceCloud.Content._links.context description: Context link of the content. type: String - contextPath: ConfluenceCloud.Content._links.self description: Link to the content. type: String - contextPath: ConfluenceCloud.Content._links.tinyui description: Tiny link of the content. type: String - contextPath: ConfluenceCloud.Content._links.collection description: Collection link of the content. type: String - contextPath: ConfluenceCloud.Content._links.base description: Base link to the content. type: String - arguments: - description: The CQL (Confluence Query Language) string that is used to find the requested content. name: query required: true - defaultValue: '50' description: |- Number of records to retrieve in the response. Note: The minimum value supported is 0 and the maximum value supported is int32. name: limit - description: |- Filter the result based on the content status. Possible values: current, draft, archived. Note: Supports multiple comma-separated values. isArray: true name: content_status predefined: - '' - description: Retrieves the next page records for the given query (next_page_token retrieved in previous content response). name: next_page_token - description: |- Indicates 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. isArray: true name: expand description: |- 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/. name: confluence-cloud-content-search outputs: - contextPath: ConfluenceCloud.Content.id description: The ID of the content. type: String - contextPath: ConfluenceCloud.Content.type description: Type of the content. type: String - contextPath: ConfluenceCloud.Content.status description: Status of the content. type: String - contextPath: ConfluenceCloud.Content.title description: Title of the content. type: String - contextPath: ConfluenceCloud.Content.childTypes.attachment.value description: Whether the attachment has the given content. type: Boolean - contextPath: ConfluenceCloud.Content.childTypes.attachment._links.self description: Link to the attachment with the given content. type: String - contextPath: ConfluenceCloud.Content.childTypes.comment.value description: Whether a comment is associated with the given content. type: Boolean - contextPath: ConfluenceCloud.Content.childTypes.comment._links.self description: Link to the comment associated with the given content. type: String - contextPath: ConfluenceCloud.Content.childTypes.page.value description: Whether the page is associated with the given content. type: Boolean - contextPath: ConfluenceCloud.Content.childTypes.page._links.self description: Link to the page associated with the given content. type: String - contextPath: ConfluenceCloud.Content.space.id description: ID of the space that the content is being created in. type: Number - contextPath: ConfluenceCloud.Content.space.key description: Key of the space that the content is being created in. type: String - contextPath: ConfluenceCloud.Content.space.name description: Name of the space that the content is being created in. type: String - contextPath: ConfluenceCloud.Content.space.type description: Type of the space that the content is being created in. type: String - contextPath: ConfluenceCloud.Content.space.status description: Status of the space that the content is being created in. type: String - contextPath: ConfluenceCloud.Content.space._links.webui description: Web user interface link to the space that the content is being created in. type: String - contextPath: ConfluenceCloud.Content.space._links.self description: Link to the space that the content is being created in. type: String - contextPath: ConfluenceCloud.Content.history.latest description: Whether the content is the latest content. type: Boolean - contextPath: ConfluenceCloud.Content.history.createdBy.type description: Type of the user who created the content. type: String - contextPath: ConfluenceCloud.Content.history.createdBy.accountId description: Account ID of the user creating the content. type: String - contextPath: ConfluenceCloud.Content.history.createdBy.accountType description: Account type of the user creating the content. type: String - contextPath: ConfluenceCloud.Content.history.createdBy.email description: Email of the user creating the content. type: String - contextPath: ConfluenceCloud.Content.history.createdBy.publicName description: Public name of the user creating the content. type: String - contextPath: ConfluenceCloud.Content.history.createdBy.profilePicture.path description: Profile picture path of the user creating the content. type: String - contextPath: ConfluenceCloud.Content.history.createdBy.profilePicture.width description: Width in pixels of the profile picture of the user. type: Number - contextPath: ConfluenceCloud.Content.history.createdBy.profilePicture.height description: Height in pixels of the profile picture of the user. type: Number - contextPath: ConfluenceCloud.Content.history.createdBy.profilePicture.isDefault description: Whether the profile picture is the default profile picture. type: Boolean - contextPath: ConfluenceCloud.Content.history.createdBy.displayName description: Display name of the user who created the content. type: String - contextPath: ConfluenceCloud.Content.history.createdBy.isExternalCollaborator description: Whether the user is an external collaborator. type: Boolean - contextPath: ConfluenceCloud.Content.history.createdBy._links.self description: Link to the creator of the content. type: String - contextPath: ConfluenceCloud.Content.history.createdDate description: Date and time, in ISO 8601 format, when the content was created (e.g., 2024-01-15T12:34:56Z). type: Date - contextPath: ConfluenceCloud.Content.history._links.self description: Link to the history of the content. type: String - contextPath: ConfluenceCloud.Content.version.by.type description: Type of the user who last updated the content. type: String - contextPath: ConfluenceCloud.Content.version.by.accountId description: Account ID of the user who last updated the content. type: String - contextPath: ConfluenceCloud.Content.version.by.accountType description: Account type of the user who last updated the content. type: String - contextPath: ConfluenceCloud.Content.version.by.email description: Email of the user who last updated the content. type: String - contextPath: ConfluenceCloud.Content.version.by.publicName description: Public name of the user who last updated the content. type: String - contextPath: ConfluenceCloud.Content.version.by.profilePicture.path description: Profile picture path of the user who last updated the content. type: String - contextPath: ConfluenceCloud.Content.version.by.profilePicture.width description: Width in pixels of the profile picture of the user who last updated the content. type: Number - contextPath: ConfluenceCloud.Content.version.by.profilePicture.height description: Height in pixels of the profile picture of the user who last updated the content. type: Number - contextPath: ConfluenceCloud.Content.version.by.profilePicture.isDefault description: Whether the profile picture is the default profile picture. type: Boolean - contextPath: ConfluenceCloud.Content.version.by.displayName description: Display name of the user who last updated the content. type: String - contextPath: ConfluenceCloud.Content.version.by.isExternalCollaborator description: Whether the user is an external collaborator. type: Boolean - contextPath: ConfluenceCloud.Content.version.by._links.self description: Link to the user who last updated the content. type: String - contextPath: ConfluenceCloud.Content.version.when description: Date and time, in ISO 8601 format, when the content was updated (e.g., 2024-01-15T12:34:56Z). type: Date - contextPath: ConfluenceCloud.Content.version.friendlyWhen description: Displays when the content was created. type: String - contextPath: ConfluenceCloud.Content.version.message description: Message of the updated content. type: String - contextPath: ConfluenceCloud.Content.version.number description: Version number of the updated content. type: Number - contextPath: ConfluenceCloud.Content.version.minorEdit description: Whether the edit was minor. type: Boolean - contextPath: ConfluenceCloud.Content.version.confRev description: The revision ID provided by Confluence to be used as a revision in Synchrony. type: String - contextPath: ConfluenceCloud.Content.version.contentTypeModified description: True if the content type is modified in the version. (e.g., page to blog). type: Boolean - contextPath: ConfluenceCloud.Content.version._links.self description: Link to the new version of the content. type: String - contextPath: ConfluenceCloud.Content.ancestors.id description: ID of the parent page of the content. type: String - contextPath: ConfluenceCloud.Content.ancestors.type description: Type of the parent page of the content. type: String - contextPath: ConfluenceCloud.Content.ancestors.status description: Status of the parent page of the content. type: String - contextPath: ConfluenceCloud.Content.container.id description: ID of the container of the content. type: Number - contextPath: ConfluenceCloud.Content.container.key description: Key of the container of the content. type: String - contextPath: ConfluenceCloud.Content.container.name description: Name of the container of the content. type: String - contextPath: ConfluenceCloud.Content.container.type description: Type of the container of the content. type: String - contextPath: ConfluenceCloud.Content.container.status description: Status of the container of the content. type: String - contextPath: ConfluenceCloud.Content.container._links.webui description: Web user interface link to the container of the content. type: String - contextPath: ConfluenceCloud.Content.container._links.self description: Link to the container of the content. type: String - contextPath: ConfluenceCloud.Content.body.storage.value description: The body of the new content. type: String - contextPath: ConfluenceCloud.Content.body.storage.representation description: Representation format of the content. type: String - contextPath: ConfluenceCloud.Content.extensions.position description: The content extension position. type: Number - contextPath: ConfluenceCloud.Content._links.editui description: Edit the user interface link of the content. type: String - contextPath: ConfluenceCloud.Content._links.webui description: Web user interface link of the content. type: String - contextPath: ConfluenceCloud.Content._links.self description: Link to the content. type: String - contextPath: ConfluenceCloud.Content._links.tinyui description: Tiny link of the content. type: String - contextPath: ConfluenceCloud.PageToken.name description: The command name. type: String - contextPath: ConfluenceCloud.PageToken.next_token description: The next page token. type: String - arguments: - defaultValue: '50' description: |- Number of records to retrieve in the response. Note: The minimum value supported is 0 and the maximum value supported is int32. name: limit - defaultValue: '0' description: |- The starting index of the returned users. Note: The minimum value supported is 0 and the maximum value supported is int32. name: offset description: Returns a list of users. name: confluence-cloud-user-list outputs: - contextPath: ConfluenceCloud.User.type description: Type of the user. type: String - contextPath: ConfluenceCloud.User.accountId description: Account ID of the user. type: String - contextPath: ConfluenceCloud.User.accountType description: Account type of the user. type: String - contextPath: ConfluenceCloud.User.publicName description: The public name or nickname of the user. type: String - contextPath: ConfluenceCloud.User.profilePicture.path description: Path of the user's profile picture. type: String - contextPath: ConfluenceCloud.User.profilePicture.width description: Width in pixels of the user's profile picture. type: Number - contextPath: ConfluenceCloud.User.profilePicture.height description: Height in pixels of the user's profile picture. type: Number - contextPath: ConfluenceCloud.User.profilePicture.isDefault description: Whether the profile picture is the default profile picture. type: Boolean - contextPath: ConfluenceCloud.User.displayName description: Display name of the user. type: String - contextPath: ConfluenceCloud.User.isExternalCollaborator description: Whether the user is an external collaborator user. type: Boolean - contextPath: ConfluenceCloud.User._links.self description: Link to the user. type: String - arguments: - defaultValue: '50' description: |- Number of records to retrieve in the response. Note: The minimum value supported is 0 and the maximum value supported is int32. name: limit - defaultValue: '0' description: |- The starting index of the returned groups. Note: The minimum value supported is 0 and the maximum value supported is int32. name: offset - auto: PREDEFINED description: |- The group permission level for which to filter results. Possible values: user, admin, site-admin. name: access_type predefined: - user - admin - site-admin description: Returns all user groups. name: confluence-cloud-group-list outputs: - contextPath: ConfluenceCloud.Group.type description: Type of the group. type: String - contextPath: ConfluenceCloud.Group.name description: Name of the group. type: String - contextPath: ConfluenceCloud.Group.id description: ID of the group. type: String - contextPath: ConfluenceCloud.Group._links.self description: Link to the group. type: String - arguments: - name: should_push_events description: Set this argument to True in order to create events, otherwise the command will only display them. auto: PREDEFINED predefined: - "true" - "false" defaultValue: "false" - name: start_date description: Filters the results to the records on or after the start date. The start date must be specified as epoch time in milliseconds. - name: limit description: The maximum number of records to return per page. Note, this may be restricted by fixed system limits. name: confluence-cloud-get-events description: Retrieves a list of events from the Atlassian Confluence Cloud instance. Use this command for development and debugging only, as it may produce duplicate events, exceed API rate limits, or disrupt the fetch mechanism. outputs: - contextPath: ConfluenceCloud.Event.author.type description: The type of author who created this event. type: String - contextPath: ConfluenceCloud.Event.author.displayName description: The display name of the author who created this event. type: String - contextPath: ConfluenceCloud.Event.author.operations description: Nullable. Author's operations. type: String - contextPath: ConfluenceCloud.Event.author.username description: Username of the author of this event. type: String - contextPath: ConfluenceCloud.Event.author.userKey description: User key of the author of this event. type: String - contextPath: ConfluenceCloud.Event.author.accountId description: Account ID of the author of this event. type: String - contextPath: ConfluenceCloud.Event.author.accountType description: Type of account of the author of this event. type: String - contextPath: ConfluenceCloud.Event.author.externalCollaborator description: Deprecated. Is the author of this event an external collaborator. type: Boolean - contextPath: ConfluenceCloud.Event.author.isExternalCollaborator description: Deprecated. Is the author of this event an external collaborator. type: Boolean - contextPath: ConfluenceCloud.Event.author.publicName description: The public name of the author of this event. type: String - contextPath: ConfluenceCloud.Event.remoteAddress description: The remote address from which the event was performed. type: String - contextPath: ConfluenceCloud.Event.creationDate description: The creation date-time of the audit record, as a timestamp. type: Number - contextPath: ConfluenceCloud.Event.summary description: Summary of the audit. type: Strings - contextPath: ConfluenceCloud.Event.description description: Description of the audit. type: String - contextPath: ConfluenceCloud.Event.category description: Category of the event. type: String - contextPath: ConfluenceCloud.Event.sysAdmin description: Was the event created by a system administrator. type: Boolean - contextPath: ConfluenceCloud.Event.superAdmin description: Was the event created by a super administrator. type: Boolean - contextPath: ConfluenceCloud.Event.affectedObject.name description: Name of the object affected by the event. type: String - contextPath: ConfluenceCloud.Event.affectedObject.objectType description: Type of the object affected by the event. type: String - contextPath: ConfluenceCloud.Event.changedValues.name description: Name of the changed value. type: String - contextPath: ConfluenceCloud.Event.changedValues.oldValue description: The old value before the change the event describes. type: String - contextPath: ConfluenceCloud.Event.changedValues.hiddenOldValue description: The old hidden value before the change the event describes. type: String - contextPath: ConfluenceCloud.Event.changedValues.newValue description: The new value after the change the event describes. type: String - contextPath: ConfluenceCloud.Event.changedValues.hiddenNewValue description: The new hidden value after the change the event describes. type: String - contextPath: ConfluenceCloud.Event.associatedObjects.name description: Name of the associated object. type: String - contextPath: ConfluenceCloud.Event.associatedObjects.objectType description: The type of the associated object. type: String - arguments: - description: The ID of the Content that should be retrieved. name: content_id required: true description: Deprecated. Use confluence-cloud-page-list or confluence-cloud-blogpost-list instead. Retrieves a Content Item by its Content ID. name: confluence-cloud-content-get deprecated: true outputs: - contextPath: ConfluenceCloud.Content.id description: The content ID. type: String - contextPath: ConfluenceCloud.Content.type description: The type of the content (e.g., page, blogpost). type: String - contextPath: ConfluenceCloud.Content.ari description: The Atlassian Resource Identifier (ARI) for the content. type: String - contextPath: ConfluenceCloud.Content.base64EncodedAri description: The Base64 encoded ARI of the content. type: String - contextPath: ConfluenceCloud.Content.status description: The status of the content (e.g., current, archived, draft). type: String - contextPath: ConfluenceCloud.Content.title description: The title of the content. type: String - contextPath: ConfluenceCloud.Content.body description: The body of the content. type: Unknown - contextPath: ConfluenceCloud.Content.body.storage.value description: The raw storage-format value of the content body (may contain HTML/XML). type: String - contextPath: ConfluenceCloud.Content.body.storage.representation description: The representation format of the body (e.g., storage, view). type: String - contextPath: ConfluenceCloud.Content.body.storage.embeddedContent description: A list of embedded content objects in the body. type: Unknown - contextPath: ConfluenceCloud.Content.body.storage._expandable description: Link to the content resource for the body. type: String - contextPath: ConfluenceCloud.Content.extensions.position description: Position of the content in the page tree or order. type: Number - contextPath: ConfluenceCloud.Content._links.editui description: Link to edit the content in the UI. type: String - contextPath: ConfluenceCloud.Content._links.webui description: Web UI link to the content. type: String - contextPath: ConfluenceCloud.Content._links.edituiv2 description: Link to edit the content in the new UI. type: String - contextPath: ConfluenceCloud.Content._links.context description: Context path of the Confluence instance. type: String - contextPath: ConfluenceCloud.Content._links.self description: REST API self link for the content. type: String - contextPath: ConfluenceCloud.Content._links.tinyui description: Tiny link to the content. type: String - contextPath: ConfluenceCloud.Content._links.collection description: Link to the collection of content resources. type: String - contextPath: ConfluenceCloud.Content._links.base description: Base URL of the Confluence site. type: String - arguments: - description: The URL of the Confluence page to retrieve content from. Supported formats include https://.atlassian.net/wiki/spaces//pages// and https://<site>.atlassian.net/wiki/pages/viewpage.action?pageId=<pageId>. name: url prettyname: Page URL required: true description: Retrieves content from a Confluence page by its URL and returns it in a generic unified format under the FileContent context key. The command automatically extracts the content ID from the URL. name: get-file-content hidden: true outputs: - contextPath: FileContent.Id description: The unique identifier of the content. type: String - contextPath: FileContent.Title description: The title of the content. type: String - contextPath: FileContent.Type description: The type of the content (e.g., page, blogpost). type: String - contextPath: FileContent.Name description: The name of the content (same as title for Confluence). type: String - contextPath: FileContent.Content description: The body content in storage format (HTML). type: String - contextPath: FileContent.Url description: The original URL used to retrieve the content. type: String - arguments: [] name: confluence-cloud-oauth-start description: Starts the OAuth 2.0 authentication flow. Returns an authorization URL that the user must visit to authorize the integration. - arguments: - description: The authorization code received from the OAuth callback URL after user authorization. name: code required: true name: confluence-cloud-oauth-complete description: Completes the OAuth 2.0 authentication flow by exchanging the authorization code for access and refresh tokens. - arguments: [] name: confluence-cloud-oauth-test description: Tests the OAuth 2.0 authentication by verifying the current access token is valid. dockerimage: demisto/btfl-soup:1.0.1.10120494 isfetchevents: true isfetchevents:xsoar: false runonce: false script: '-' subtype: python3 type: python tests: - No tests (auto formatted) fromversion: 6.2.0 triggers: - conditions: - name: auth_method operator: equal value: Basic effects: - name: username action: required: true - name: client_credentials action: hidden: true - name: callback_url action: hidden: true - name: cloud_id action: hidden: true - conditions: - name: auth_method operator: equal value: OAuth 2.0 effects: - name: username action: hidden: true - name: client_credentials action: required: true - name: callback_url action: required: true - name: cloud_id action: required: true