Versioning
Notion-Version
header.curl https://api.notion.com/v1/users/01da9b00-e400-4959-91ce-af55307647e5 \
-H "Authorization: Bearer secret_t1CdN9S8yicG5eWLUOfhcWaOscVnFXns"
-H "Notion-Version: 2022-06-28"
// Prior to version 2021-05-13, the rich text property is called "text"
"properties": {
"Description": {
"type": "text"
"text": [ ... ]
}
}
// In version 2021-05-13, the rich text property is now called "rich_text"
"properties": {
"Description": {
"type": "rich_text"
"rich_text": [ ... ]
}
}
text
when creating or updating a page. Once you upgrade to the new version, you will need to use rich_text
to set that same text property.text
on the old version, while on the new version, the response will say rich_text
.🚧Required Header
We strongly encourage you to include the Notion-Version
header for all requests. This best ensures the Notion API is consistent with what your code expects. We will be requiring that all API calls include theNotion-Version
header starting June 1, 2021.
📘Versioning is only for backwards incompatible changes
For new features and additions to the API, such as adding a new API endpoint, or including a new object in an existing API endpoint's response, there won't be a new version. You'll be able to take advantage of any new functionality on the version of the API you're currently using.
v1
. This is not related to the versioning described above. We don't intend to change these URLs.Modified at 2023-04-28 06:06:26