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

# Append Text Block To Page

Create a new text block at the bottom of a specified page.

<Note>
  The text block has a limit of 2000 characters.
</Note>

<Note>
  External Documentation

  To learn more, visit the [Notion documentation](https://developers.notion.com/reference/patch-page).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter    | Description                                                                                                                                                                                                                                                                                                                                                                                          |
  | ------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Page ID      | The ID of the page to add the text to. <br />Note: Only pages with titles will appear in the autofill. If the relevant page name does not appear, manually add it's ID instead. <br />The ID can be found in the suffix of the page's web link, e.g. the page in link `https://www.notion.so/Blink-Is-Awesome-d132f3904fbc45329chjc7b1d52661e5` will have the id `d132f3904fbc45329chjc7b1d52661e5`. |
  | Text Color   | The color of the added text.                                                                                                                                                                                                                                                                                                                                                                         |
  | Text Content | The content of the text to add.                                                                                                                                                                                                                                                                                                                                                                      |
  | Type         | The type of text block to add to the page.                                                                                                                                                                                                                                                                                                                                                           |
</div>

## Example Output

```json theme={"dark"}
{
	"object": "<string>",
	"results": [
		{
			"object": "<string>",
			"id": "<string>",
			"parent": {
				"type": "<string>",
				"page_id": "<string>"
			},
			"created_time": "2012-03-26T13:51:59.402Z",
			"last_edited_time": "2014-05-14T02:42:31.214Z",
			"created_by": {
				"object": "<string>",
				"id": "<string>"
			},
			"last_edited_by": {
				"object": "<string>",
				"id": "<string>"
			},
			"has_children": false,
			"archived": false,
			"in_trash": false,
			"type": "<string>",
			"heading_1": {
				"rich_text": [
					{
						"type": "<string>",
						"text": {
							"content": "<string>",
							"link": null
						},
						"annotations": {
							"bold": false,
							"italic": false,
							"strikethrough": false,
							"underline": false,
							"code": false,
							"color": "<string>"
						},
						"plain_text": "<string>",
						"href": null
					}
				],
				"is_toggleable": false,
				"color": "<string>"
			}
		}
	],
	"next_cursor": null,
	"has_more": false,
	"type": "<string>",
	"block": {},
	"request_id": "<string>"
}
```

## Workflow Library Example

[Create Notion Document on New Datadog Incident](https://library.blinkops.com/workflows/create-notion-document-on-new-datadog-incident)

<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/create-notion-document-on-new-datadog-incident/canvas" />
</div>
