Authorization

This guide describes the authorization flows for internal and public Notion integrations.

What is authorization?

Authorization is the process of granting an integration access to a user’s Notion data. That process varies depending on whether or not the integration is public or internal.

πŸ‘

Link Preview integrations β€” a subcategory of public integrations β€” use two-way OAuth, which differs from the authorization flow described in this guide.

See the Build a Link Preview integration guide to learn more about Link Preview authorization.

What is an internal integration?

An internal integration allows Notion workspace members to interact with the workspace through the Notion REST API. Each internal integration is tied to a single, specific workspace and only members within the workspace can use the integration. After an internal integration is added to a workspace, members must manually give the integration access to the specific pages or databases that they want it to use.

Integrations are internal by default. They can be made public after being created via the integration’s settings page.

What is a public integration?

Public integrations can be used by any Notion user in any workspace. They allow members to interact with their workspace using Notion’s REST API once the integration has been properly authorized.

Public integrations follow the OAuth 2.0 protocol. This allows workspace members to give access to Notion pages directly through the auth flow, without having to open each Notion workspace page directly and manually give permission to the integration. (More on this below.)

Public integrations can technically be used without permitting workspace pages access as long as the auth flow is completed and an access token is created β€” a process which will be described in detail below. For example, if a public integration only needs to interact with the Notion User endpoints, it does not need to be given access to workspace pages.

For more details on the differences between public and internal integrations, refer to the getting started page.

Read on to learn how to set up the auth flows for internal and public integrations.

Internal integration auth flow set-up

To use an internal integration, start by creating your integration in the integration’s settings page. All integrations start as internal by default.

The internal integration will be associated with the workspace of your choice. You are required to be a workspace owner to create an integration.

Click the **New integration** button on the My integrations page to create a new integration.

Click the New integration button on the My integrations page to create a new integration.

Once the integration is created, you can update its settings as needed under the Capabilities tab and retrieve the integration token under Secrets.

The integration token will be used to authenticate REST API requests. The integration sends the same token in every API request.

Find the integration token in the integration's settings.

Find the integration token in the integration's settings.

Integration permissions

Before an integration can interact with your Notion workspace page(s), the page must be manually shared with the integration. To share a page with an integration, visit the page in your Notion workspace, click the β€’β€’β€’ menu at the top right of a page, scroll down to Add connections, and use the search bar to find and select the integration from the dropdown list.

Once the integration is shared, you can start making API requests. If the page is not shared, any API requests made will respond with an error.

🚧

Keep your token secret

Your integration token is a secret. To keep your integration secure, never store the token in your source code or commit it in version control. Instead, read the token from an environment variable. Use a secret manager or deployment system to set the token in the environment.

Making API requests with an internal integration

Any time your integration is interacting with your workspace, you will need to include the integration token in the Authorization header with every API request. However, if you are using Notion’s SDK for JavaScript to interact with the REST API, the token is set once when a client is initialized.

GET /v1/pages/b55c9c91-384d-452b-81db-d1ef79372b75 HTTP/1.1
Authorization: Bearer {INTEGRATION_TOKEN}
const { Client } = require("@notionhq/client")

// Initializing a client
const notion = new Client({
	auth: process.env.NOTION_TOKEN,
})

const getUsers = async () => {
	const listUsersResponse = await notion.users.list({})
}

πŸ“˜

If you are not using the Notion SDK for JavaScript, you will also need to set the Notion-Version and Content-type headers in all of in your requests, like so:

headers: {
  Authorization: `Bearer ${process.env.NOTION_TOKEN}`,
  "Notion-Version": "2022-06-28",
  "Content-Type": "application/json",
},

If you receive an error response from the API, check if the integration has been properly added to the page. If this does not solve the problem, refer to our Status codes page for more information.

Public integration auth flow set-up

When an integration is made public, any Notion user in any workspace can use it.

πŸ“˜

In a Notion for Enterprise workspace, a workspace admin needs to approve a public integration before it can be added to the workspace.

Since a public integration is not tied to a single workspace with a single integration token, public integrations instead follow the OAuth 2.0 protocol to authorize an integration to interact with a workspace.

How to make an integration public

The first step to building a public integration is to convert an internal integration to be public. Navigate to your integration’s settings page, visit the Distribution tab, and toggle the switch to make the integration public.

Public integration **Distribution** page.

Public integration Distribution page.

Once the switch is toggled to the public setting, you will need to fill out the form below with additional information, including your company name, website, and redirect URI(s).

The redirect URI is the URI your users will be redirected to after authorizing the public integration. To learn more, read OAuth’s description of redirect URIs.

Public integration authorization overview

Once your integration has been made public, you can update your integration code to use the public auth flow.

As an overview, the authorization flow includes the following steps. Each step will be described in more detail below.

  1. Navigate the user to the integration’s authorization URL. This URL is provided in the integration’s settings page.
  2. After the user selects which workspace pages to share, Notion redirects the user to the integration’s redirect URI and includes a code query parameter. The redirect URI is the one you specified in your integration’s settings page.
  3. You will make a POST request to create an access token , which will exchange the temporary code for an access token.
  4. The Notion API responds with an access token and some additional information.
  5. You will store the access token for future API requests. View the API reference docs to learn about available endpoints.

