> ## 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.

# Get Page

Get a page by its ID.

**Required Permission:**

* read: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-get).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter | Description                        |
  | --------- | ---------------------------------- |
  | ID        | The ID of the page to be returned. |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter                                | Description                                                                                          |
  | ---------------------------------------- | ---------------------------------------------------------------------------------------------------- |
  | Content Format                           | Select the content format to be returned in the `body` field of the response.                        |
  | Get Draft                                | Select to retrieve the draft version of this page.                                                   |
  | Include Collaborators                    | Select to include collaborators associated with this page in the response.                           |
  | Include Direct Children                  | Select to include the direct children of this page in the response.                                  |
  | Include Favorited By Current User Status | Select to include whether the page is favorited by the current user in the response.                 |
  | Include Labels                           | Select to include labels associated with this page in the response.                                  |
  | Include Likes                            | Select to include likes associated with this page in the response.                                   |
  | Include Operations                       | Select to include operations associated with this page in the response.                              |
  | Include Properties                       | Select to include content properties associated with this page in the response.                      |
  | Include Versions                         | Select to include versions associated with this page in the response.                                |
  | Include Web Resources                    | Select to include web resources associated with this page in the response.                           |
  | Version                                  | The previous version number to retrieve.<br /><br />If not provided, the latest version is returned. |
</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

[Get Page with Confluence and Send Results Via Email](https://library.blinkops.com/workflows/get-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/get-page-with-confluence-and-send-results-via-email/canvas" />
</div>
