Skip to content

Commit

Permalink
doc: add links to API reference
Browse files Browse the repository at this point in the history
  • Loading branch information
mkfsn committed May 16, 2021
1 parent a74890c commit 77eaaa5
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,23 @@ which is written in JavaScript.
go get -u github.com/mkfsn/notion-go
```

## TODOs
## Supported Features

This client supports all endpoints in the [Notion API](https://developers.notion.com/reference/intro).

- [x] Users ✅
* [x] Retrieve ✅
* [x] List ✅
* [x] [Retrieve](https://developers.notion.com/reference/get-user)
* [x] [List](https://developers.notion.com/reference/get-users)
- [x] Databases ✅
* [x] Retrieve ✅
* [x] List ✅
* [x] Query ✅
* [x] [Retrieve](https://developers.notion.com/reference/get-database)
* [x] [List](https://developers.notion.com/reference/get-databases)
* [x] [Query](https://developers.notion.com/reference/post-database-query)
- [x] Pages ✅
* [x] Retrieve ✅
* [x] Create ✅️
* [x] Update ✅️
* [x] [Retrieve](https://developers.notion.com/reference/get-page)
* [x] [Create](https://developers.notion.com/reference/post-page) ✅️
* [x] [Update](https://developers.notion.com/reference/patch-page) ✅️
- [x] Blocks ✅️
* [x] Children ✅
- [x] Retrieve ✅
- [x] Append ✅
- [x] Search ✅
- [x] [Retrieve](https://developers.notion.com/reference/get-block-children)
- [x] [Append](https://developers.notion.com/reference/patch-block-children)
- [x] [Search](https://developers.notion.com/reference/post-search)

0 comments on commit 77eaaa5

Please sign in to comment.