Package Exports
- notionapi-agent
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (notionapi-agent) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
notionapi-agent
Unofficial Node.js API client for Notion.so.
This is a work-in-progress project. If you need to use Notion's API in production, I recommend waiting for their official release.
Documentation
Announcement
[2019.10.13]
I finished TypeScript definitions for all APIs exposed by this agent. Hope this will make development easier !
[2019.10.08]
When using v0.6.0+, import this library with
const { NotionAgent } = require('notionapi-agent')
Instead of
const NotionAgent = require('notionapi-agent')
Installation
# Install latest release from NPM registry.
npm i notionapi-agent
# Install master branch of git repo from Github.
npm i dragonman225/notionapi-agent
Quickstart
You can also take a look at the test script.
Instance Options
token
- (optional) The Notion API token to access your private pages. If you only need to access public pages, this can be empty. Follow this guide to obtain your token.timezone
- (optional) User's timezone, default:Asia/Taipei
.locale
- (optional) User's locale, default:en
.suppressWarning
- (optional) Whether to hide warnings, default:false
.verbose
- (optional) Whether to show status messages, default:false
.
API Methods
All methods return Promise
that will resolve with the following object :
{
statusCode: Number // HTTP status code
data: APIResponse // When HTTP status code is 200
| ErrorResponse // When HTTP status code is not 200
}
- If raw response from Notion is not JSON, the
data
property will be an empty object.
loadPageChunk(pageID, chunkNo, cursor)
Execute a raw call to /api/v3/loadPageChunk
pageID
- (required, String) A page ID, dashed version.chunkNo
- (optional, Number, default:0
)cursor
- (optional, Object, default:{ "stack": [] }
)
Returns :
{
statusCode: Number // HTTP status code.
data: LoadPageChunkResponse | ErrorResponse
}
getAssetsJson()
Execute a raw call to /api/v3/getAssetsJson
- (no parameter)
Returns :
{
statusCode: Number // HTTP status code.
data: GetAssetsJsonResponse | ErrorResponse
}
getRecordValues(requests)
Execute a raw call to /api/v3/getRecordValues
requests
- (required, Array of RecordRequest) See below example.[ { "table": "block", "id": "cbf2b645-xxxx-xxxx-xxxx-xxxxe8cfed93" } ]
Returns :
{
statusCode: Number // HTTP status code.
data: GetRecordValuesResponse | ErrorResponse
}
loadUserContent()
Execute a raw call to /api/v3/loadUserContent
- (no parameter)
Returns :
{
statusCode: Number // HTTP status code.
data: LoadUserContentResponse | ErrorResponse
}
queryCollection(collectionID, collectionViewID, aggregateQueries)
Execute a raw call to /api/v3/queryCollection
collectionID
- (required, String) A collection ID.collectionViewID
- (required, String) A collectionView ID.aggregateQueries
- (required, Array of AggregateQuery) See below example.[ { "id":"count", "type":"title", "property":"title", "view_type":"table", "aggregation_type":"not_empty" } ]
Returns :
{
statusCode: Number // HTTP status code.
data: QueryCollectionResponse | ErrorResponse
}
submitTransaction(operations)
Execute a raw call to /api/v3/submitTransaction
operations
- (required, Array of DocumentOperation) The operations to submit. See below for example.[ { "id":"cda54abd-xxxx-xxxx-xxxx-xxxx65c4a5e2", "table":"block", "path":["properties","title"], "command":"set", "args":[["test",[["h","yellow_background"]]]] } ]
Returns :
{
statusCode: Number // HTTP status code.
data: SubmitTransactionResponse | ErrorResponse
}