> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Update Page

Update an existing page in Confluence.

**Required Permission:**

* write:page:confluence.

<Note>
  External Documentation

  To learn more, visit the [Confluence documentation](https://developer.atlassian.com/cloud/confluence/rest/v2/api-group-page/#api-pages-id-put).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter                       | Description                                                                                                                                                                                                                                                                                                       |
  | ------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Atlas Doc Format Representation | The type of content representation.                                                                                                                                                                                                                                                                               |
  | Atlas Doc Format Value          | The body of the page.                                                                                                                                                                                                                                                                                             |
  | Body Format                     | Select to provide the page content as a `Page Body Write` or a `Page Nested Body Write`.                                                                                                                                                                                                                          |
  | Body Representation             | The type of content representation.                                                                                                                                                                                                                                                                               |
  | Body Value                      | The body of the page.                                                                                                                                                                                                                                                                                             |
  | ID                              | The ID of the page to be updated.                                                                                                                                                                                                                                                                                 |
  | Status                          | Select the updated status of the page.<br /><br />**Note:** Changing the status from `current` to `draft` deletes any existing draft in favor of the updated one. This action can also be used to restore a `trashed` or `deleted` page to `current` status, in which case the page contents will not be updated. |
  | Storage Representation          | The type of content representation.                                                                                                                                                                                                                                                                               |
  | Storage Value                   | The body of the page.                                                                                                                                                                                                                                                                                             |
  | Title                           | The updated title of the page.                                                                                                                                                                                                                                                                                    |
  | Version Number                  | The new version number of the page.<br /><br />Set this to the current version number plus one, unless you are updating the status to `draft`, which requires a version number of `1`. If you don't know the current version number, use the `Get Page` action.                                                   |
  | Wiki Representation             | The type of content representation.                                                                                                                                                                                                                                                                               |
  | Wiki Value                      | The body of the page.                                                                                                                                                                                                                                                                                             |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter       | Description                                                                                                      |
  | --------------- | ---------------------------------------------------------------------------------------------------------------- |
  | Owner ID        | The account ID of the user to transfer page ownership to.                                                        |
  | Parent ID       | The ID of the parent page, to move the page under a different parent within the same space.                      |
  | Space ID        | The ID of the containing space.<br /><br />**Note:** This does not support moving the page to a different space. |
  | Version Message | An optional message to be stored with the version.                                                               |
</div>

## Example Output

```json theme={"dark"}
{
	"id": "<string>",
	"status": "current",
	"title": "<string>",
	"spaceId": "<string>",
	"parentId": "<string>",
	"parentType": "page",
	"position": 57,
	"authorId": "<string>",
	"ownerId": "<string>",
	"lastOwnerId": "<string>",
	"createdAt": "<string>",
	"version": {
		"createdAt": "<string>",
		"message": "<string>",
		"number": 19,
		"minorEdit": true,
		"authorId": "<string>"
	},
	"body": {
		"storage": {},
		"atlas_doc_format": {},
		"view": {}
	},
	"labels": {
		"results": [
			{
				"id": "<string>",
				"name": "<string>",
				"prefix": "<string>"
			}
		],
		"meta": {
			"hasMore": true,
			"cursor": "<string>"
		},
		"_links": {
			"self": "<string>"
		}
	},
	"properties": {
		"results": [
			{
				"id": "<string>",
				"key": "<string>",
				"version": {}
			}
		],
		"meta": {
			"hasMore": true,
			"cursor": "<string>"
		},
		"_links": {
			"self": "<string>"
		}
	},
	"operations": {
		"results": [
			{
				"operation": "<string>",
				"targetType": "<string>"
			}
		],
		"meta": {
			"hasMore": true,
			"cursor": "<string>"
		},
		"_links": {
			"self": "<string>"
		}
	},
	"likes": {
		"results": [
			{
				"accountId": "<string>"
			}
		],
		"meta": {
			"hasMore": true,
			"cursor": "<string>"
		},
		"_links": {
			"self": "<string>"
		}
	},
	"versions": {
		"results": [
			{
				"createdAt": "<string>",
				"message": "<string>",
				"number": 19,
				"minorEdit": true,
				"authorId": "<string>"
			}
		],
		"meta": {
			"hasMore": true,
			"cursor": "<string>"
		},
		"_links": {
			"self": "<string>"
		}
	},
	"isFavoritedByCurrentUser": true,
	"_links": {
		"base": "<string>"
	}
}
```

## Workflow Library Example

[Update Page with Confluence and Send Results Via Email](https://library.blinkops.com/workflows/update-page-with-confluence-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/update-page-with-confluence-and-send-results-via-email/canvas" />
</div>
