notion_api 2.0.0-beta1 notion_api: ^2.0.0-beta1 copied to clipboard
A wrapper for the public beta Notion API to manage it like a Notion SDK package for dart.
Content
Initialization #
Full instance #
You only have to create a new instance of the NotionClient
class and all the API requests will be available as class properties methods.
NotionClient notion = NotionClient(token: 'YOUR SECRET TOKEN FROM INTEGRATIONS PAGE');
Individual classes #
You can also use individual request group class like NotionPagesClient
or NotionDatabasesClient
. They are used like the main client but the methods are class methods instead of class properties methods.
Example
// With main class
NotionClient notion = NotionClient(token: 'YOUR_TOKEN');
notion.databases.fetchAll();
// With individual class
NotionDatabasesClient databases = NotionDatabasesClient(token: 'YOUR_TOKEN');
databases.fetchAll();
Pages #
Create a page #
You have to define the parent of the page. It can be:
database
page
workspace
There is a constructor for each one (see example below) but the main constructor can be used as well but the ParentType
will be required.
// With database parent
Page page = Page(
parent: Parent.database(id: 'YOUR_DATABASE_ID'), // <- database
title: Text('NotionClient (v1): Page test'),
);
// With page parent
Page page = Page(
parent: Parent.page(id: 'YOUR_PAGE_ID'), // <- page
title: Text('NotionClient (v1): Page test'),
);
notion.pages.create(page);
See more at https://developers.notion.com/reference/post-page
Update a page #
Update the properties of the page.
If you want to update the content of the page itself the use the block children section.
Note: If the parent is a database, the new property values in the properties parameter must conform to the parent database's property schema.
notion.pages.update('YOUR_PAGE_ID',
properties: Properties(map: {
'Description': RichTextProp(content: [
Text('New value for Description property'),
]),
}),
);
See more at https://developers.notion.com/reference/patch-page
Archive (delete) a page #
Archive or delete a page is a subaction of update it according to the API reference.
You can archive or un-archive the page just by toggling the boolean value of the archived
parameter.
notion.pages.update('YOUR_PAGE_ID',
archived: true,
);
See more at https://developers.notion.com/reference/patch-page#archive-delete-a-page
Retrieve a page #
notion.pages.fetch('YOUR_PAGE_ID');
See more at https://developers.notion.com/reference/get-page
Databases #
Create a database #
You have to define the parent of the page. It can be:
page
workspace
// With page parent
Page page = Database(
parent: Parent.page(id: 'YOUR_PAGE_ID'),
title: [
Text('Database from examples'),
],
pagesColumnName: 'Custom pages column name',
properties: Properties(map: {
'Description': MultiSelectProp(options: [
MultiSelectOption(name: 'Read', color: ColorsTypes.Blue),
MultiSelectOption(name: 'Sleep', color: ColorsTypes.Green),
]),
}),
);
notion.databases.create(page);
See more at https://developers.notion.com/reference/create-a-database
Retrieve a database #
notion.databases.fetch('YOUR_DATABASE_ID');
See more at https://developers.notion.com/reference/get-database
List databases #
Warning: This endpoint is not recommended by the Notion team.
Parameters:
- startCursor: If supplied, this endpoint will return a page of results starting after the cursor provided. If not supplied, this endpoint will return the first page of results.
- pageSize: The number of items from the full list desired in the response. Maximum: 100, otherwise will be ignored.
notion.databases.fetchAll();
See more at https://developers.notion.com/reference/get-databases
Block children #
Retrieve block children #
notion.blocks.fetch('YOUR_BLOCK_ID');
See more at https://developers.notion.com/reference/get-block-children
Append block children #
Parameters:
- to: Identifier for a block.
- children: Child content to append to a container block as an array of block objects.
- Can receive a
Paragraph
,Heading
&ToDo
object. - The
Paragraph
object can contain onlyText
objects. Text
can receive aTextAnnotations
class with the style of the text.
- Can receive a
Heading & Paragraph #
Code
// Option A: using `addAll(List<Block>)`
Children childrenA = Children().addAll([
Heading(text: Text('Test')),
Paragraph(texts: [
Text('Lorem ipsum (A)'),
Text(
'Lorem ipsum (B)',
annotations: TextAnnotations(
bold: true,
underline: true,
color: ColorsTypes.Orange,
),
),
], children: [
Heading(text: Text('Subtitle'), type: 3),
]),
]);
// Option B: using `add(Block)`
Children childrenB =
Children().add(Heading(text: Text('Test'))).add(Paragraph(texts: [
Text('Lorem ipsum (A)'),
Text('Lorem ipsum (B)',
annotations: TextAnnotations(
bold: true,
underline: true,
color: ColorsTypes.Orange,
),
),
], children: [
Heading(text: Text('Subtitle'), type: 3),
],
));
// Option C: using `withBlocks(List<Block>)` constructor
Children childrenC = Children.withBlocks([
Heading(text: Text('Test')),
Paragraph(texts: [
Text('Lorem ipsum (A)'),
Text(
'Lorem ipsum (B)',
annotations: TextAnnotations(
bold: true,
underline: true,
color: ColorsTypes.Orange,
),
),
], children: [
Heading(text: Text('Subtitle'), type: 3),
]),
]);
// Option D (Recommended): using main constructor
Children childrenD = Children(blocks: [
Heading(text: Text('Test')),
Paragraph(texts: [
Text('Lorem ipsum (A)'),
Text(
'Lorem ipsum (B)',
annotations: TextAnnotations(
bold: true,
underline: true,
color: ColorsTypes.Orange,
),
),
], children: [
Heading(text: Text('Subtitle'), type: 3),
]),
]);
// Send the instance to Notion
notion.blocks.append(
to: 'YOUR_BLOCK_ID',
children: childrenA, // or `childrenB`, `childrenC` or `childrenD`, any of these will produce the same result.
);
Result
To do #
Code
Children children =
Children(blocks: [
ToDo(text: Text('This is a todo item A')),
ToDo(
texts: [
Text('This is a todo item'),
Text(
'B',
annotations: TextAnnotations(bold: true),
),
],
),
ToDo(text: Text('Todo item with children'), children: [
BulletedListItem(text: Text('A')),
BulletedListItem(text: Text('B')),
]),
],
);
// Send the instance to Notion
notion.blocks.append(
to: 'YOUR_BLOCK_ID',
children: children,
);
Result
Toggle #
Code
Children children =
Children(blocks: [
Toggle(
text: Text('This is a toggle block'),
children: [
Paragraph(
texts: [
Text(
'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas venenatis dolor sed ex egestas, et vehicula tellus faucibus. Sed pellentesque tellus eget imperdiet vulputate.')
],
),
BulletedListItem(text: Text('A')),
BulletedListItem(text: Text('B')),
BulletedListItem(text: Text('B')),
],
),
],
);
// Send the instance to Notion
notion.blocks.append(
to: 'YOUR_BLOCK_ID',
children: children,
);
Result
Bulleted List Item #
Code
Children children =
Children(blocks: [
BulletedListItem(text: Text('This is a bulleted list item A')),
BulletedListItem(text: Text('This is a bulleted list item B')),
BulletedListItem(
text: Text('This is a bulleted list item with children'),
children: [
Paragraph(texts: [
Text('A'),
Text('B'),
Text('C'),
])
],
),
],
);
// Send the instance to Notion
notion.blocks.append(
to: 'YOUR_BLOCK_ID',
children: children,
);
Result
Numbered List Item #
Code
Children children =
Children(blocks: [
NumberedListItem(text: Text('This is a numbered list item A')),
NumberedListItem(text: Text('This is a numbered list item B')),
NumberedListItem(
text: Text('This is a bulleted list item with children'),
children: [
Paragraph(texts: [
Text('A'),
Text('B'),
Text('C'),
])
],
),
],
);
// Send the instance to Notion
notion.blocks.append(
to: 'YOUR_BLOCK_ID',
children: children,
);
Result
See more at https://developers.notion.com/reference/patch-block-children
Full example #
Go to see the result https://jonathangomz.notion.site/notion_api-example-81cb020a620b4db19f8cf85e82be3d53
// Initialize the main Notion client
final NotionClient notion = NotionClient(token: 'YOUR_SECRET');
// Create the instance of the page
final Page page = Page(
parent: Parent.database(id: 'YOUR_DATABASE_ID'),
title: Text('notion_api example'),
);
// Send the instance to Notion API
var newPage = await notion.pages.create(page);
// Get the new id generated for the created page
String newPageId = newPage.page!.id;
// Create the instance of the content of the page
Children fullContent = Children(
blocks: [
Heading(text: Text('Examples')),
Paragraph(texts: [
Text(
'Here you can write all the content of the paragraph but if you want to have another style for a single word you will have to do ',
),
Text(
'this. ',
annotations: TextAnnotations(
color: ColorsTypes.Green,
bold: true,
italic: true,
),
),
Text(
'Then you can continue writing all your content. See that if you separate the paragraph to stylized some parts you have to take in count the spaces.',
),
], children: [
Heading.text('Children subtitle', type: 2),
Paragraph(texts: [
Text(
'You can also have children for some blocks like ',
),
...Text.list(texts: [
Text.code('Paragraph'),
Text.code('ToDo'),
Text.code('BulletedListItems'),
Text.code('NumberedListItems'),
], lastSeparator: ' or '),
Text('.'),
]),
Paragraph.text(
'Also, if your paragraph will have the same style you can write all your text directly like this to avoid using a list.',
),
Paragraph(
texts: [
Text('You can use styles for texts like: '),
...Text.list(texts: [
Text.color('green text', color: ColorsTypes.Green),
Text.color('blue text', color: ColorsTypes.Blue),
Text.color('red text', color: ColorsTypes.Red),
Text.color('purple text', color: ColorsTypes.Purple),
Text.underline('underline text'),
Text.code('code format text'),
Text.italic('italic text'),
Text('strikethrough text',
annotations: TextAnnotations(strikethrough: true)),
Text(
'mix styles',
annotations: TextAnnotations(
bold: true,
italic: true,
underline: true,
color: ColorsTypes.Orange,
),
),
], lastSeparator: ' or '),
Text('!')
],
),
]),
Heading.text('Blocks', type: 2),
Heading.text('ToDo', type: 3),
ToDo.text('Daily meeting', checked: true),
ToDo.text('Clean the house'),
ToDo.text('Do the laundry'),
ToDo.text('Call mom', children: [
Paragraph(texts: [
Text.bold('Note: '),
Text('Remember to call her before 20:00'),
]),
]),
Heading.text('Lists', type: 3),
BulletedListItem.text('Milk'),
BulletedListItem.text('Cereal'),
BulletedListItem.text('Eggs'),
BulletedListItem.text('Tortillas of course'),
Paragraph.text('The numbered list are ordered by default by notion.'),
NumberedListItem.text('Notion'),
NumberedListItem.text('Keep by Google'),
NumberedListItem.text('Evernote'),
Heading.text('Toggle', type: 3),
Toggle.text(
'Toogle items',
children: [
Paragraph.text(
'Toogle items are blocks that can show or hide their children, and their children can be any other block.',
),
],
),
],
);
// Append the content to the page
var res = await notion.blocks.append(
to: newPageId,
children: fullContent,
);