Step 1: Navigate the user to the integration’s authorization URL

After your integration has been successfully made public in your integration’s settings page, you will be able to access the integration’s secrets in the Secrets tab. Similarly to the internal integrations, these values should be protected and should never be included in source code or version control.

1004

The Authorization URL field populates after a public integration is submitted

As an example, your .env file using these secrets could look like this:

#.env

OAUTH_CLIENT_ID=<your-client-id>
OAUTH_CLIENT_SECRET=<your-client-secret>
NOTION_AUTH_URL=<your-auth-url>

To start the authorization flow for a public integration, you need to direct the prospective user to the authorization URL. To do this, it is common to include a hyperlink in the integration app that will be interacting with the Notion REST API. For example, if you have an app that will allow users to create new Notion pages for their workspace(s), you will first need them to first visit the authorization URL by clicking on the link.

The following example shows an authorization URL made available through a hyperlink:

<a href="https://api.notion.com/v1/oauth/authorize?owner=user&client_id=463558a3-725e-4f37-b6d3-0889894f68de&redirect_uri=https%3A%2F%2Fexample.com%2Fauth%2Fnotion%2Fcallback&response_type=code">Add to Notion</a>

The URL begins with https://api.notion.com/v1/oauth/authorize and has the following parameters:

ParameterDescriptionRequired
client_idAn identifier for your integration, found in the integration settings.βœ…
redirect_uriThe URL where the user should return after granting access.βœ…
response_typeAlways use code.βœ…
ownerAlways use user.βœ…
stateIf the user was in the middle of an interaction or operation, then this parameter can be used to restore state after the user returns. It can also be used to prevent CSRF attacks.

Once the authorization URL is visited, the user will be shown a prompt that varies depending on whether or not the integration comes with a Notion template option.

Prompt for a standard integration with no template option (Default)

In the standard integration permissions flow, a prompt describes the integration capabilities, presented to the user as what the integration would like to be able to do in the workspace. A user can either select pages to grant the integration access to, or cancel the request.

1150

Prompt for authorizing a standard integration (no template option)

If the user presses Cancel, they will be redirected to the redirect URI with and error query param added.

www.example.com/my-redirect-uri?error=access_denied&state=

You can use this errorquery parameter to conditionally update your app’s state as needed.

If the user opts to Select pages, then a page picker interface opens. A user can search for and select pages and databases to share with the integration from the page picker.

πŸ“˜

The page picker only displays pages or databases to which a user has full access, because a user needs full access to a resource in order to be able to share it with an integration.

1142

Page picker interface

Users can select which pages to give the integration access to, including both private and public pages available to them. Parent pages can be selected to quickly provide access to child pages, as giving access to a parent page will provide access to all available child pages. Users can return to this view at a later time to update access settings if circumstances change.

If the user clicks Allow access, they are then redirected to the redirect_uri with a temporary authorization code. If the user denies access, they are redirected to the redirect_uri with an error query parameter.

If the user clicks Allow access and the rest of the auth flow is not completed, the integration will not have access to the pages that were selected.

Prompt for an integration with a Notion template option

Public integrations offer the option of providing a public Notion page to use as a template during the auth flow.

To add a template to your workspace, complete the following steps:

  • Choose a public page in your workspace that you want users to be able to duplicate.
  • Navigate to your integration’s settings and go to the Distribution tab.
  • Scroll to the bottom of your distribution settings and add the URL of the Notion page you selected to the Notion URL for optional template input.
Notion URL for optional template input in integration settings.

Notion URL for optional template input in integration settings.

Once this URL is added, your auth flow prompt appearance will be updated.

Going back to your prompt view, if the integration offers a Notion template option, the first step in the permissions flow will describe the integration capabilities. This is presented to the user as what the integration would be able to do in the workspace, and it prompts the user to click Next.

1102

Prompt for an integration with a Notion template option

In the next step, a user can either choose to duplicate the template that you provided or to select existing pages to share with the integration.

1052

A user can select to duplicate a template or to share existing pages with the integration

If the user chooses to duplicate the template, then the following happens automatically:

  • The integration is added to the user’s workspace.
  • The template is duplicated as a new page in the workspace.
  • The new page is shared with the integration.

If the user chooses to select pages to share with the integration, then they continue to the page picker interface that’s part of theΒ prompt for a standard integration.

πŸ“˜

After a user installs a public integration, only that user is able to interact or share pages and databases with the integration. Unlike internal integrations, if multiple members in a workspace want to use a public integration, each prospective user needs to individually follow the auth flow for the integration.

User authorization failures

User authorization failures can happen. If a user chooses to Cancel the request, then a failure is triggered. Build your integration to handle these cases gracefully, as needed.

In some cases, Notion redirects the user to the redirect_uri that you set up when you created the public integration, along with anΒ errorΒ query parameter. Notion uses the commonΒ error codes in the OAuth specification. Use the error code to create a helpful prompt for the user when they’re redirected here.

