From 77eaaa5c8df39c6f57c8df03f032c336c1d7340b Mon Sep 17 00:00:00 2001 From: Pei-Ming Wu Date: Sun, 16 May 2021 11:04:05 +0800 Subject: [PATCH] doc: add links to API reference --- README.md | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 081fa5d..374e260 100644 --- a/README.md +++ b/README.md @@ -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) ✅