Step 2: Notion redirects the user to the integration’s redirect URI and includes a code parameter

When you first created the public integration, you specified a redirect URI. If the user follows the prompt to Allow access for the integration, then Notion generates a temporary code and sends a request to the redirect URI with the following information in the query string:

ParameterDescriptionRequired
codeA temporary authorization code.βœ…
stateThe value provided by the integration when the user wasΒ prompted for access.

To complete the next set, you will need to retrieve the code query parameter provided in the redirect. How you retrieve this value will vary depending on your app’s tech stack.

In a React component, for example, the query parameters are made available through the useRouter() hook:

export default function AuthRedirectPage() {
  const router = useRouter();
  const { code } = router.query;
  ...
}

Step 3: Send the code in a POST request to the Notion API

The integration needs to exchange the temporary code for an access_token.

To set up this step, retrieve the code from the redirect URI.

Next, you will need to send the code as part of a POST request to Notion’s token endpoint: https://api.notion.com/v1/oauth/token.

This endpoint is described in more detail in the API reference docs for creating a token.

The request is authorized using HTTP Basic Authentication. The credential is a colon-delimited combination of the integration’s CLIENT_ID and CLIENT_SECRET, like so:

CLIENT_ID:CLIENT_SECRET

You can find both of these values in the integration’s settings.

Note that in HTTP Basic Authentication, credentials are base64 encoded before being added to the Authorization header.

The body of the request contains the following JSON-encoded fields:

FieldTypeDescriptionRequired
"grant_type"stringAlways useΒ "authorization_code".βœ…
"code"stringThe temporary authorization code received in the incoming request to the "redirect_uri".βœ…
"redirect_uri"stringTheΒ "redirect_uri"Β that was provided in the Authorization step.βœ…/❌*

* If the redirect URI was supplied as a query param in the Authorization URL, this field is required. If there are more than one redirect URIs included in your integration settings, this field is required. Otherwise, it is not allowed. Learn more in the Create a token page.

The following is an example request to exchange the authorization code for an access token:

POST /v1/oauth/token HTTP/1.1
Authorization: Basic "$CLIENT_ID:$CLIENT_SECRET" 
Content-Type: application/json

{"grant_type":"authorization_code","code":"e202e8c9-0990-40af-855f-ff8f872b1ec6", "redirect_uri":"https://example.com/auth/notion/callback"}

The Node-equivalent of this example would look something like this:

...
const clientId = process.env.OAUTH_CLIENT_ID;
const clientSecret = process.env.OAUTH_CLIENT_SECRET;
const redirectUri = process.env.OAUTH_REDIRECT_URI;

// encode in base 64
const encoded = Buffer.from(`${clientId}:${clientSecret}`).toString("base64");

const response = await fetch("https://api.notion.com/v1/oauth/token", {
	method: "POST",
	headers: {
	Accept: "application/json",
	"Content-Type": "application/json",
	Authorization: `Basic ${encoded}`,
},
	body: JSON.stringify({
		grant_type: "authorization_code",
		code: "your-temporary-code",
		redirect_uri: redirectUri,
	}),
});
...

Step 4: Notion responds with an access_token and additional information

Notion responds to the request with an access_token and additional information. The access_token will be used to authenticate subsequent Notion REST API requests.

The response contains the following JSON-encoded fields:

FieldTypeDescriptionNot null
"access_token"stringAn access token used to authorize requests to the Notion API.βœ…
"bot_id"stringAn identifier for this authorization.βœ…
"duplicated_template_id"stringThe ID of the new page created in the user’s workspace. The new page is a duplicate of the template that the developer provided with the integration. If the developer didn’t provide a template for the integration, then the value is null.
"owner"objectAn object containing information about who can view and share this integration.Β { "workspace": true }Β is returned for installations of workspace-level tokens. For user level tokens, aΒ user objectΒ is returned.βœ…
"workspace_icon"stringA URL to an image that can be used to display this authorization in the UI.
"workspace_id"stringThe ID of the workspace where this authorization took place.βœ…
"workspace_name"stringA human-readable name that can be used to display this authorization in the UI.

Token request failures

If something goes wrong when the integration attempts to exchange the code for an access_token, then the response contains a JSON-encoded body with an "error" field. Notion uses the common error codes from the OAuth specification.

Step 5: The integration stores the access_token for future requests

You need to set up a way for your integration to store all of the access_token's that it receives, so that the integration can then choose a bearer token from storage based on the user it’s acting on behalf of for each request to the Notion API.

Tips for storing and using token access

  • Setting up a database is a typical solution for storing access_token's. If you’re using a database, then build relations between an access_token and the corresponding Notion resources that your integration accesses with that token. For example, if you store a Notion database or page ID, relate those records with the correct access_token that you use to authorize requests to read or write to that database or page.
  • Store all of the information that your integration receives with the access_token. You never know when your UI or product requirements might change and you’ll need this data. It's really hard (or impossible) to send users to repeat the authorization flow to generate the information again.
  • TheΒ bot_idΒ returned along with your token should act as your primary key when storing information.