(更新: 2023/11/18)
NotionのOASファイルを作成してみた
#Blog
#OpenAPI
#Programming
💡この記事でわかること・解決すること
Notionが作成したPostman CollectionからOASをexportして、いろいろしてとりあえず見れるようにしました。
✌️やったこと
こちらの記事の postman-to-openapi で変換しました。postman自体が作成しているみたいで大変ありがたい🙏
PostmanのCollectionsで管理されていたドラフトのAPI仕様をOAS形式に変換してみた | DevelopersIO
Swaggerのeditorに入れてもちゃんと表示されているので問題はなさそう
実際のOASファイル(めちゃくちゃでかいです)
openapi: 3.0.0
info:
title: Notion API
description: "Hello and welcome!\n\nTo make use of this API collection collection as it's written, please duplicate [this database template](https://www.notion.so/8e2c2b769e1d47d287b9ed3035d607ae?v=dc1b92875fb94f10834ba8d36549bd2a).\n\n\uFEFFUnder the `Variables` tab, add your environment variables to start making requests. You will need to [create an integration](https://www.notion.so/my-integrations) to retrieve an API token. You will also need additional values, such as a database ID and page ID, which can be found in your Notion workspace or from the database template mentioned above.\n\nFor our full documentation, including sample integrations and guides, visit [developers.notion.com](https://developers.notion.com/)\uFEFF.\n\nPlease note: Pages that are parented by a database _must_ have the same properties as the parent database. If you are not using the database template provided, the request `body` for the page endpoints included in this collection should be updated to match the properties in the parent database being used. See documentation for [Creating a page](https://developers.notion.com/reference/post-page) for more information.\n\nTo learn more about creating an access token, see our [official documentation](https://developers.notion.com/reference/create-a-token) and read our [Authorization](https://developers.notion.com/docs/authorization#step-3-send-the-code-in-a-post-request-to-the-notion-api) guide.\n\nNeed more help? Join our [developer community on Slack](https://join.slack.com/t/notiondevs/shared_invite/zt-20b5996xv-DzJdLiympy6jP0GGzu3AMg)\uFEFF."
version: 1.0.0
servers:
- url: https://api.notion.com
components:
securitySchemes:
bearerAuth:
type: http
scheme: bearer
security:
- bearerAuth: []
tags:
- name: Users
description: >-
All actions in a Notion workspace are associated to a
[user](https://developers.notion.com/reference/user), whether it be a bot
via a [Notion
integration](https://developers.notion.com/docs/getting-started) or a
person interacting with Notion’s UI.
These endpoints allow developers to interact with users programmatically
by [listing all users](https://developers.notion.com/reference/get-user),
[retrieving information about your integration’s
bot](https://developers.notion.com/reference/get-self), or [retrieving a
specific user](https://developers.notion.com/reference/get-user) in your
Notion workspace.
To learn more, read [Notion’s official
documentation](https://developers.notion.com/reference/user) for endpoints
related to users.
- name: Databases
description: >-
Databases represent collections of Notion pages that can be
[sorted](https://developers.notion.com/reference/post-database-query-sort)
and
[queried](https://developers.notion.com/reference/post-database-query).
Each database will have a schema (or properties) that represent the
columns in the database table. Notion offers several types of properties,
as described in the [official
documentation](https://developers.notion.com/reference/property-object).
These database-related endpoints allow developers to work with databases
programmatically by
[creating](https://developers.notion.com/reference/create-a-database),
[retrieving](https://developers.notion.com/reference/retrieve-a-database),
and [updating](https://developers.notion.com/reference/update-a-database)
them.
To learn more, read [Notion’s official
documentation](https://developers.notion.com/reference/database) for
endpoints related to databases. We also recommend reading the official
Notion guide for [working with
databases](https://developers.notion.com/docs/working-with-page-content).
- name: Pages
description: >-
Pages represent documents in Notion workspaces that can be created in a
workspace directly or organized within in a Notion database.
These page-related endpoints allow developers to work with pages
programmatically by
[creating](https://developers.notion.com/reference/post-page),
[retrieving](https://developers.notion.com/reference/retrieve-a-page),
[updating](https://developers.notion.com/reference/patch-page), and
[archiving](https://developers.notion.com/reference/archive-a-page) them.
To learn more, read [Notion’s official
documentation](https://developers.notion.com/reference/page) for endpoints
related to pages. We also recommend reading the official Notion guide for
[working with page
content](https://developers.notion.com/docs/working-with-page-content).
- name: Blocks
description: >-
A block represents a piece of content in a Notion workspace. All Notion
pages are composed of a series of blocks. Blocks can vary in type,
including (but not limited to) headers, styled text, images, tables, and
more. To see a complete list of block types, refer to Notion’s [official
documentation](https://developers.notion.com/reference/page-property-values#type-objects).
These block-related endpoints allow developers to work with blocks
programmatically by
[creating](https://developers.notion.com/reference/patch-block-children),
[retrieving](https://developers.notion.com/reference/retrieve-a-block),
[updating](https://developers.notion.com/reference/update-a-block), and
[deleting](https://developers.notion.com/reference/delete-a-block) them
from Notion pages.
To learn more, read [Notion’s official
documentation](https://developers.notion.com/reference/block) for
endpoints related to blocks. We also recommend reading the official Notion
guides for [working with page
content](https://developers.notion.com/docs/working-with-page-content)
(a.k.a. blocks) and [working with files and
media](https://developers.notion.com/docs/working-with-files-and-media).
- name: Search
description: >-
Search all pages and databases shared with your Notion integration. To
learn more, read Notion’s [official
documentation](https://developers.notion.com/reference/post-search) for
the Public API endpoints.
- name: Comments
description: >-
[Comments](https://developers.notion.com/reference/comment-object) can be
added to a page or inline (i.e., to blocks).
These comment-related endpoints allow developers to work with comments
programmatically by
[creating](https://developers.notion.com/reference/create-a-comment) and
[retrieving](https://developers.notion.com/reference/retrieve-a-block)
them.
To learn more, read [Notion’s official
documentation](https://developers.notion.com/reference/comment-object) for
endpoints related to comments. We also recommend reading the official
Notion guide for [working with
comments](https://developers.notion.com/docs/working-with-comments).
paths:
/v1/users/{id}:
get:
tags:
- Users
summary: Retrieve a user
description: Retrieve a user object using the ID specified in the request path.
parameters:
- name: Notion-Version
in: header
schema:
type: string
example: '{{NOTION_VERSION}}'
- name: id
in: path
schema:
type: string
required: true
example: '{{USER_ID}}'
responses:
'200':
description: OK
headers:
Date:
schema:
type: string
example: Thu, 24 Feb 2022 21:47:15 GMT
Content-Type:
schema:
type: string
example: application/json; charset=utf-8
Transfer-Encoding:
schema:
type: string
example: chunked
Connection:
schema:
type: string
example: keep-alive
Set-Cookie:
schema:
type: string
example: >-
notion_check_cookie_consent=false; Domain=www.notion.so;
Path=/; Expires=Fri, 25 Feb 2022 21:47:15 GMT; Secure
X-DNS-Prefetch-Control:
schema:
type: string
example: 'off'
X-Frame-Options:
schema:
type: string
example: SAMEORIGIN
Strict-Transport-Security:
schema:
type: string
example: max-age=5184000; includeSubDomains
X-Download-Options:
schema:
type: string
example: noopen
X-Content-Type-Options:
schema:
type: string
example: nosniff
X-XSS-Protection:
schema:
type: string
example: 1; mode=block
Referrer-Policy:
schema:
type: string
example: same-origin
Content-Security-Policy:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://cdn.amplitude.com https://api.amplitude.com
https://hkfxbbdzib.notion.so https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://js.chilipiper.com
https://platform.twitter.com
https://cdn.syndication.twimg.com; connect-src 'self'
https://msgstore.www.notion.so wss://msgstore.www.notion.so
ws://localhost:* ws://127.0.0.1:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://cdn.amplitude.com
https://api.amplitude.com https://hkfxbbdzib.notion.so
https://api.embed.ly https://js.intercomcdn.com
https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://analytics.pgncs.notion.so https://api.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://cdn.contentful.com
https://preview.contentful.com https://images.ctfassets.net
https://www2.profitwell.com https://tracking.chilipiper.com
https://api.chilipiper.com https://api.unsplash.com
https://boards-api.greenhouse.io https://api.statuspage.io
https://pgncd.notion.so https://api.statsig.com; font-src
'self' data: https://cdnjs.cloudflare.com
https://js.intercomcdn.com; img-src 'self' data: blob: https:
https://platform.twitter.com https://syndication.twitter.com
https://pbs.twimg.com https://ton.twimg.com; style-src 'self'
'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://js.chilipiper.com
https://platform.twitter.com https://ton.twimg.com; frame-src
https: http:; media-src https: http:
X-Content-Security-Policy:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://cdn.amplitude.com https://api.amplitude.com
https://hkfxbbdzib.notion.so https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://js.chilipiper.com
https://platform.twitter.com
https://cdn.syndication.twimg.com; connect-src 'self'
https://msgstore.www.notion.so wss://msgstore.www.notion.so
ws://localhost:* ws://127.0.0.1:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://cdn.amplitude.com
https://api.amplitude.com https://hkfxbbdzib.notion.so
https://api.embed.ly https://js.intercomcdn.com
https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://analytics.pgncs.notion.so https://api.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://cdn.contentful.com
https://preview.contentful.com https://images.ctfassets.net
https://www2.profitwell.com https://tracking.chilipiper.com
https://api.chilipiper.com https://api.unsplash.com
https://boards-api.greenhouse.io https://api.statuspage.io
https://pgncd.notion.so https://api.statsig.com; font-src
'self' data: https://cdnjs.cloudflare.com
https://js.intercomcdn.com; img-src 'self' data: blob: https:
https://platform.twitter.com https://syndication.twitter.com
https://pbs.twimg.com https://ton.twimg.com; style-src 'self'
'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://js.chilipiper.com
https://platform.twitter.com https://ton.twimg.com; frame-src
https: http:; media-src https: http:
X-WebKit-CSP:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://cdn.amplitude.com https://api.amplitude.com
https://hkfxbbdzib.notion.so https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://js.chilipiper.com
https://platform.twitter.com
https://cdn.syndication.twimg.com; connect-src 'self'
https://msgstore.www.notion.so wss://msgstore.www.notion.so
ws://localhost:* ws://127.0.0.1:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://cdn.amplitude.com
https://api.amplitude.com https://hkfxbbdzib.notion.so
https://api.embed.ly https://js.intercomcdn.com
https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://analytics.pgncs.notion.so https://api.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://cdn.contentful.com
https://preview.contentful.com https://images.ctfassets.net
https://www2.profitwell.com https://tracking.chilipiper.com
https://api.chilipiper.com https://api.unsplash.com
https://boards-api.greenhouse.io https://api.statuspage.io
https://pgncd.notion.so https://api.statsig.com; font-src
'self' data: https://cdnjs.cloudflare.com
https://js.intercomcdn.com; img-src 'self' data: blob: https:
https://platform.twitter.com https://syndication.twitter.com
https://pbs.twimg.com https://ton.twimg.com; style-src 'self'
'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://js.chilipiper.com
https://platform.twitter.com https://ton.twimg.com; frame-src
https: http:; media-src https: http:
ETag:
schema:
type: string
example: W/"9b-qoibMBKquYk09T0oogqvLGu9qu4"
Vary:
schema:
type: string
example: Accept-Encoding
CF-Cache-Status:
schema:
type: string
example: DYNAMIC
Expect-CT:
schema:
type: string
example: >-
max-age=604800,
report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
Server:
schema:
type: string
example: cloudflare
CF-RAY:
schema:
type: string
example: 6e2be42d784c97c3-SJC
Content-Encoding:
schema:
type: string
example: gzip
content:
application/json:
schema:
type: object
example:
object: user
id: 6794760a-1f15-45cd-9c65-0dfe42f5135a
name: Aman Gupta
avatar_url: null
type: person
person:
email: XXXXXXXXXXX
/v1/users:
get:
tags:
- Users
summary: List all users
description: Returns a paginated list of user objects for a workspace
parameters:
- name: Notion-Version
in: header
schema:
type: string
example: '{{NOTION_VERSION}}'
responses:
'200':
description: OK
headers:
Date:
schema:
type: string
example: Thu, 24 Feb 2022 21:48:25 GMT
Content-Type:
schema:
type: string
example: application/json; charset=utf-8
Transfer-Encoding:
schema:
type: string
example: chunked
Connection:
schema:
type: string
example: keep-alive
Set-Cookie:
schema:
type: string
example: >-
notion_check_cookie_consent=false; Domain=www.notion.so;
Path=/; Expires=Fri, 25 Feb 2022 21:48:25 GMT; Secure
X-DNS-Prefetch-Control:
schema:
type: string
example: 'off'
X-Frame-Options:
schema:
type: string
example: SAMEORIGIN
Strict-Transport-Security:
schema:
type: string
example: max-age=5184000; includeSubDomains
X-Download-Options:
schema:
type: string
example: noopen
X-Content-Type-Options:
schema:
type: string
example: nosniff
X-XSS-Protection:
schema:
type: string
example: 1; mode=block
Referrer-Policy:
schema:
type: string
example: same-origin
Content-Security-Policy:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://cdn.amplitude.com https://api.amplitude.com
https://hkfxbbdzib.notion.so https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://js.chilipiper.com
https://platform.twitter.com
https://cdn.syndication.twimg.com; connect-src 'self'
https://msgstore.www.notion.so wss://msgstore.www.notion.so
ws://localhost:* ws://127.0.0.1:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://cdn.amplitude.com
https://api.amplitude.com https://hkfxbbdzib.notion.so
https://api.embed.ly https://js.intercomcdn.com
https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://analytics.pgncs.notion.so https://api.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://cdn.contentful.com
https://preview.contentful.com https://images.ctfassets.net
https://www2.profitwell.com https://tracking.chilipiper.com
https://api.chilipiper.com https://api.unsplash.com
https://boards-api.greenhouse.io https://api.statuspage.io
https://pgncd.notion.so https://api.statsig.com; font-src
'self' data: https://cdnjs.cloudflare.com
https://js.intercomcdn.com; img-src 'self' data: blob: https:
https://platform.twitter.com https://syndication.twitter.com
https://pbs.twimg.com https://ton.twimg.com; style-src 'self'
'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://js.chilipiper.com
https://platform.twitter.com https://ton.twimg.com; frame-src
https: http:; media-src https: http:
X-Content-Security-Policy:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://cdn.amplitude.com https://api.amplitude.com
https://hkfxbbdzib.notion.so https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://js.chilipiper.com
https://platform.twitter.com
https://cdn.syndication.twimg.com; connect-src 'self'
https://msgstore.www.notion.so wss://msgstore.www.notion.so
ws://localhost:* ws://127.0.0.1:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://cdn.amplitude.com
https://api.amplitude.com https://hkfxbbdzib.notion.so
https://api.embed.ly https://js.intercomcdn.com
https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://analytics.pgncs.notion.so https://api.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://cdn.contentful.com
https://preview.contentful.com https://images.ctfassets.net
https://www2.profitwell.com https://tracking.chilipiper.com
https://api.chilipiper.com https://api.unsplash.com
https://boards-api.greenhouse.io https://api.statuspage.io
https://pgncd.notion.so https://api.statsig.com; font-src
'self' data: https://cdnjs.cloudflare.com
https://js.intercomcdn.com; img-src 'self' data: blob: https:
https://platform.twitter.com https://syndication.twitter.com
https://pbs.twimg.com https://ton.twimg.com; style-src 'self'
'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://js.chilipiper.com
https://platform.twitter.com https://ton.twimg.com; frame-src
https: http:; media-src https: http:
X-WebKit-CSP:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://cdn.amplitude.com https://api.amplitude.com
https://hkfxbbdzib.notion.so https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://js.chilipiper.com
https://platform.twitter.com
https://cdn.syndication.twimg.com; connect-src 'self'
https://msgstore.www.notion.so wss://msgstore.www.notion.so
ws://localhost:* ws://127.0.0.1:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://cdn.amplitude.com
https://api.amplitude.com https://hkfxbbdzib.notion.so
https://api.embed.ly https://js.intercomcdn.com
https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://analytics.pgncs.notion.so https://api.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://cdn.contentful.com
https://preview.contentful.com https://images.ctfassets.net
https://www2.profitwell.com https://tracking.chilipiper.com
https://api.chilipiper.com https://api.unsplash.com
https://boards-api.greenhouse.io https://api.statuspage.io
https://pgncd.notion.so https://api.statsig.com; font-src
'self' data: https://cdnjs.cloudflare.com
https://js.intercomcdn.com; img-src 'self' data: blob: https:
https://platform.twitter.com https://syndication.twitter.com
https://pbs.twimg.com https://ton.twimg.com; style-src 'self'
'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://js.chilipiper.com
https://platform.twitter.com https://ton.twimg.com; frame-src
https: http:; media-src https: http:
ETag:
schema:
type: string
example: W/"6e4-sni6uhyjO+1Rwt4GEaScNm+SLr4"
Vary:
schema:
type: string
example: Accept-Encoding
Content-Encoding:
schema:
type: string
example: gzip
CF-Cache-Status:
schema:
type: string
example: DYNAMIC
Expect-CT:
schema:
type: string
example: >-
max-age=604800,
report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
Server:
schema:
type: string
example: cloudflare
CF-RAY:
schema:
type: string
example: 6e2be5e27e9797c3-SJC
content:
application/json:
schema:
type: object
example:
object: list
results:
- object: user
id: 6794760a-1f15-45cd-9c65-0dfe42f5135a
name: Aman Gupta
avatar_url: null
type: person
person:
email: XXXXXXXXXX
- object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
name: Leotastic
avatar_url: null
type: bot
bot:
owner:
type: workspace
workspace: true
next_cursor: null
has_more: false
/v1/users/me:
get:
tags:
- Users
summary: Retrieve your token’s bot user
parameters:
- name: Notion-Version
in: header
schema:
type: string
example: '{{NOTION_VERSION}}'
responses:
'200':
description: OK
headers:
Date:
schema:
type: string
example: Thu, 24 Feb 2022 22:56:24 GMT
Content-Type:
schema:
type: string
example: application/json; charset=utf-8
Transfer-Encoding:
schema:
type: string
example: chunked
Connection:
schema:
type: string
example: keep-alive
Set-Cookie:
schema:
type: string
example: >-
notion_check_cookie_consent=false; Domain=www.notion.so;
Path=/; Expires=Fri, 25 Feb 2022 22:56:24 GMT; Secure
X-DNS-Prefetch-Control:
schema:
type: string
example: 'off'
X-Frame-Options:
schema:
type: string
example: SAMEORIGIN
Strict-Transport-Security:
schema:
type: string
example: max-age=5184000; includeSubDomains
X-Download-Options:
schema:
type: string
example: noopen
X-Content-Type-Options:
schema:
type: string
example: nosniff
X-XSS-Protection:
schema:
type: string
example: 1; mode=block
Referrer-Policy:
schema:
type: string
example: same-origin
Content-Security-Policy:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://cdn.amplitude.com https://api.amplitude.com
https://hkfxbbdzib.notion.so https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://js.chilipiper.com
https://platform.twitter.com
https://cdn.syndication.twimg.com; connect-src 'self'
https://msgstore.www.notion.so wss://msgstore.www.notion.so
ws://localhost:* ws://127.0.0.1:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://cdn.amplitude.com
https://api.amplitude.com https://hkfxbbdzib.notion.so
https://api.embed.ly https://js.intercomcdn.com
https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://analytics.pgncs.notion.so https://api.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://cdn.contentful.com
https://preview.contentful.com https://images.ctfassets.net
https://www2.profitwell.com https://tracking.chilipiper.com
https://api.chilipiper.com https://api.unsplash.com
https://boards-api.greenhouse.io https://api.statuspage.io
https://pgncd.notion.so https://api.statsig.com; font-src
'self' data: https://cdnjs.cloudflare.com
https://js.intercomcdn.com; img-src 'self' data: blob: https:
https://platform.twitter.com https://syndication.twitter.com
https://pbs.twimg.com https://ton.twimg.com; style-src 'self'
'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://js.chilipiper.com
https://platform.twitter.com https://ton.twimg.com; frame-src
https: http:; media-src https: http:
X-Content-Security-Policy:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://cdn.amplitude.com https://api.amplitude.com
https://hkfxbbdzib.notion.so https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://js.chilipiper.com
https://platform.twitter.com
https://cdn.syndication.twimg.com; connect-src 'self'
https://msgstore.www.notion.so wss://msgstore.www.notion.so
ws://localhost:* ws://127.0.0.1:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://cdn.amplitude.com
https://api.amplitude.com https://hkfxbbdzib.notion.so
https://api.embed.ly https://js.intercomcdn.com
https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://analytics.pgncs.notion.so https://api.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://cdn.contentful.com
https://preview.contentful.com https://images.ctfassets.net
https://www2.profitwell.com https://tracking.chilipiper.com
https://api.chilipiper.com https://api.unsplash.com
https://boards-api.greenhouse.io https://api.statuspage.io
https://pgncd.notion.so https://api.statsig.com; font-src
'self' data: https://cdnjs.cloudflare.com
https://js.intercomcdn.com; img-src 'self' data: blob: https:
https://platform.twitter.com https://syndication.twitter.com
https://pbs.twimg.com https://ton.twimg.com; style-src 'self'
'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://js.chilipiper.com
https://platform.twitter.com https://ton.twimg.com; frame-src
https: http:; media-src https: http:
X-WebKit-CSP:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://cdn.amplitude.com https://api.amplitude.com
https://hkfxbbdzib.notion.so https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://js.chilipiper.com
https://platform.twitter.com
https://cdn.syndication.twimg.com; connect-src 'self'
https://msgstore.www.notion.so wss://msgstore.www.notion.so
ws://localhost:* ws://127.0.0.1:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://cdn.amplitude.com
https://api.amplitude.com https://hkfxbbdzib.notion.so
https://api.embed.ly https://js.intercomcdn.com
https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://analytics.pgncs.notion.so https://api.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://cdn.contentful.com
https://preview.contentful.com https://images.ctfassets.net
https://www2.profitwell.com https://tracking.chilipiper.com
https://api.chilipiper.com https://api.unsplash.com
https://boards-api.greenhouse.io https://api.statuspage.io
https://pgncd.notion.so https://api.statsig.com; font-src
'self' data: https://cdnjs.cloudflare.com
https://js.intercomcdn.com; img-src 'self' data: blob: https:
https://platform.twitter.com https://syndication.twitter.com
https://pbs.twimg.com https://ton.twimg.com; style-src 'self'
'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://js.chilipiper.com
https://platform.twitter.com https://ton.twimg.com; frame-src
https: http:; media-src https: http:
ETag:
schema:
type: string
example: W/"a5-8nKyiCE+m0Dwog4u0m9EY+DyENY"
Vary:
schema:
type: string
example: Accept-Encoding
CF-Cache-Status:
schema:
type: string
example: DYNAMIC
Expect-CT:
schema:
type: string
example: >-
max-age=604800,
report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
Server:
schema:
type: string
example: cloudflare
CF-RAY:
schema:
type: string
example: 6e2c497a6f659452-SJC
Content-Encoding:
schema:
type: string
example: gzip
content:
application/json:
schema:
type: object
example:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
name: Leotastic
avatar_url: null
type: bot
bot:
owner:
type: workspace
workspace: true
/v1/databases/{id}:
get:
tags:
- Databases
summary: Retrieve a database
description: 'Retrieves a database object using the ID specified in the request path. '
parameters:
- name: Notion-Version
in: header
schema:
type: string
example: '{{NOTION_VERSION}}'
- name: id
in: path
schema:
type: string
required: true
example: '{{DATABASE_ID}}'
responses:
'200':
description: OK
headers:
Date:
schema:
type: string
example: Wed, 02 Mar 2022 05:19:28 GMT
Content-Type:
schema:
type: string
example: application/json; charset=utf-8
Transfer-Encoding:
schema:
type: string
example: chunked
Connection:
schema:
type: string
example: keep-alive
Set-Cookie:
schema:
type: string
example: >-
notion_check_cookie_consent=false; Domain=www.notion.so;
Path=/; Expires=Thu, 03 Mar 2022 05:19:28 GMT; Secure
X-DNS-Prefetch-Control:
schema:
type: string
example: 'off'
X-Frame-Options:
schema:
type: string
example: SAMEORIGIN
Strict-Transport-Security:
schema:
type: string
example: max-age=5184000; includeSubDomains
X-Download-Options:
schema:
type: string
example: noopen
X-Content-Type-Options:
schema:
type: string
example: nosniff
X-XSS-Protection:
schema:
type: string
example: 1; mode=block
Referrer-Policy:
schema:
type: string
example: same-origin
Content-Security-Policy:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://cdn.amplitude.com https://api.amplitude.com
https://hkfxbbdzib.notion.so https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://js.chilipiper.com
https://platform.twitter.com
https://cdn.syndication.twimg.com; connect-src 'self'
https://msgstore.www.notion.so wss://msgstore.www.notion.so
ws://localhost:* ws://127.0.0.1:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://cdn.amplitude.com
https://api.amplitude.com https://hkfxbbdzib.notion.so
https://api.embed.ly https://js.intercomcdn.com
https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://analytics.pgncs.notion.so https://api.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://cdn.contentful.com
https://preview.contentful.com https://images.ctfassets.net
https://www2.profitwell.com https://tracking.chilipiper.com
https://api.chilipiper.com https://api.unsplash.com
https://boards-api.greenhouse.io https://api.statuspage.io
https://pgncd.notion.so https://api.statsig.com; font-src
'self' data: https://cdnjs.cloudflare.com
https://js.intercomcdn.com; img-src 'self' data: blob: https:
https://platform.twitter.com https://syndication.twitter.com
https://pbs.twimg.com https://ton.twimg.com; style-src 'self'
'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://js.chilipiper.com
https://platform.twitter.com https://ton.twimg.com; frame-src
https: http:; media-src https: http:
X-Content-Security-Policy:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://cdn.amplitude.com https://api.amplitude.com
https://hkfxbbdzib.notion.so https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://js.chilipiper.com
https://platform.twitter.com
https://cdn.syndication.twimg.com; connect-src 'self'
https://msgstore.www.notion.so wss://msgstore.www.notion.so
ws://localhost:* ws://127.0.0.1:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://cdn.amplitude.com
https://api.amplitude.com https://hkfxbbdzib.notion.so
https://api.embed.ly https://js.intercomcdn.com
https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://analytics.pgncs.notion.so https://api.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://cdn.contentful.com
https://preview.contentful.com https://images.ctfassets.net
https://www2.profitwell.com https://tracking.chilipiper.com
https://api.chilipiper.com https://api.unsplash.com
https://boards-api.greenhouse.io https://api.statuspage.io
https://pgncd.notion.so https://api.statsig.com; font-src
'self' data: https://cdnjs.cloudflare.com
https://js.intercomcdn.com; img-src 'self' data: blob: https:
https://platform.twitter.com https://syndication.twitter.com
https://pbs.twimg.com https://ton.twimg.com; style-src 'self'
'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://js.chilipiper.com
https://platform.twitter.com https://ton.twimg.com; frame-src
https: http:; media-src https: http:
X-WebKit-CSP:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://cdn.amplitude.com https://api.amplitude.com
https://hkfxbbdzib.notion.so https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://js.chilipiper.com
https://platform.twitter.com
https://cdn.syndication.twimg.com; connect-src 'self'
https://msgstore.www.notion.so wss://msgstore.www.notion.so
ws://localhost:* ws://127.0.0.1:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://cdn.amplitude.com
https://api.amplitude.com https://hkfxbbdzib.notion.so
https://api.embed.ly https://js.intercomcdn.com
https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://analytics.pgncs.notion.so https://api.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://cdn.contentful.com
https://preview.contentful.com https://images.ctfassets.net
https://www2.profitwell.com https://tracking.chilipiper.com
https://api.chilipiper.com https://api.unsplash.com
https://boards-api.greenhouse.io https://api.statuspage.io
https://pgncd.notion.so https://api.statsig.com; font-src
'self' data: https://cdnjs.cloudflare.com
https://js.intercomcdn.com; img-src 'self' data: blob: https:
https://platform.twitter.com https://syndication.twitter.com
https://pbs.twimg.com https://ton.twimg.com; style-src 'self'
'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://js.chilipiper.com
https://platform.twitter.com https://ton.twimg.com; frame-src
https: http:; media-src https: http:
ETag:
schema:
type: string
example: W/"110f-R5+JLAgaiYySC0RHfDR5I4HPYWU"
Vary:
schema:
type: string
example: Accept-Encoding
Content-Encoding:
schema:
type: string
example: gzip
CF-Cache-Status:
schema:
type: string
example: DYNAMIC
Expect-CT:
schema:
type: string
example: >-
max-age=604800,
report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
Server:
schema:
type: string
example: cloudflare
CF-RAY:
schema:
type: string
example: 6e57ad7a19c482ab-IAD
content:
application/json:
schema:
type: object
example:
object: database
id: 8e2c2b76-9e1d-47d2-87b9-ed3035d607ae
cover: null
icon: null
created_time: '2021-04-27T20:38:00.000Z'
created_by:
object: user
id: 6794760a-1f15-45cd-9c65-0dfe42f5135a
last_edited_by:
object: user
id: 6794760a-1f15-45cd-9c65-0dfe42f5135a
last_edited_time: '2022-02-24T22:14:00.000Z'
title:
- type: text
text:
content: Ever Better Reading List Title
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: Ever Better Reading List Title
href: null
properties:
Score /5:
id: )Y7%22
name: Score /5
type: select
select:
options:
- id: 5c944de7-3f4b-4567-b3a1-fa2c71c540b6
name: ⭐️⭐️⭐️⭐️⭐️
color: default
- id: b7307e35-c80a-4cb5-bb6b-6054523b394a
name: ⭐️⭐️⭐️⭐️
color: default
- id: 9b1e1349-8e24-40ba-bbca-84a61296bc81
name: ⭐️⭐️⭐️
color: default
- id: 66d3d050-086c-4a91-8c56-d55dc67e7789
name: ⭐️⭐️
color: default
- id: d3782c76-0396-467f-928e-46bf0c9d5fba
name: ⭐️
color: default
Type:
id: '%2F7eo'
name: Type
type: select
select:
options:
- id: f96d0d0a-5564-4a20-ab15-5f040d49759e
name: Article
color: default
- id: 4ac85597-5db1-4e0a-9c02-445575c38f76
name: TV Series
color: default
- id: 2991748a-5745-4c3b-9c9b-2d6846a6fa1f
name: Film
color: default
- id: 82f3bace-be25-410d-87fe-561c9c22492f
name: Podcast
color: default
- id: 861f1076-1cc4-429a-a781-54947d727a4a
name: Academic Journal
color: default
- id: 9cc30548-59d6-4cd3-94bc-d234081525c4
name: Essay Resource
color: default
Publisher:
id: '%3E%24Pb'
name: Publisher
type: select
select:
options:
- id: c5ee409a-f307-4176-99ee-6e424fa89afa
name: NYT
color: default
- id: 1b9b0c0c-17b0-4292-ad12-1364a51849de
name: Netflix
color: blue
- id: f3533637-278f-4501-b394-d9753bf3c101
name: Indie
color: brown
- id: e70d713c-4be4-4b40-a44d-fb413c8b9d7e
name: Bon Appetit
color: yellow
- id: 9c2bd667-0a10-4be4-a044-35a537a14ab9
name: Franklin Institute
color: pink
- id: 6849b5f0-e641-4ec5-83cb-1ffe23011060
name: Springer
color: orange
- id: 6a5bff63-a72d-4464-a5d0-1a601af2adf6
name: Emerald Group
color: gray
- id: 01f82d08-aa1f-4884-a4e0-3bc32f909ec4
name: The Atlantic
color: red
Summary:
id: '%3F%5C25'
name: Summary
type: rich_text
rich_text: {}
Publishing/Release Date:
id: '%3Fex%2B'
name: Publishing/Release Date
type: date
date: {}
Link:
id: VVMi
name: Link
type: url
url: {}
Read:
id: _MWJ
name: Read
type: checkbox
checkbox: {}
Status:
id: '%60zz5'
name: Status
type: select
select:
options:
- id: 8c4a056e-6709-4dd1-ba58-d34d9480855a
name: Ready to Start
color: yellow
- id: 5925ba22-0126-4b58-90c7-b8bbb2c3c895
name: Reading
color: red
- id: 59aa9043-07b4-4bf4-8734-3164b13af44a
name: Finished
color: blue
- id: f961978d-02eb-4998-933a-33c2ec378564
name: Listening
color: red
- id: 1d450853-b27a-45e2-979f-448aa1bd35de
name: Watching
color: red
Author:
id: qNw_
name: Author
type: multi_select
multi_select:
options:
- id: 15592971-7b30-43d5-9406-2eb69b13fcae
name: Spencer Greenberg
color: default
- id: b80a988e-dccf-4f74-b764-6ca0e49ed1b8
name: Seth Stephens-Davidowitz
color: default
- id: 0e71ee06-199d-46a4-834c-01084c8f76cb
name: Andrew Russell
color: default
- id: 5807ec38-4879-4455-9f30-5352e90e8b79
name: Lee Vinsel
color: default
- id: 4cf10a64-f3da-449c-8e04-ce6e338bbdbd
name: Megan Greenwell
color: default
- id: 833e2c78-35ed-4601-badc-50c323341d76
name: Kara Swisher
color: default
- id: 82e594e2-b1c5-4271-ac19-1a723a94a533
name: Paul Romer
color: default
- id: ae3a2cbe-1fc9-4376-be35-331628b34623
name: Karen Swallow Prior
color: default
- id: da068e78-dfe2-4434-9fd7-b7450b3e5830
name: Judith Shulevitz
color: default
Name:
id: title
name: Name
type: title
title: {}
parent:
type: page_id
page_id: c4d39556-6364-46a1-8a61-ebbb668f7445
url: https://www.notion.so/8e2c2b769e1d47d287b9ed3035d607ae
archived: false
patch:
tags:
- Databases
summary: Update database properties
requestBody:
content:
application/json:
schema:
type: object
example:
properties:
Wine Pairing:
name: New Property Name
parameters:
- name: Notion-Version
in: header
schema:
type: string
example: '{{NOTION_VERSION}}'
- name: id
in: path
schema:
type: string
required: true
example: '{{DATABASE_ID}}'
responses:
'200':
description: OK
headers:
Date:
schema:
type: string
example: Thu, 24 Feb 2022 22:08:21 GMT
Content-Type:
schema:
type: string
example: application/json; charset=utf-8
Transfer-Encoding:
schema:
type: string
example: chunked
Connection:
schema:
type: string
example: keep-alive
Set-Cookie:
schema:
type: string
example: >-
notion_check_cookie_consent=false; Domain=www.notion.so;
Path=/; Expires=Fri, 25 Feb 2022 22:08:21 GMT; Secure
X-DNS-Prefetch-Control:
schema:
type: string
example: 'off'
X-Frame-Options:
schema:
type: string
example: SAMEORIGIN
Strict-Transport-Security:
schema:
type: string
example: max-age=5184000; includeSubDomains
X-Download-Options:
schema:
type: string
example: noopen
X-Content-Type-Options:
schema:
type: string
example: nosniff
X-XSS-Protection:
schema:
type: string
example: 1; mode=block
Referrer-Policy:
schema:
type: string
example: same-origin
Content-Security-Policy:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://cdn.amplitude.com https://api.amplitude.com
https://hkfxbbdzib.notion.so https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://js.chilipiper.com
https://platform.twitter.com
https://cdn.syndication.twimg.com; connect-src 'self'
https://msgstore.www.notion.so wss://msgstore.www.notion.so
ws://localhost:* ws://127.0.0.1:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://cdn.amplitude.com
https://api.amplitude.com https://hkfxbbdzib.notion.so
https://api.embed.ly https://js.intercomcdn.com
https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://analytics.pgncs.notion.so https://api.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://cdn.contentful.com
https://preview.contentful.com https://images.ctfassets.net
https://www2.profitwell.com https://tracking.chilipiper.com
https://api.chilipiper.com https://api.unsplash.com
https://boards-api.greenhouse.io https://api.statuspage.io
https://pgncd.notion.so https://api.statsig.com; font-src
'self' data: https://cdnjs.cloudflare.com
https://js.intercomcdn.com; img-src 'self' data: blob: https:
https://platform.twitter.com https://syndication.twitter.com
https://pbs.twimg.com https://ton.twimg.com; style-src 'self'
'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://js.chilipiper.com
https://platform.twitter.com https://ton.twimg.com; frame-src
https: http:; media-src https: http:
X-Content-Security-Policy:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://cdn.amplitude.com https://api.amplitude.com
https://hkfxbbdzib.notion.so https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://js.chilipiper.com
https://platform.twitter.com
https://cdn.syndication.twimg.com; connect-src 'self'
https://msgstore.www.notion.so wss://msgstore.www.notion.so
ws://localhost:* ws://127.0.0.1:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://cdn.amplitude.com
https://api.amplitude.com https://hkfxbbdzib.notion.so
https://api.embed.ly https://js.intercomcdn.com
https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://analytics.pgncs.notion.so https://api.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://cdn.contentful.com
https://preview.contentful.com https://images.ctfassets.net
https://www2.profitwell.com https://tracking.chilipiper.com
https://api.chilipiper.com https://api.unsplash.com
https://boards-api.greenhouse.io https://api.statuspage.io
https://pgncd.notion.so https://api.statsig.com; font-src
'self' data: https://cdnjs.cloudflare.com
https://js.intercomcdn.com; img-src 'self' data: blob: https:
https://platform.twitter.com https://syndication.twitter.com
https://pbs.twimg.com https://ton.twimg.com; style-src 'self'
'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://js.chilipiper.com
https://platform.twitter.com https://ton.twimg.com; frame-src
https: http:; media-src https: http:
X-WebKit-CSP:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://cdn.amplitude.com https://api.amplitude.com
https://hkfxbbdzib.notion.so https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://js.chilipiper.com
https://platform.twitter.com
https://cdn.syndication.twimg.com; connect-src 'self'
https://msgstore.www.notion.so wss://msgstore.www.notion.so
ws://localhost:* ws://127.0.0.1:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://cdn.amplitude.com
https://api.amplitude.com https://hkfxbbdzib.notion.so
https://api.embed.ly https://js.intercomcdn.com
https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://analytics.pgncs.notion.so https://api.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://cdn.contentful.com
https://preview.contentful.com https://images.ctfassets.net
https://www2.profitwell.com https://tracking.chilipiper.com
https://api.chilipiper.com https://api.unsplash.com
https://boards-api.greenhouse.io https://api.statuspage.io
https://pgncd.notion.so https://api.statsig.com; font-src
'self' data: https://cdnjs.cloudflare.com
https://js.intercomcdn.com; img-src 'self' data: blob: https:
https://platform.twitter.com https://syndication.twitter.com
https://pbs.twimg.com https://ton.twimg.com; style-src 'self'
'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://js.chilipiper.com
https://platform.twitter.com https://ton.twimg.com; frame-src
https: http:; media-src https: http:
ETag:
schema:
type: string
example: W/"1154-yKzD7frwaV985/9YIfi9OFRzhEo"
Vary:
schema:
type: string
example: Accept-Encoding
Content-Encoding:
schema:
type: string
example: gzip
CF-Cache-Status:
schema:
type: string
example: DYNAMIC
Expect-CT:
schema:
type: string
example: >-
max-age=604800,
report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
Server:
schema:
type: string
example: cloudflare
CF-RAY:
schema:
type: string
example: 6e2c03133bd697c3-SJC
content:
application/json:
schema:
type: object
examples:
example-0:
summary: 200 Success - Update a Database
value:
object: database
id: 8e2c2b76-9e1d-47d2-87b9-ed3035d607ae
cover: null
icon: null
created_time: '2021-04-27T20:38:00.000Z'
created_by:
object: user
id: 6794760a-1f15-45cd-9c65-0dfe42f5135a
last_edited_by:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
last_edited_time: '2022-02-24T22:08:00.000Z'
title:
- type: text
text:
content: Ever Better Reading List Title
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: Ever Better Reading List Title
href: null
properties:
Score /5:
id: )Y7"
name: Score /5
type: select
select:
options:
- id: 5c944de7-3f4b-4567-b3a1-fa2c71c540b6
name: ⭐️⭐️⭐️⭐️⭐️
color: default
- id: b7307e35-c80a-4cb5-bb6b-6054523b394a
name: ⭐️⭐️⭐️⭐️
color: default
- id: 9b1e1349-8e24-40ba-bbca-84a61296bc81
name: ⭐️⭐️⭐️
color: default
- id: 66d3d050-086c-4a91-8c56-d55dc67e7789
name: ⭐️⭐️
color: default
- id: d3782c76-0396-467f-928e-46bf0c9d5fba
name: ⭐️
color: default
Type:
id: /7eo
name: Type
type: select
select:
options:
- id: f96d0d0a-5564-4a20-ab15-5f040d49759e
name: Article
color: default
- id: 4ac85597-5db1-4e0a-9c02-445575c38f76
name: TV Series
color: default
- id: 2991748a-5745-4c3b-9c9b-2d6846a6fa1f
name: Film
color: default
- id: 82f3bace-be25-410d-87fe-561c9c22492f
name: Podcast
color: default
- id: 861f1076-1cc4-429a-a781-54947d727a4a
name: Academic Journal
color: default
- id: 9cc30548-59d6-4cd3-94bc-d234081525c4
name: Essay Resource
color: default
Publisher:
id: '>$Pb'
name: Publisher
type: select
select:
options:
- id: c5ee409a-f307-4176-99ee-6e424fa89afa
name: NYT
color: default
- id: 1b9b0c0c-17b0-4292-ad12-1364a51849de
name: Netflix
color: blue
- id: f3533637-278f-4501-b394-d9753bf3c101
name: Indie
color: brown
- id: e70d713c-4be4-4b40-a44d-fb413c8b9d7e
name: Bon Appetit
color: yellow
- id: 9c2bd667-0a10-4be4-a044-35a537a14ab9
name: Franklin Institute
color: pink
- id: 6849b5f0-e641-4ec5-83cb-1ffe23011060
name: Springer
color: orange
- id: 6a5bff63-a72d-4464-a5d0-1a601af2adf6
name: Emerald Group
color: gray
- id: 01f82d08-aa1f-4884-a4e0-3bc32f909ec4
name: The Atlantic
color: red
Summary:
id: '?\25'
name: Summary
type: rich_text
rich_text: {}
Publishing/Release Date:
id: '?ex+'
name: Publishing/Release Date
type: date
date: {}
Link:
id: VVMi
name: Link
type: url
url: {}
Wine Pairing:
id: Y=H]
name: Wine Pairing
type: rich_text
rich_text: {}
Read:
id: _MWJ
name: Read
type: checkbox
checkbox: {}
Status:
id: '`zz5'
name: Status
type: select
select:
options:
- id: 8c4a056e-6709-4dd1-ba58-d34d9480855a
name: Ready to Start
color: yellow
- id: 5925ba22-0126-4b58-90c7-b8bbb2c3c895
name: Reading
color: red
- id: 59aa9043-07b4-4bf4-8734-3164b13af44a
name: Finished
color: blue
- id: f961978d-02eb-4998-933a-33c2ec378564
name: Listening
color: red
- id: 1d450853-b27a-45e2-979f-448aa1bd35de
name: Watching
color: red
Author:
id: qNw_
name: Author
type: multi_select
multi_select:
options:
- id: 15592971-7b30-43d5-9406-2eb69b13fcae
name: Spencer Greenberg
color: default
- id: b80a988e-dccf-4f74-b764-6ca0e49ed1b8
name: Seth Stephens-Davidowitz
color: default
- id: 0e71ee06-199d-46a4-834c-01084c8f76cb
name: Andrew Russell
color: default
- id: 5807ec38-4879-4455-9f30-5352e90e8b79
name: Lee Vinsel
color: default
- id: 4cf10a64-f3da-449c-8e04-ce6e338bbdbd
name: Megan Greenwell
color: default
- id: 833e2c78-35ed-4601-badc-50c323341d76
name: Kara Swisher
color: default
- id: 82e594e2-b1c5-4271-ac19-1a723a94a533
name: Paul Romer
color: default
- id: ae3a2cbe-1fc9-4376-be35-331628b34623
name: Karen Swallow Prior
color: default
- id: da068e78-dfe2-4434-9fd7-b7450b3e5830
name: Judith Shulevitz
color: default
Name:
id: title
name: Name
type: title
title: {}
parent:
type: page_id
page_id: c4d39556-6364-46a1-8a61-ebbb668f7445
url: https://www.notion.so/8e2c2b769e1d47d287b9ed3035d607ae
archived: false
example-1:
summary: 200 Success - Update a Database
value:
object: database
id: 8e2c2b76-9e1d-47d2-87b9-ed3035d607ae
cover: null
icon: null
created_time: '2021-04-27T20:38:00.000Z'
created_by:
object: user
id: 6794760a-1f15-45cd-9c65-0dfe42f5135a
last_edited_by:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
last_edited_time: '2022-02-24T22:08:00.000Z'
title:
- type: text
text:
content: Ever Better Reading List Title
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: Ever Better Reading List Title
href: null
properties:
Score /5:
id: )Y7"
name: Score /5
type: select
select:
options:
- id: 5c944de7-3f4b-4567-b3a1-fa2c71c540b6
name: ⭐️⭐️⭐️⭐️⭐️
color: default
- id: b7307e35-c80a-4cb5-bb6b-6054523b394a
name: ⭐️⭐️⭐️⭐️
color: default
- id: 9b1e1349-8e24-40ba-bbca-84a61296bc81
name: ⭐️⭐️⭐️
color: default
- id: 66d3d050-086c-4a91-8c56-d55dc67e7789
name: ⭐️⭐️
color: default
- id: d3782c76-0396-467f-928e-46bf0c9d5fba
name: ⭐️
color: default
Type:
id: /7eo
name: Type
type: select
select:
options:
- id: f96d0d0a-5564-4a20-ab15-5f040d49759e
name: Article
color: default
- id: 4ac85597-5db1-4e0a-9c02-445575c38f76
name: TV Series
color: default
- id: 2991748a-5745-4c3b-9c9b-2d6846a6fa1f
name: Film
color: default
- id: 82f3bace-be25-410d-87fe-561c9c22492f
name: Podcast
color: default
- id: 861f1076-1cc4-429a-a781-54947d727a4a
name: Academic Journal
color: default
- id: 9cc30548-59d6-4cd3-94bc-d234081525c4
name: Essay Resource
color: default
Publisher:
id: '>$Pb'
name: Publisher
type: select
select:
options:
- id: c5ee409a-f307-4176-99ee-6e424fa89afa
name: NYT
color: default
- id: 1b9b0c0c-17b0-4292-ad12-1364a51849de
name: Netflix
color: blue
- id: f3533637-278f-4501-b394-d9753bf3c101
name: Indie
color: brown
- id: e70d713c-4be4-4b40-a44d-fb413c8b9d7e
name: Bon Appetit
color: yellow
- id: 9c2bd667-0a10-4be4-a044-35a537a14ab9
name: Franklin Institute
color: pink
- id: 6849b5f0-e641-4ec5-83cb-1ffe23011060
name: Springer
color: orange
- id: 6a5bff63-a72d-4464-a5d0-1a601af2adf6
name: Emerald Group
color: gray
- id: 01f82d08-aa1f-4884-a4e0-3bc32f909ec4
name: The Atlantic
color: red
Summary:
id: '?\25'
name: Summary
type: rich_text
rich_text: {}
Publishing/Release Date:
id: '?ex+'
name: Publishing/Release Date
type: date
date: {}
Link:
id: VVMi
name: Link
type: url
url: {}
Wine Pairing:
id: Y=H]
name: Wine Pairing
type: rich_text
rich_text: {}
Read:
id: _MWJ
name: Read
type: checkbox
checkbox: {}
Status:
id: '`zz5'
name: Status
type: select
select:
options:
- id: 8c4a056e-6709-4dd1-ba58-d34d9480855a
name: Ready to Start
color: yellow
- id: 5925ba22-0126-4b58-90c7-b8bbb2c3c895
name: Reading
color: red
- id: 59aa9043-07b4-4bf4-8734-3164b13af44a
name: Finished
color: blue
- id: f961978d-02eb-4998-933a-33c2ec378564
name: Listening
color: red
- id: 1d450853-b27a-45e2-979f-448aa1bd35de
name: Watching
color: red
Author:
id: qNw_
name: Author
type: multi_select
multi_select:
options:
- id: 15592971-7b30-43d5-9406-2eb69b13fcae
name: Spencer Greenberg
color: default
- id: b80a988e-dccf-4f74-b764-6ca0e49ed1b8
name: Seth Stephens-Davidowitz
color: default
- id: 0e71ee06-199d-46a4-834c-01084c8f76cb
name: Andrew Russell
color: default
- id: 5807ec38-4879-4455-9f30-5352e90e8b79
name: Lee Vinsel
color: default
- id: 4cf10a64-f3da-449c-8e04-ce6e338bbdbd
name: Megan Greenwell
color: default
- id: 833e2c78-35ed-4601-badc-50c323341d76
name: Kara Swisher
color: default
- id: 82e594e2-b1c5-4271-ac19-1a723a94a533
name: Paul Romer
color: default
- id: ae3a2cbe-1fc9-4376-be35-331628b34623
name: Karen Swallow Prior
color: default
- id: da068e78-dfe2-4434-9fd7-b7450b3e5830
name: Judith Shulevitz
color: default
Name:
id: title
name: Name
type: title
title: {}
parent:
type: page_id
page_id: c4d39556-6364-46a1-8a61-ebbb668f7445
url: https://www.notion.so/8e2c2b769e1d47d287b9ed3035d607ae
archived: false
/v1/databases/{id}/query:
post:
tags:
- Databases
summary: Filter a database
requestBody:
content:
'*/*':
schema:
type: string
example: >-
"{\n \"filter\": {\n \"property\":
\"Status\",\n \"select\": {\n \"equals\":
\"Reading\"\n }\n }\n}"
parameters:
- name: Authorization
in: header
schema:
type: string
example: Bearer secret_t1CdN9S8yicG5eWLUOfhcWaOscVnFXns
- name: Content-Type
in: header
schema:
type: string
example: application/json
- name: Notion-Version
in: header
schema:
type: string
example: '{{NOTION_VERSION}}'
- name: id
in: path
schema:
type: string
required: true
example: '{{DATABASE_ID}}'
responses:
'200':
description: OK
headers:
Date:
schema:
type: string
example: Thu, 24 Feb 2022 22:00:15 GMT
Content-Type:
schema:
type: string
example: application/json; charset=utf-8
Transfer-Encoding:
schema:
type: string
example: chunked
Connection:
schema:
type: string
example: keep-alive
Set-Cookie:
schema:
type: string
example: >-
notion_check_cookie_consent=false; Domain=www.notion.so;
Path=/; Expires=Fri, 25 Feb 2022 22:00:14 GMT; Secure
X-DNS-Prefetch-Control:
schema:
type: string
example: 'off'
X-Frame-Options:
schema:
type: string
example: SAMEORIGIN
Strict-Transport-Security:
schema:
type: string
example: max-age=5184000; includeSubDomains
X-Download-Options:
schema:
type: string
example: noopen
X-Content-Type-Options:
schema:
type: string
example: nosniff
X-XSS-Protection:
schema:
type: string
example: 1; mode=block
Referrer-Policy:
schema:
type: string
example: same-origin
Content-Security-Policy:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://cdn.amplitude.com https://api.amplitude.com
https://hkfxbbdzib.notion.so https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://js.chilipiper.com
https://platform.twitter.com
https://cdn.syndication.twimg.com; connect-src 'self'
https://msgstore.www.notion.so wss://msgstore.www.notion.so
ws://localhost:* ws://127.0.0.1:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://cdn.amplitude.com
https://api.amplitude.com https://hkfxbbdzib.notion.so
https://api.embed.ly https://js.intercomcdn.com
https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://analytics.pgncs.notion.so https://api.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://cdn.contentful.com
https://preview.contentful.com https://images.ctfassets.net
https://www2.profitwell.com https://tracking.chilipiper.com
https://api.chilipiper.com https://api.unsplash.com
https://boards-api.greenhouse.io https://api.statuspage.io
https://pgncd.notion.so https://api.statsig.com; font-src
'self' data: https://cdnjs.cloudflare.com
https://js.intercomcdn.com; img-src 'self' data: blob: https:
https://platform.twitter.com https://syndication.twitter.com
https://pbs.twimg.com https://ton.twimg.com; style-src 'self'
'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://js.chilipiper.com
https://platform.twitter.com https://ton.twimg.com; frame-src
https: http:; media-src https: http:
X-Content-Security-Policy:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://cdn.amplitude.com https://api.amplitude.com
https://hkfxbbdzib.notion.so https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://js.chilipiper.com
https://platform.twitter.com
https://cdn.syndication.twimg.com; connect-src 'self'
https://msgstore.www.notion.so wss://msgstore.www.notion.so
ws://localhost:* ws://127.0.0.1:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://cdn.amplitude.com
https://api.amplitude.com https://hkfxbbdzib.notion.so
https://api.embed.ly https://js.intercomcdn.com
https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://analytics.pgncs.notion.so https://api.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://cdn.contentful.com
https://preview.contentful.com https://images.ctfassets.net
https://www2.profitwell.com https://tracking.chilipiper.com
https://api.chilipiper.com https://api.unsplash.com
https://boards-api.greenhouse.io https://api.statuspage.io
https://pgncd.notion.so https://api.statsig.com; font-src
'self' data: https://cdnjs.cloudflare.com
https://js.intercomcdn.com; img-src 'self' data: blob: https:
https://platform.twitter.com https://syndication.twitter.com
https://pbs.twimg.com https://ton.twimg.com; style-src 'self'
'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://js.chilipiper.com
https://platform.twitter.com https://ton.twimg.com; frame-src
https: http:; media-src https: http:
X-WebKit-CSP:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://cdn.amplitude.com https://api.amplitude.com
https://hkfxbbdzib.notion.so https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://js.chilipiper.com
https://platform.twitter.com
https://cdn.syndication.twimg.com; connect-src 'self'
https://msgstore.www.notion.so wss://msgstore.www.notion.so
ws://localhost:* ws://127.0.0.1:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://cdn.amplitude.com
https://api.amplitude.com https://hkfxbbdzib.notion.so
https://api.embed.ly https://js.intercomcdn.com
https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://analytics.pgncs.notion.so https://api.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://cdn.contentful.com
https://preview.contentful.com https://images.ctfassets.net
https://www2.profitwell.com https://tracking.chilipiper.com
https://api.chilipiper.com https://api.unsplash.com
https://boards-api.greenhouse.io https://api.statuspage.io
https://pgncd.notion.so https://api.statsig.com; font-src
'self' data: https://cdnjs.cloudflare.com
https://js.intercomcdn.com; img-src 'self' data: blob: https:
https://platform.twitter.com https://syndication.twitter.com
https://pbs.twimg.com https://ton.twimg.com; style-src 'self'
'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://js.chilipiper.com
https://platform.twitter.com https://ton.twimg.com; frame-src
https: http:; media-src https: http:
ETag:
schema:
type: string
example: W/"1a63-+QDV6pM/Vjm4RPaNIt/bBmTxafA"
Vary:
schema:
type: string
example: Accept-Encoding
Content-Encoding:
schema:
type: string
example: gzip
CF-Cache-Status:
schema:
type: string
example: DYNAMIC
Expect-CT:
schema:
type: string
example: >-
max-age=604800,
report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
Server:
schema:
type: string
example: cloudflare
CF-RAY:
schema:
type: string
example: 6e2bf734ee3a97c3-SJC
content:
application/json:
schema:
type: object
examples:
example-0:
summary: 200 Success - Query a Database (OR)
value:
object: list
results:
- object: page
id: a1712d54-53e4-4893-a69d-4d581cd2c845
created_time: '2021-04-27T20:38:00.000Z'
last_edited_time: '2021-05-12T06:07:00.000Z'
created_by:
object: user
id: 6794760a-1f15-45cd-9c65-0dfe42f5135a
last_edited_by:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
cover: null
icon: null
parent:
type: database_id
database_id: 8e2c2b76-9e1d-47d2-87b9-ed3035d607ae
archived: false
properties:
Score /5:
id: )Y7%22
type: select
select:
id: b7307e35-c80a-4cb5-bb6b-6054523b394a
name: ⭐️⭐️⭐️⭐️
color: default
Type:
id: '%2F7eo'
type: select
select:
id: f96d0d0a-5564-4a20-ab15-5f040d49759e
name: Article
color: default
Publisher:
id: '%3E%24Pb'
type: select
select:
id: c5ee409a-f307-4176-99ee-6e424fa89afa
name: NYT
color: default
Summary:
id: '%3F%5C25'
type: rich_text
rich_text:
- type: text
text:
content: >-
Some think chief ethics officers could help
technology companies navigate political and
social questions.
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: >-
Some think chief ethics officers could help
technology companies navigate political and
social questions.
href: null
Publishing/Release Date:
id: '%3Fex%2B'
type: date
date:
start: '2018-10-21'
end: null
time_zone: null
Link:
id: VVMi
type: url
url: >-
https://www.nytimes.com/2018/10/21/opinion/who-will-teach-silicon-valley-to-be-ethical.html
Read:
id: _MWJ
type: checkbox
checkbox: true
Status:
id: '%60zz5'
type: select
select:
id: 5925ba22-0126-4b58-90c7-b8bbb2c3c895
name: Reading
color: red
Author:
id: qNw_
type: multi_select
multi_select:
- id: 833e2c78-35ed-4601-badc-50c323341d76
name: Kara Swisher
color: default
Name:
id: title
type: title
title:
- type: text
text:
content: >-
Who Will Teach Silicon Valley to Be
Ethical?
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: 'Who Will Teach Silicon Valley to Be Ethical? '
href: null
url: >-
https://www.notion.so/Who-Will-Teach-Silicon-Valley-to-Be-Ethical-a1712d5453e44893a69d4d581cd2c845
- object: page
id: 557ef501-bfdb-4586-918e-4434f31bca8c
created_time: '2021-04-27T20:38:00.000Z'
last_edited_time: '2021-04-27T20:38:00.000Z'
created_by:
object: user
id: 6794760a-1f15-45cd-9c65-0dfe42f5135a
last_edited_by:
object: user
id: 6794760a-1f15-45cd-9c65-0dfe42f5135a
cover: null
icon: null
parent:
type: database_id
database_id: 8e2c2b76-9e1d-47d2-87b9-ed3035d607ae
archived: false
properties:
Score /5:
id: )Y7%22
type: select
select:
id: 66d3d050-086c-4a91-8c56-d55dc67e7789
name: ⭐️⭐️
color: default
Type:
id: '%2F7eo'
type: select
select:
id: 9cc30548-59d6-4cd3-94bc-d234081525c4
name: Essay Resource
color: default
Publisher:
id: '%3E%24Pb'
type: select
select:
id: 01f82d08-aa1f-4884-a4e0-3bc32f909ec4
name: The Atlantic
color: red
Summary:
id: '%3F%5C25'
type: rich_text
rich_text: []
Publishing/Release Date:
id: '%3Fex%2B'
type: date
date:
start: '2016-10-03'
end: null
time_zone: null
Link:
id: VVMi
type: url
url: >-
https://www.theatlantic.com/entertainment/archive/2016/03/how-jane-eyre-created-the-modern-self/460461/
Read:
id: _MWJ
type: checkbox
checkbox: false
Status:
id: '%60zz5'
type: select
select:
id: 5925ba22-0126-4b58-90c7-b8bbb2c3c895
name: Reading
color: red
Author:
id: qNw_
type: multi_select
multi_select:
- id: ae3a2cbe-1fc9-4376-be35-331628b34623
name: Karen Swallow Prior
color: default
Name:
id: title
type: title
title:
- type: text
text:
content: Jane Eyre
link: null
annotations:
bold: false
italic: true
strikethrough: false
underline: false
code: false
color: default
plain_text: Jane Eyre
href: null
- type: text
text:
content: ' and the Invention of Self'
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: ' and the Invention of Self'
href: null
url: >-
https://www.notion.so/Jane-Eyre-and-the-Invention-of-Self-557ef501bfdb4586918e4434f31bca8c
- object: page
id: 7ea694fa-93bb-43ba-b342-90a7706e55aa
created_time: '2021-04-27T20:38:00.000Z'
last_edited_time: '2021-04-27T20:38:00.000Z'
created_by:
object: user
id: 6794760a-1f15-45cd-9c65-0dfe42f5135a
last_edited_by:
object: user
id: 6794760a-1f15-45cd-9c65-0dfe42f5135a
cover: null
icon: null
parent:
type: database_id
database_id: 8e2c2b76-9e1d-47d2-87b9-ed3035d607ae
archived: false
properties:
Score /5:
id: )Y7%22
type: select
select: null
Type:
id: '%2F7eo'
type: select
select:
id: f96d0d0a-5564-4a20-ab15-5f040d49759e
name: Article
color: default
Publisher:
id: '%3E%24Pb'
type: select
select:
id: c5ee409a-f307-4176-99ee-6e424fa89afa
name: NYT
color: default
Summary:
id: '%3F%5C25'
type: rich_text
rich_text:
- type: text
text:
content: >-
Putting a levy on targeted ad revenue would
give Facebook and Google a real incentive to
change their dangerous business models.
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: >-
Putting a levy on targeted ad revenue would
give Facebook and Google a real incentive to
change their dangerous business models.
href: null
Publishing/Release Date:
id: '%3Fex%2B'
type: date
date:
start: '2019-10-06'
end: null
time_zone: null
Link:
id: VVMi
type: url
url: >-
https://www.nytimes.com/2019/05/06/opinion/tax-facebook-google.html
Read:
id: _MWJ
type: checkbox
checkbox: false
Status:
id: '%60zz5'
type: select
select:
id: 8c4a056e-6709-4dd1-ba58-d34d9480855a
name: Ready to Start
color: yellow
Author:
id: qNw_
type: multi_select
multi_select:
- id: 82e594e2-b1c5-4271-ac19-1a723a94a533
name: Paul Romer
color: default
Name:
id: title
type: title
title:
- type: text
text:
content: 'A Tax That Could Fix Big Tech '
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: 'A Tax That Could Fix Big Tech '
href: null
url: >-
https://www.notion.so/A-Tax-That-Could-Fix-Big-Tech-7ea694fa93bb43bab34290a7706e55aa
next_cursor: null
has_more: false
example-1:
summary: 200 Success - Query a Database (AND)
value:
object: list
results:
- object: page
id: a1712d54-53e4-4893-a69d-4d581cd2c845
created_time: '2021-04-27T20:38:00.000Z'
last_edited_time: '2021-05-12T06:07:00.000Z'
created_by:
object: user
id: 6794760a-1f15-45cd-9c65-0dfe42f5135a
last_edited_by:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
cover: null
icon: null
parent:
type: database_id
database_id: 8e2c2b76-9e1d-47d2-87b9-ed3035d607ae
archived: false
properties:
Score /5:
id: )Y7%22
type: select
select:
id: b7307e35-c80a-4cb5-bb6b-6054523b394a
name: ⭐️⭐️⭐️⭐️
color: default
Type:
id: '%2F7eo'
type: select
select:
id: f96d0d0a-5564-4a20-ab15-5f040d49759e
name: Article
color: default
Publisher:
id: '%3E%24Pb'
type: select
select:
id: c5ee409a-f307-4176-99ee-6e424fa89afa
name: NYT
color: default
Summary:
id: '%3F%5C25'
type: rich_text
rich_text:
- type: text
text:
content: >-
Some think chief ethics officers could help
technology companies navigate political and
social questions.
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: >-
Some think chief ethics officers could help
technology companies navigate political and
social questions.
href: null
Publishing/Release Date:
id: '%3Fex%2B'
type: date
date:
start: '2018-10-21'
end: null
time_zone: null
Link:
id: VVMi
type: url
url: >-
https://www.nytimes.com/2018/10/21/opinion/who-will-teach-silicon-valley-to-be-ethical.html
Read:
id: _MWJ
type: checkbox
checkbox: true
Status:
id: '%60zz5'
type: select
select:
id: 5925ba22-0126-4b58-90c7-b8bbb2c3c895
name: Reading
color: red
Author:
id: qNw_
type: multi_select
multi_select:
- id: 833e2c78-35ed-4601-badc-50c323341d76
name: Kara Swisher
color: default
Name:
id: title
type: title
title:
- type: text
text:
content: >-
Who Will Teach Silicon Valley to Be
Ethical?
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: 'Who Will Teach Silicon Valley to Be Ethical? '
href: null
url: >-
https://www.notion.so/Who-Will-Teach-Silicon-Valley-to-Be-Ethical-a1712d5453e44893a69d4d581cd2c845
next_cursor: null
has_more: false
example-2:
summary: 200 Success - Query a Database (Single Filter)
value:
object: list
results:
- object: page
id: 557ef501-bfdb-4586-918e-4434f31bca8c
created_time: '2021-04-27T20:38:00.000Z'
last_edited_time: '2021-04-27T20:38:00.000Z'
created_by:
object: user
id: 6794760a-1f15-45cd-9c65-0dfe42f5135a
last_edited_by:
object: user
id: 6794760a-1f15-45cd-9c65-0dfe42f5135a
cover: null
icon: null
parent:
type: database_id
database_id: 8e2c2b76-9e1d-47d2-87b9-ed3035d607ae
archived: false
properties:
Score /5:
id: )Y7%22
type: select
select:
id: 66d3d050-086c-4a91-8c56-d55dc67e7789
name: ⭐️⭐️
color: default
Type:
id: '%2F7eo'
type: select
select:
id: 9cc30548-59d6-4cd3-94bc-d234081525c4
name: Essay Resource
color: default
Publisher:
id: '%3E%24Pb'
type: select
select:
id: 01f82d08-aa1f-4884-a4e0-3bc32f909ec4
name: The Atlantic
color: red
Summary:
id: '%3F%5C25'
type: rich_text
rich_text: []
Publishing/Release Date:
id: '%3Fex%2B'
type: date
date:
start: '2016-10-03'
end: null
time_zone: null
Link:
id: VVMi
type: url
url: >-
https://www.theatlantic.com/entertainment/archive/2016/03/how-jane-eyre-created-the-modern-self/460461/
Read:
id: _MWJ
type: checkbox
checkbox: false
Status:
id: '%60zz5'
type: select
select:
id: 5925ba22-0126-4b58-90c7-b8bbb2c3c895
name: Reading
color: red
Author:
id: qNw_
type: multi_select
multi_select:
- id: ae3a2cbe-1fc9-4376-be35-331628b34623
name: Karen Swallow Prior
color: default
Name:
id: title
type: title
title:
- type: text
text:
content: Jane Eyre
link: null
annotations:
bold: false
italic: true
strikethrough: false
underline: false
code: false
color: default
plain_text: Jane Eyre
href: null
- type: text
text:
content: ' and the Invention of Self'
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: ' and the Invention of Self'
href: null
url: >-
https://www.notion.so/Jane-Eyre-and-the-Invention-of-Self-557ef501bfdb4586918e4434f31bca8c
- object: page
id: a1712d54-53e4-4893-a69d-4d581cd2c845
created_time: '2021-04-27T20:38:00.000Z'
last_edited_time: '2021-05-12T06:07:00.000Z'
created_by:
object: user
id: 6794760a-1f15-45cd-9c65-0dfe42f5135a
last_edited_by:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
cover: null
icon: null
parent:
type: database_id
database_id: 8e2c2b76-9e1d-47d2-87b9-ed3035d607ae
archived: false
properties:
Score /5:
id: )Y7%22
type: select
select:
id: b7307e35-c80a-4cb5-bb6b-6054523b394a
name: ⭐️⭐️⭐️⭐️
color: default
Type:
id: '%2F7eo'
type: select
select:
id: f96d0d0a-5564-4a20-ab15-5f040d49759e
name: Article
color: default
Publisher:
id: '%3E%24Pb'
type: select
select:
id: c5ee409a-f307-4176-99ee-6e424fa89afa
name: NYT
color: default
Summary:
id: '%3F%5C25'
type: rich_text
rich_text:
- type: text
text:
content: >-
Some think chief ethics officers could help
technology companies navigate political and
social questions.
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: >-
Some think chief ethics officers could help
technology companies navigate political and
social questions.
href: null
Publishing/Release Date:
id: '%3Fex%2B'
type: date
date:
start: '2018-10-21'
end: null
time_zone: null
Link:
id: VVMi
type: url
url: >-
https://www.nytimes.com/2018/10/21/opinion/who-will-teach-silicon-valley-to-be-ethical.html
Read:
id: _MWJ
type: checkbox
checkbox: true
Status:
id: '%60zz5'
type: select
select:
id: 5925ba22-0126-4b58-90c7-b8bbb2c3c895
name: Reading
color: red
Author:
id: qNw_
type: multi_select
multi_select:
- id: 833e2c78-35ed-4601-badc-50c323341d76
name: Kara Swisher
color: default
Name:
id: title
type: title
title:
- type: text
text:
content: >-
Who Will Teach Silicon Valley to Be
Ethical?
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: 'Who Will Teach Silicon Valley to Be Ethical? '
href: null
url: >-
https://www.notion.so/Who-Will-Teach-Silicon-Valley-to-Be-Ethical-a1712d5453e44893a69d4d581cd2c845
next_cursor: null
has_more: false
/v1/databases/:
post:
tags:
- Databases
summary: Create a database
requestBody:
content:
'*/*':
schema:
type: string
example: >-
"{\n \"parent\": {\n \"type\": \"page_id\",\n
\"page_id\": \"{{PAGE_ID}}\"\n },\n \"title\": [\n
{\n \"type\": \"text\",\n \"text\":
{\n \"content\": \"Grocery
List\",\n \"link\": null\n }\n
}\n ],\n \"properties\": {\n \"Name\":
{\n \"title\": {}\n },\n
\"Description\": {\n \"rich_text\": {}\n
},\n \"In stock\": {\n \"checkbox\":
{}\n },\n \"Food group\": {\n
\"select\": {\n \"options\":
[\n {\n \"name\":
\"🥦Vegetable\",\n \"color\":
\"green\"\n },\n
{\n \"name\":
\"🍎Fruit\",\n \"color\":
\"red\"\n },\n
{\n \"name\":
\"💪Protein\",\n \"color\":
\"yellow\"\n }\n
]\n }\n },\n \"Price\": {\n
\"number\": {\n \"format\":
\"dollar\"\n }\n },\n \"Last ordered\":
{\n \"date\": {}\n },\n \"Store
availability\": {\n \"type\":
\"multi_select\",\n \"multi_select\":
{\n \"options\": [\n
{\n \"name\": \"Duc Loi
Market\",\n \"color\":
\"blue\"\n },\n
{\n \"name\": \"Rainbow
Grocery\",\n \"color\":
\"gray\"\n },\n
{\n \"name\": \"Nijiya
Market\",\n \"color\":
\"purple\"\n },\n
{\n \"name\": \"Gus's Community
Market\",\n \"color\":
\"yellow\"\n }\n
]\n }\n },\n \"+1\": {\n
\"people\": {}\n },\n \"Photo\": {\n
\"files\": {}\n }\n }\n}"
parameters:
- name: Content-Type
in: header
schema:
type: string
example: application/json
- name: Notion-Version
in: header
schema:
type: string
example: '{{NOTION_VERSION}}'
responses:
'200':
description: OK
headers:
Date:
schema:
type: string
example: Thu, 24 Feb 2022 22:06:41 GMT
Content-Type:
schema:
type: string
example: application/json; charset=utf-8
Transfer-Encoding:
schema:
type: string
example: chunked
Connection:
schema:
type: string
example: keep-alive
Set-Cookie:
schema:
type: string
example: >-
notion_check_cookie_consent=false; Domain=www.notion.so;
Path=/; Expires=Fri, 25 Feb 2022 22:06:41 GMT; Secure
X-DNS-Prefetch-Control:
schema:
type: string
example: 'off'
X-Frame-Options:
schema:
type: string
example: SAMEORIGIN
Strict-Transport-Security:
schema:
type: string
example: max-age=5184000; includeSubDomains
X-Download-Options:
schema:
type: string
example: noopen
X-Content-Type-Options:
schema:
type: string
example: nosniff
X-XSS-Protection:
schema:
type: string
example: 1; mode=block
Referrer-Policy:
schema:
type: string
example: same-origin
Content-Security-Policy:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://cdn.amplitude.com https://api.amplitude.com
https://hkfxbbdzib.notion.so https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://js.chilipiper.com
https://platform.twitter.com
https://cdn.syndication.twimg.com; connect-src 'self'
https://msgstore.www.notion.so wss://msgstore.www.notion.so
ws://localhost:* ws://127.0.0.1:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://cdn.amplitude.com
https://api.amplitude.com https://hkfxbbdzib.notion.so
https://api.embed.ly https://js.intercomcdn.com
https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://analytics.pgncs.notion.so https://api.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://cdn.contentful.com
https://preview.contentful.com https://images.ctfassets.net
https://www2.profitwell.com https://tracking.chilipiper.com
https://api.chilipiper.com https://api.unsplash.com
https://boards-api.greenhouse.io https://api.statuspage.io
https://pgncd.notion.so https://api.statsig.com; font-src
'self' data: https://cdnjs.cloudflare.com
https://js.intercomcdn.com; img-src 'self' data: blob: https:
https://platform.twitter.com https://syndication.twitter.com
https://pbs.twimg.com https://ton.twimg.com; style-src 'self'
'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://js.chilipiper.com
https://platform.twitter.com https://ton.twimg.com; frame-src
https: http:; media-src https: http:
X-Content-Security-Policy:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://cdn.amplitude.com https://api.amplitude.com
https://hkfxbbdzib.notion.so https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://js.chilipiper.com
https://platform.twitter.com
https://cdn.syndication.twimg.com; connect-src 'self'
https://msgstore.www.notion.so wss://msgstore.www.notion.so
ws://localhost:* ws://127.0.0.1:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://cdn.amplitude.com
https://api.amplitude.com https://hkfxbbdzib.notion.so
https://api.embed.ly https://js.intercomcdn.com
https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://analytics.pgncs.notion.so https://api.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://cdn.contentful.com
https://preview.contentful.com https://images.ctfassets.net
https://www2.profitwell.com https://tracking.chilipiper.com
https://api.chilipiper.com https://api.unsplash.com
https://boards-api.greenhouse.io https://api.statuspage.io
https://pgncd.notion.so https://api.statsig.com; font-src
'self' data: https://cdnjs.cloudflare.com
https://js.intercomcdn.com; img-src 'self' data: blob: https:
https://platform.twitter.com https://syndication.twitter.com
https://pbs.twimg.com https://ton.twimg.com; style-src 'self'
'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://js.chilipiper.com
https://platform.twitter.com https://ton.twimg.com; frame-src
https: http:; media-src https: http:
X-WebKit-CSP:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://cdn.amplitude.com https://api.amplitude.com
https://hkfxbbdzib.notion.so https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://js.chilipiper.com
https://platform.twitter.com
https://cdn.syndication.twimg.com; connect-src 'self'
https://msgstore.www.notion.so wss://msgstore.www.notion.so
ws://localhost:* ws://127.0.0.1:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://cdn.amplitude.com
https://api.amplitude.com https://hkfxbbdzib.notion.so
https://api.embed.ly https://js.intercomcdn.com
https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://analytics.pgncs.notion.so https://api.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://cdn.contentful.com
https://preview.contentful.com https://images.ctfassets.net
https://www2.profitwell.com https://tracking.chilipiper.com
https://api.chilipiper.com https://api.unsplash.com
https://boards-api.greenhouse.io https://api.statuspage.io
https://pgncd.notion.so https://api.statsig.com; font-src
'self' data: https://cdnjs.cloudflare.com
https://js.intercomcdn.com; img-src 'self' data: blob: https:
https://platform.twitter.com https://syndication.twitter.com
https://pbs.twimg.com https://ton.twimg.com; style-src 'self'
'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://js.chilipiper.com
https://platform.twitter.com https://ton.twimg.com; frame-src
https: http:; media-src https: http:
ETag:
schema:
type: string
example: W/"800-juUK1tb1m7Mr+tDAal5QWEVyRL8"
Vary:
schema:
type: string
example: Accept-Encoding
Content-Encoding:
schema:
type: string
example: gzip
CF-Cache-Status:
schema:
type: string
example: DYNAMIC
Expect-CT:
schema:
type: string
example: >-
max-age=604800,
report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
Server:
schema:
type: string
example: cloudflare
CF-RAY:
schema:
type: string
example: 6e2c00a2bff697c3-SJC
content:
application/json:
schema:
type: object
example:
object: database
id: 23cde96c-0ad8-41d8-bfa2-b477c63dd52a
cover: null
icon: null
created_time: '2022-02-24T22:06:00.000Z'
created_by:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
last_edited_by:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
last_edited_time: '2022-02-24T22:06:00.000Z'
title:
- type: text
text:
content: Grocery List
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: Grocery List
href: null
properties:
Description:
id: '%3EWW~'
name: Description
type: rich_text
rich_text: {}
Last ordered:
id: O%5C%3BK
name: Last ordered
type: date
date: {}
In stock:
id: Pya%5C
name: In stock
type: checkbox
checkbox: {}
'+1':
id: '%5CSky'
name: '+1'
type: people
people: {}
Photo:
id: dSrT
name: Photo
type: files
files: {}
Store availability:
id: jRd%3E
name: Store availability
type: multi_select
multi_select:
options:
- id: 8e6441ee-8f17-4833-a2fe-68af5dced24f
name: Duc Loi Market
color: blue
- id: 64a9da77-9805-461f-9773-1e176fdbd203
name: Rainbow Grocery
color: gray
- id: 012d0436-66a1-4613-a1bd-314b1d1d059b
name: Nijiya Market
color: purple
- id: 63ab31f9-8cbd-4d02-8688-752376f455ea
name: Gus's Community Market
color: yellow
Food group:
id: q%5DO%5B
name: Food group
type: select
select:
options:
- id: 392af858-f42f-43ea-a171-7c0ca5c0a683
name: 🥦Vegetable
color: green
- id: df461a24-14c6-494a-8c61-55775fedbdcd
name: 🍎Fruit
color: red
- id: 0ff22aaa-348e-4194-83c2-67a76dfb10fc
name: 💪Protein
color: yellow
Price:
id: t%60jj
name: Price
type: number
number:
format: dollar
Name:
id: title
name: Name
type: title
title: {}
parent:
type: page_id
page_id: c4d39556-6364-46a1-8a61-ebbb668f7445
url: https://www.notion.so/23cde96c0ad841d8bfa2b477c63dd52a
archived: false
/v1/pages/:
post:
tags:
- Pages
summary: Create a page with content
requestBody:
content:
'*/*':
schema:
type: string
example: >-
"{\n \"parent\": {\n \"database_id\":
\"{{DATABASE_ID}}\"\n },\n \"properties\": {\n
\"Type\": {\n \"select\": {\n \"id\":
\"f96d0d0a-5564-4a20-ab15-5f040d49759e\",\n
\"name\": \"Article\",\n \"color\":
\"default\"\n }\n },\n \"Score /5\":
{\n \"select\": {\n \"id\":
\"5c944de7-3f4b-4567-b3a1-fa2c71c540b6\",\n
\"name\": \"⭐️⭐️⭐️⭐️⭐️\",\n \"color\":
\"default\"\n }\n },\n \"Name\":
{\n \"title\": [\n
{\n \"text\": {\n
\"content\": \"New Media Article\"\n
}\n }\n ]\n },\n
\"Status\": {\n \"select\": {\n
\"id\":
\"8c4a056e-6709-4dd1-ba58-d34d9480855a\",\n
\"name\": \"Ready to Start\",\n \"color\":
\"yellow\"\n }\n },\n \"Publisher\":
{\n \"select\": {\n \"id\":
\"01f82d08-aa1f-4884-a4e0-3bc32f909ec4\",\n
\"name\": \"The Atlantic\",\n \"color\":
\"red\"\n }\n },\n \"Publishing/Release
Date\": {\n \"date\": {\n \"start\":
\"2020-12-08T12:00:00Z\",\n \"end\":
null\n }\n },\n \"Link\":
{\n \"url\":
\"https://www.nytimes.com/2018/10/21/opinion/who-will-teach-silicon-valley-to-be-ethical.html\"\n
},\n \"Summary\": {\n \"rich_text\":
[\n {\n \"type\":
\"text\",\n \"text\":
{\n \"content\": \"Some think chief
ethics officers could help technology companies navigate
political and social questions.\",\n
\"link\": null\n },\n
\"annotations\": {\n \"bold\":
false,\n \"italic\":
false,\n \"strikethrough\":
false,\n \"underline\":
false,\n \"code\":
false,\n \"color\":
\"default\"\n },\n
\"plain_text\": \"Some think chief ethics officers could help
technology companies navigate political and social
questions.\",\n \"href\":
null\n }\n ]\n },\n
\"Read\": {\n \"checkbox\": false\n }\n
},\n \"children\": [\n {\n \"object\":
\"block\",\n \"type\": \"heading_2\",\n
\"heading_2\": {\n \"rich_text\":
[\n {\n \"type\":
\"text\",\n \"text\":
{\n \"content\": \"Lacinato
kale\"\n }\n
}\n ]\n }\n },\n
{\n \"object\": \"block\",\n \"type\":
\"paragraph\",\n \"paragraph\": {\n
\"rich_text\": [\n {\n
\"type\": \"text\",\n \"text\":
{\n \"content\": \"Lacinato kale is a
variety of kale with a long tradition in Italian cuisine,
especially that of Tuscany. It is also known as Tuscan kale,
Italian kale, dinosaur kale, kale, flat back kale, palm tree
kale, or black Tuscan palm.\",\n
\"link\": {\n \"url\":
\"https://en.wikipedia.org/wiki/Lacinato_kale\"\n
}\n }\n
}\n ]\n }\n }\n ]\n}"
parameters:
- name: Authorization
in: header
schema:
type: string
example: Bearer secret_t1CdN9S8yicG5eWLUOfhcWaOscVnFXns
- name: Content-Type
in: header
schema:
type: string
example: application/json
- name: Notion-Version
in: header
schema:
type: string
example: '{{NOTION_VERSION}}'
responses:
'200':
description: OK
headers:
Date:
schema:
type: string
example: Wed, 02 Mar 2022 05:24:58 GMT
Content-Type:
schema:
type: string
example: application/json; charset=utf-8
Transfer-Encoding:
schema:
type: string
example: chunked
Connection:
schema:
type: string
example: keep-alive
Set-Cookie:
schema:
type: string
example: >-
notion_check_cookie_consent=false; Domain=www.notion.so;
Path=/; Expires=Thu, 03 Mar 2022 05:24:58 GMT; Secure
X-DNS-Prefetch-Control:
schema:
type: string
example: 'off'
X-Frame-Options:
schema:
type: string
example: SAMEORIGIN
Strict-Transport-Security:
schema:
type: string
example: max-age=5184000; includeSubDomains
X-Download-Options:
schema:
type: string
example: noopen
X-Content-Type-Options:
schema:
type: string
example: nosniff
X-XSS-Protection:
schema:
type: string
example: 1; mode=block
Referrer-Policy:
schema:
type: string
example: same-origin
Content-Security-Policy:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://cdn.amplitude.com https://api.amplitude.com
https://hkfxbbdzib.notion.so https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://js.chilipiper.com
https://platform.twitter.com
https://cdn.syndication.twimg.com; connect-src 'self'
https://msgstore.www.notion.so wss://msgstore.www.notion.so
ws://localhost:* ws://127.0.0.1:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://cdn.amplitude.com
https://api.amplitude.com https://hkfxbbdzib.notion.so
https://api.embed.ly https://js.intercomcdn.com
https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://analytics.pgncs.notion.so https://api.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://cdn.contentful.com
https://preview.contentful.com https://images.ctfassets.net
https://www2.profitwell.com https://tracking.chilipiper.com
https://api.chilipiper.com https://api.unsplash.com
https://boards-api.greenhouse.io https://api.statuspage.io
https://pgncd.notion.so https://api.statsig.com; font-src
'self' data: https://cdnjs.cloudflare.com
https://js.intercomcdn.com; img-src 'self' data: blob: https:
https://platform.twitter.com https://syndication.twitter.com
https://pbs.twimg.com https://ton.twimg.com; style-src 'self'
'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://js.chilipiper.com
https://platform.twitter.com https://ton.twimg.com; frame-src
https: http:; media-src https: http:
X-Content-Security-Policy:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://cdn.amplitude.com https://api.amplitude.com
https://hkfxbbdzib.notion.so https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://js.chilipiper.com
https://platform.twitter.com
https://cdn.syndication.twimg.com; connect-src 'self'
https://msgstore.www.notion.so wss://msgstore.www.notion.so
ws://localhost:* ws://127.0.0.1:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://cdn.amplitude.com
https://api.amplitude.com https://hkfxbbdzib.notion.so
https://api.embed.ly https://js.intercomcdn.com
https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://analytics.pgncs.notion.so https://api.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://cdn.contentful.com
https://preview.contentful.com https://images.ctfassets.net
https://www2.profitwell.com https://tracking.chilipiper.com
https://api.chilipiper.com https://api.unsplash.com
https://boards-api.greenhouse.io https://api.statuspage.io
https://pgncd.notion.so https://api.statsig.com; font-src
'self' data: https://cdnjs.cloudflare.com
https://js.intercomcdn.com; img-src 'self' data: blob: https:
https://platform.twitter.com https://syndication.twitter.com
https://pbs.twimg.com https://ton.twimg.com; style-src 'self'
'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://js.chilipiper.com
https://platform.twitter.com https://ton.twimg.com; frame-src
https: http:; media-src https: http:
X-WebKit-CSP:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://cdn.amplitude.com https://api.amplitude.com
https://hkfxbbdzib.notion.so https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://js.chilipiper.com
https://platform.twitter.com
https://cdn.syndication.twimg.com; connect-src 'self'
https://msgstore.www.notion.so wss://msgstore.www.notion.so
ws://localhost:* ws://127.0.0.1:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://cdn.amplitude.com
https://api.amplitude.com https://hkfxbbdzib.notion.so
https://api.embed.ly https://js.intercomcdn.com
https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://analytics.pgncs.notion.so https://api.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://cdn.contentful.com
https://preview.contentful.com https://images.ctfassets.net
https://www2.profitwell.com https://tracking.chilipiper.com
https://api.chilipiper.com https://api.unsplash.com
https://boards-api.greenhouse.io https://api.statuspage.io
https://pgncd.notion.so https://api.statsig.com; font-src
'self' data: https://cdnjs.cloudflare.com
https://js.intercomcdn.com; img-src 'self' data: blob: https:
https://platform.twitter.com https://syndication.twitter.com
https://pbs.twimg.com https://ton.twimg.com; style-src 'self'
'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://js.chilipiper.com
https://platform.twitter.com https://ton.twimg.com; frame-src
https: http:; media-src https: http:
ETag:
schema:
type: string
example: W/"8a3-gcmRViEt7UpvGwWtJJn236x6UKc"
Vary:
schema:
type: string
example: Accept-Encoding
Content-Encoding:
schema:
type: string
example: gzip
CF-Cache-Status:
schema:
type: string
example: DYNAMIC
Expect-CT:
schema:
type: string
example: >-
max-age=604800,
report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
Server:
schema:
type: string
example: cloudflare
CF-RAY:
schema:
type: string
example: 6e57b587edb0594a-IAD
content:
application/json:
schema:
type: object
example:
object: page
id: 672b014a-2626-4ada-9211-fb3613d07ae2
created_time: '2022-03-02T05:24:00.000Z'
last_edited_time: '2022-03-02T05:24:00.000Z'
created_by:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
last_edited_by:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
cover: null
icon: null
parent:
type: database_id
database_id: 8e2c2b76-9e1d-47d2-87b9-ed3035d607ae
archived: false
properties:
Score /5:
id: )Y7%22
type: select
select:
id: 5c944de7-3f4b-4567-b3a1-fa2c71c540b6
name: ⭐️⭐️⭐️⭐️⭐️
color: default
Type:
id: '%2F7eo'
type: select
select:
id: 672b014a-2626-4ada-9211-fb3613d07ae2
name: Article
color: default
Publisher:
id: '%3E%24Pb'
type: select
select:
id: 01f82d08-aa1f-4884-a4e0-3bc32f909ec4
name: The Atlantic
color: red
Summary:
id: '%3F%5C25'
type: rich_text
rich_text:
- type: text
text:
content: >-
Some think chief ethics officers could help
technology companies navigate political and social
questions.
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: >-
Some think chief ethics officers could help technology
companies navigate political and social questions.
href: null
Publishing/Release Date:
id: '%3Fex%2B'
type: date
date:
start: '2020-12-08T12:00:00.000+00:00'
end: null
time_zone: null
Link:
id: VVMi
type: url
url: >-
https://www.nytimes.com/2018/10/21/opinion/who-will-teach-silicon-valley-to-be-ethical.html
Read:
id: _MWJ
type: checkbox
checkbox: false
Status:
id: '%60zz5'
type: select
select:
id: 8c4a056e-6709-4dd1-ba58-d34d9480855a
name: Ready to Start
color: yellow
Author:
id: qNw_
type: multi_select
multi_select: []
Name:
id: title
type: title
title:
- type: text
text:
content: New Media Article
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: New Media Article
href: null
url: >-
https://www.notion.so/New-Media-Article-672b014a26264ada9211fb3613d07ae2
/v1/pages/{id}:
get:
tags:
- Pages
summary: Retrieve a page
description: >-
Retrieves a Page object using the ID in the request path. This endpoint
exposes page properties, not page content.
parameters:
- name: Notion-Version
in: header
schema:
type: string
example: '{{NOTION_VERSION}}'
- name: id
in: path
schema:
type: string
required: true
example: '{{PAGE_ID}}'
responses:
'200':
description: OK
headers:
Date:
schema:
type: string
example: Wed, 02 Mar 2022 05:25:32 GMT
Content-Type:
schema:
type: string
example: application/json; charset=utf-8
Transfer-Encoding:
schema:
type: string
example: chunked
Connection:
schema:
type: string
example: keep-alive
Set-Cookie:
schema:
type: string
example: >-
notion_check_cookie_consent=false; Domain=www.notion.so;
Path=/; Expires=Thu, 03 Mar 2022 05:25:32 GMT; Secure
X-DNS-Prefetch-Control:
schema:
type: string
example: 'off'
X-Frame-Options:
schema:
type: string
example: SAMEORIGIN
Strict-Transport-Security:
schema:
type: string
example: max-age=5184000; includeSubDomains
X-Download-Options:
schema:
type: string
example: noopen
X-Content-Type-Options:
schema:
type: string
example: nosniff
X-XSS-Protection:
schema:
type: string
example: 1; mode=block
Referrer-Policy:
schema:
type: string
example: same-origin
Content-Security-Policy:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://cdn.amplitude.com https://api.amplitude.com
https://hkfxbbdzib.notion.so https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://js.chilipiper.com
https://platform.twitter.com
https://cdn.syndication.twimg.com; connect-src 'self'
https://msgstore.www.notion.so wss://msgstore.www.notion.so
ws://localhost:* ws://127.0.0.1:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://cdn.amplitude.com
https://api.amplitude.com https://hkfxbbdzib.notion.so
https://api.embed.ly https://js.intercomcdn.com
https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://analytics.pgncs.notion.so https://api.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://cdn.contentful.com
https://preview.contentful.com https://images.ctfassets.net
https://www2.profitwell.com https://tracking.chilipiper.com
https://api.chilipiper.com https://api.unsplash.com
https://boards-api.greenhouse.io https://api.statuspage.io
https://pgncd.notion.so https://api.statsig.com; font-src
'self' data: https://cdnjs.cloudflare.com
https://js.intercomcdn.com; img-src 'self' data: blob: https:
https://platform.twitter.com https://syndication.twitter.com
https://pbs.twimg.com https://ton.twimg.com; style-src 'self'
'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://js.chilipiper.com
https://platform.twitter.com https://ton.twimg.com; frame-src
https: http:; media-src https: http:
X-Content-Security-Policy:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://cdn.amplitude.com https://api.amplitude.com
https://hkfxbbdzib.notion.so https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://js.chilipiper.com
https://platform.twitter.com
https://cdn.syndication.twimg.com; connect-src 'self'
https://msgstore.www.notion.so wss://msgstore.www.notion.so
ws://localhost:* ws://127.0.0.1:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://cdn.amplitude.com
https://api.amplitude.com https://hkfxbbdzib.notion.so
https://api.embed.ly https://js.intercomcdn.com
https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://analytics.pgncs.notion.so https://api.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://cdn.contentful.com
https://preview.contentful.com https://images.ctfassets.net
https://www2.profitwell.com https://tracking.chilipiper.com
https://api.chilipiper.com https://api.unsplash.com
https://boards-api.greenhouse.io https://api.statuspage.io
https://pgncd.notion.so https://api.statsig.com; font-src
'self' data: https://cdnjs.cloudflare.com
https://js.intercomcdn.com; img-src 'self' data: blob: https:
https://platform.twitter.com https://syndication.twitter.com
https://pbs.twimg.com https://ton.twimg.com; style-src 'self'
'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://js.chilipiper.com
https://platform.twitter.com https://ton.twimg.com; frame-src
https: http:; media-src https: http:
X-WebKit-CSP:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://cdn.amplitude.com https://api.amplitude.com
https://hkfxbbdzib.notion.so https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://js.chilipiper.com
https://platform.twitter.com
https://cdn.syndication.twimg.com; connect-src 'self'
https://msgstore.www.notion.so wss://msgstore.www.notion.so
ws://localhost:* ws://127.0.0.1:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://cdn.amplitude.com
https://api.amplitude.com https://hkfxbbdzib.notion.so
https://api.embed.ly https://js.intercomcdn.com
https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://analytics.pgncs.notion.so https://api.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://cdn.contentful.com
https://preview.contentful.com https://images.ctfassets.net
https://www2.profitwell.com https://tracking.chilipiper.com
https://api.chilipiper.com https://api.unsplash.com
https://boards-api.greenhouse.io https://api.statuspage.io
https://pgncd.notion.so https://api.statsig.com; font-src
'self' data: https://cdnjs.cloudflare.com
https://js.intercomcdn.com; img-src 'self' data: blob: https:
https://platform.twitter.com https://syndication.twitter.com
https://pbs.twimg.com https://ton.twimg.com; style-src 'self'
'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://js.chilipiper.com
https://platform.twitter.com https://ton.twimg.com; frame-src
https: http:; media-src https: http:
ETag:
schema:
type: string
example: W/"325-KCHYnqvQMvtdpRRceV9twM7idU8"
Vary:
schema:
type: string
example: Accept-Encoding
CF-Cache-Status:
schema:
type: string
example: DYNAMIC
Expect-CT:
schema:
type: string
example: >-
max-age=604800,
report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
Server:
schema:
type: string
example: cloudflare
CF-RAY:
schema:
type: string
example: 6e57b658a8f97fb2-IAD
Content-Encoding:
schema:
type: string
example: gzip
content:
application/json:
schema:
type: object
example:
object: page
id: c4d39556-6364-46a1-8a61-ebbb668f7445
created_time: '2021-04-27T20:38:00.000Z'
last_edited_time: '2022-03-02T05:22:00.000Z'
created_by:
object: user
id: 6794760a-1f15-45cd-9c65-0dfe42f5135a
last_edited_by:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
cover: null
icon:
type: emoji
emoji: 📕
parent:
type: page_id
page_id: c1218692-102d-4b47-ab38-c21900b3557b
archived: false
properties:
title:
id: title
type: title
title:
- type: text
text:
content: Reading List
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: Reading List
href: null
url: >-
https://www.notion.so/Reading-List-c4d39556636446a18a61ebbb668f7445
patch:
tags:
- Pages
summary: Archive a page
requestBody:
content:
application/json:
schema:
type: object
example:
archived: true
parameters:
- name: Notion-Version
in: header
schema:
type: string
example: '{{NOTION_VERSION}}'
- name: id
in: path
schema:
type: string
required: true
example: '{{PAGE_ID}}'
responses:
'200':
description: OK
headers:
Date:
schema:
type: string
example: Thu, 24 Feb 2022 22:15:15 GMT
Content-Type:
schema:
type: string
example: application/json; charset=utf-8
Transfer-Encoding:
schema:
type: string
example: chunked
Connection:
schema:
type: string
example: keep-alive
Set-Cookie:
schema:
type: string
example: >-
notion_check_cookie_consent=false; Domain=www.notion.so;
Path=/; Expires=Fri, 25 Feb 2022 22:15:15 GMT; Secure
X-DNS-Prefetch-Control:
schema:
type: string
example: 'off'
X-Frame-Options:
schema:
type: string
example: SAMEORIGIN
Strict-Transport-Security:
schema:
type: string
example: max-age=5184000; includeSubDomains
X-Download-Options:
schema:
type: string
example: noopen
X-Content-Type-Options:
schema:
type: string
example: nosniff
X-XSS-Protection:
schema:
type: string
example: 1; mode=block
Referrer-Policy:
schema:
type: string
example: same-origin
Content-Security-Policy:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://cdn.amplitude.com https://api.amplitude.com
https://hkfxbbdzib.notion.so https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://js.chilipiper.com
https://platform.twitter.com
https://cdn.syndication.twimg.com; connect-src 'self'
https://msgstore.www.notion.so wss://msgstore.www.notion.so
ws://localhost:* ws://127.0.0.1:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://cdn.amplitude.com
https://api.amplitude.com https://hkfxbbdzib.notion.so
https://api.embed.ly https://js.intercomcdn.com
https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://analytics.pgncs.notion.so https://api.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://cdn.contentful.com
https://preview.contentful.com https://images.ctfassets.net
https://www2.profitwell.com https://tracking.chilipiper.com
https://api.chilipiper.com https://api.unsplash.com
https://boards-api.greenhouse.io https://api.statuspage.io
https://pgncd.notion.so https://api.statsig.com; font-src
'self' data: https://cdnjs.cloudflare.com
https://js.intercomcdn.com; img-src 'self' data: blob: https:
https://platform.twitter.com https://syndication.twitter.com
https://pbs.twimg.com https://ton.twimg.com; style-src 'self'
'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://js.chilipiper.com
https://platform.twitter.com https://ton.twimg.com; frame-src
https: http:; media-src https: http:
X-Content-Security-Policy:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://cdn.amplitude.com https://api.amplitude.com
https://hkfxbbdzib.notion.so https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://js.chilipiper.com
https://platform.twitter.com
https://cdn.syndication.twimg.com; connect-src 'self'
https://msgstore.www.notion.so wss://msgstore.www.notion.so
ws://localhost:* ws://127.0.0.1:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://cdn.amplitude.com
https://api.amplitude.com https://hkfxbbdzib.notion.so
https://api.embed.ly https://js.intercomcdn.com
https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://analytics.pgncs.notion.so https://api.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://cdn.contentful.com
https://preview.contentful.com https://images.ctfassets.net
https://www2.profitwell.com https://tracking.chilipiper.com
https://api.chilipiper.com https://api.unsplash.com
https://boards-api.greenhouse.io https://api.statuspage.io
https://pgncd.notion.so https://api.statsig.com; font-src
'self' data: https://cdnjs.cloudflare.com
https://js.intercomcdn.com; img-src 'self' data: blob: https:
https://platform.twitter.com https://syndication.twitter.com
https://pbs.twimg.com https://ton.twimg.com; style-src 'self'
'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://js.chilipiper.com
https://platform.twitter.com https://ton.twimg.com; frame-src
https: http:; media-src https: http:
X-WebKit-CSP:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://cdn.amplitude.com https://api.amplitude.com
https://hkfxbbdzib.notion.so https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://js.chilipiper.com
https://platform.twitter.com
https://cdn.syndication.twimg.com; connect-src 'self'
https://msgstore.www.notion.so wss://msgstore.www.notion.so
ws://localhost:* ws://127.0.0.1:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://cdn.amplitude.com
https://api.amplitude.com https://hkfxbbdzib.notion.so
https://api.embed.ly https://js.intercomcdn.com
https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://analytics.pgncs.notion.so https://api.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://cdn.contentful.com
https://preview.contentful.com https://images.ctfassets.net
https://www2.profitwell.com https://tracking.chilipiper.com
https://api.chilipiper.com https://api.unsplash.com
https://boards-api.greenhouse.io https://api.statuspage.io
https://pgncd.notion.so https://api.statsig.com; font-src
'self' data: https://cdnjs.cloudflare.com
https://js.intercomcdn.com; img-src 'self' data: blob: https:
https://platform.twitter.com https://syndication.twitter.com
https://pbs.twimg.com https://ton.twimg.com; style-src 'self'
'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://js.chilipiper.com
https://platform.twitter.com https://ton.twimg.com; frame-src
https: http:; media-src https: http:
ETag:
schema:
type: string
example: W/"183-KR1/QI68/l2Jn+MwQsjthIPU2oM"
Vary:
schema:
type: string
example: Accept-Encoding
CF-Cache-Status:
schema:
type: string
example: DYNAMIC
Expect-CT:
schema:
type: string
example: >-
max-age=604800,
report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
Server:
schema:
type: string
example: cloudflare
CF-RAY:
schema:
type: string
example: 6e2c0d2f4884255c-SJC
Content-Encoding:
schema:
type: string
example: gzip
content:
application/json:
schema:
type: object
example:
object: block
id: 2646ac0d-df90-4bab-bb4e-75e3cb972ed1
created_time: '2022-02-24T22:14:00.000Z'
last_edited_time: '2022-02-24T22:15:00.000Z'
created_by:
object: user
id: 6794760a-1f15-45cd-9c65-0dfe42f5135a
last_edited_by:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
has_children: false
archived: true
type: child_page
child_page:
title: ''
/v1/pages/{page_id}/properties/{property_id}:
get:
tags:
- Pages
summary: Retrieve a page property item
parameters:
- name: Notion-Version
in: header
schema:
type: string
example: '{{NOTION_VERSION}}'
- name: page_id
in: path
schema:
type: string
required: true
example: '{{PAGE_ID}}'
- name: property_id
in: path
schema:
type: string
required: true
responses:
'200':
description: OK
headers:
Date:
schema:
type: string
example: Wed, 02 Mar 2022 05:31:24 GMT
Content-Type:
schema:
type: string
example: application/json; charset=utf-8
Transfer-Encoding:
schema:
type: string
example: chunked
Connection:
schema:
type: string
example: keep-alive
Set-Cookie:
schema:
type: string
example: >-
notion_check_cookie_consent=false; Domain=www.notion.so;
Path=/; Expires=Thu, 03 Mar 2022 05:31:24 GMT; Secure
X-DNS-Prefetch-Control:
schema:
type: string
example: 'off'
X-Frame-Options:
schema:
type: string
example: SAMEORIGIN
Strict-Transport-Security:
schema:
type: string
example: max-age=5184000; includeSubDomains
X-Download-Options:
schema:
type: string
example: noopen
X-Content-Type-Options:
schema:
type: string
example: nosniff
X-XSS-Protection:
schema:
type: string
example: 1; mode=block
Referrer-Policy:
schema:
type: string
example: same-origin
Content-Security-Policy:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://cdn.amplitude.com https://api.amplitude.com
https://hkfxbbdzib.notion.so https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://js.chilipiper.com
https://platform.twitter.com
https://cdn.syndication.twimg.com; connect-src 'self'
https://msgstore.www.notion.so wss://msgstore.www.notion.so
ws://localhost:* ws://127.0.0.1:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://cdn.amplitude.com
https://api.amplitude.com https://hkfxbbdzib.notion.so
https://api.embed.ly https://js.intercomcdn.com
https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://analytics.pgncs.notion.so https://api.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://cdn.contentful.com
https://preview.contentful.com https://images.ctfassets.net
https://www2.profitwell.com https://tracking.chilipiper.com
https://api.chilipiper.com https://api.unsplash.com
https://boards-api.greenhouse.io https://api.statuspage.io
https://pgncd.notion.so https://api.statsig.com; font-src
'self' data: https://cdnjs.cloudflare.com
https://js.intercomcdn.com; img-src 'self' data: blob: https:
https://platform.twitter.com https://syndication.twitter.com
https://pbs.twimg.com https://ton.twimg.com; style-src 'self'
'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://js.chilipiper.com
https://platform.twitter.com https://ton.twimg.com; frame-src
https: http:; media-src https: http:
X-Content-Security-Policy:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://cdn.amplitude.com https://api.amplitude.com
https://hkfxbbdzib.notion.so https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://js.chilipiper.com
https://platform.twitter.com
https://cdn.syndication.twimg.com; connect-src 'self'
https://msgstore.www.notion.so wss://msgstore.www.notion.so
ws://localhost:* ws://127.0.0.1:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://cdn.amplitude.com
https://api.amplitude.com https://hkfxbbdzib.notion.so
https://api.embed.ly https://js.intercomcdn.com
https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://analytics.pgncs.notion.so https://api.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://cdn.contentful.com
https://preview.contentful.com https://images.ctfassets.net
https://www2.profitwell.com https://tracking.chilipiper.com
https://api.chilipiper.com https://api.unsplash.com
https://boards-api.greenhouse.io https://api.statuspage.io
https://pgncd.notion.so https://api.statsig.com; font-src
'self' data: https://cdnjs.cloudflare.com
https://js.intercomcdn.com; img-src 'self' data: blob: https:
https://platform.twitter.com https://syndication.twitter.com
https://pbs.twimg.com https://ton.twimg.com; style-src 'self'
'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://js.chilipiper.com
https://platform.twitter.com https://ton.twimg.com; frame-src
https: http:; media-src https: http:
X-WebKit-CSP:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://cdn.amplitude.com https://api.amplitude.com
https://hkfxbbdzib.notion.so https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://js.chilipiper.com
https://platform.twitter.com
https://cdn.syndication.twimg.com; connect-src 'self'
https://msgstore.www.notion.so wss://msgstore.www.notion.so
ws://localhost:* ws://127.0.0.1:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://cdn.amplitude.com
https://api.amplitude.com https://hkfxbbdzib.notion.so
https://api.embed.ly https://js.intercomcdn.com
https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://analytics.pgncs.notion.so https://api.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://cdn.contentful.com
https://preview.contentful.com https://images.ctfassets.net
https://www2.profitwell.com https://tracking.chilipiper.com
https://api.chilipiper.com https://api.unsplash.com
https://boards-api.greenhouse.io https://api.statuspage.io
https://pgncd.notion.so https://api.statsig.com; font-src
'self' data: https://cdnjs.cloudflare.com
https://js.intercomcdn.com; img-src 'self' data: blob: https:
https://platform.twitter.com https://syndication.twitter.com
https://pbs.twimg.com https://ton.twimg.com; style-src 'self'
'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://js.chilipiper.com
https://platform.twitter.com https://ton.twimg.com; frame-src
https: http:; media-src https: http:
ETag:
schema:
type: string
example: W/"9b-jhhW07EAsEXZSfnBY3CcGFH2Moo"
Vary:
schema:
type: string
example: Accept-Encoding
CF-Cache-Status:
schema:
type: string
example: DYNAMIC
Expect-CT:
schema:
type: string
example: >-
max-age=604800,
report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
Server:
schema:
type: string
example: cloudflare
CF-RAY:
schema:
type: string
example: 6e57bef43f860627-IAD
Content-Encoding:
schema:
type: string
example: gzip
content:
application/json:
schema:
type: object
example:
object: property_item
type: select
select:
id: 5c944de7-3f4b-4567-b3a1-fa2c71c540b6
name: ⭐️⭐️⭐️⭐️⭐️
color: default
/v1/blocks/{id}/children:
get:
tags:
- Blocks
summary: Retrieve block children
parameters:
- name: Notion-Version
in: header
schema:
type: string
example: '{{NOTION_VERSION}}'
- name: page_size
in: query
schema:
type: integer
example: '100'
- name: id
in: path
schema:
type: string
required: true
example: '{{PAGE_ID}}'
responses:
'200':
description: OK
headers:
Date:
schema:
type: string
example: Wed, 28 Apr 2021 23:53:00 GMT
Content-Type:
schema:
type: string
example: application/json; charset=utf-8
Transfer-Encoding:
schema:
type: string
example: chunked
Connection:
schema:
type: string
example: keep-alive
X-DNS-Prefetch-Control:
schema:
type: string
example: 'off'
X-Frame-Options:
schema:
type: string
example: SAMEORIGIN
Strict-Transport-Security:
schema:
type: string
example: max-age=5184000; includeSubDomains
X-Download-Options:
schema:
type: string
example: noopen
X-Content-Type-Options:
schema:
type: string
example: nosniff
X-XSS-Protection:
schema:
type: string
example: 1; mode=block
Referrer-Policy:
schema:
type: string
example: same-origin
Content-Security-Policy:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://api.amplitude.com https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://checkout.stripe.com https://js.stripe.com/v3
https://embed.typeform.com https://admin.typeform.com
https://platform.twitter.com https://cdn.syndication.twimg.com
https://www.googletagmanager.com https://x.clearbitjs.com;
connect-src 'self' https://msgstore.www.notion.so
wss://msgstore.www.notion.so ws://localhost:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://api.amplitude.com https://api.embed.ly
https://js.intercomcdn.com https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://api.segment.io https://api.pgncs.notion.so
https://checkout.stripe.com https://js.stripe.com/v3
https://cdn.contentful.com https://preview.contentful.com
https://images.ctfassets.net https://api.unsplash.com
https://boards-api.greenhouse.io; font-src 'self' data:
https://cdnjs.cloudflare.com https://js.intercomcdn.com;
img-src 'self' data: blob: https: https://platform.twitter.com
https://syndication.twitter.com https://pbs.twimg.com
https://ton.twimg.com www.googletagmanager.com; style-src
'self' 'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://platform.twitter.com
https://ton.twimg.com; frame-src https: http:; media-src
https: http:
X-Content-Security-Policy:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://api.amplitude.com https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://checkout.stripe.com https://js.stripe.com/v3
https://embed.typeform.com https://admin.typeform.com
https://platform.twitter.com https://cdn.syndication.twimg.com
https://www.googletagmanager.com https://x.clearbitjs.com;
connect-src 'self' https://msgstore.www.notion.so
wss://msgstore.www.notion.so ws://localhost:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://api.amplitude.com https://api.embed.ly
https://js.intercomcdn.com https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://api.segment.io https://api.pgncs.notion.so
https://checkout.stripe.com https://js.stripe.com/v3
https://cdn.contentful.com https://preview.contentful.com
https://images.ctfassets.net https://api.unsplash.com
https://boards-api.greenhouse.io; font-src 'self' data:
https://cdnjs.cloudflare.com https://js.intercomcdn.com;
img-src 'self' data: blob: https: https://platform.twitter.com
https://syndication.twitter.com https://pbs.twimg.com
https://ton.twimg.com www.googletagmanager.com; style-src
'self' 'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://platform.twitter.com
https://ton.twimg.com; frame-src https: http:; media-src
https: http:
X-WebKit-CSP:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://api.amplitude.com https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://checkout.stripe.com https://js.stripe.com/v3
https://embed.typeform.com https://admin.typeform.com
https://platform.twitter.com https://cdn.syndication.twimg.com
https://www.googletagmanager.com https://x.clearbitjs.com;
connect-src 'self' https://msgstore.www.notion.so
wss://msgstore.www.notion.so ws://localhost:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://api.amplitude.com https://api.embed.ly
https://js.intercomcdn.com https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://api.segment.io https://api.pgncs.notion.so
https://checkout.stripe.com https://js.stripe.com/v3
https://cdn.contentful.com https://preview.contentful.com
https://images.ctfassets.net https://api.unsplash.com
https://boards-api.greenhouse.io; font-src 'self' data:
https://cdnjs.cloudflare.com https://js.intercomcdn.com;
img-src 'self' data: blob: https: https://platform.twitter.com
https://syndication.twitter.com https://pbs.twimg.com
https://ton.twimg.com www.googletagmanager.com; style-src
'self' 'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://platform.twitter.com
https://ton.twimg.com; frame-src https: http:; media-src
https: http:
Set-Cookie:
schema:
type: string
example: >-
notion_browser_id=a1b1f1dd-7731-4a2b-b968-10b475e3b526;
Domain=www.notion.so; Path=/; Expires=Sun, 05 Jan 2053
01:39:40 GMT; Secure
ETag:
schema:
type: string
example: W/"65f3-d0AArGizyGsk597xfjWN7976xCc"
Vary:
schema:
type: string
example: Accept-Encoding
Content-Encoding:
schema:
type: string
example: gzip
CF-Cache-Status:
schema:
type: string
example: DYNAMIC
cf-request-id:
schema:
type: string
example: 09bc7f8a2a00006dc41a11e000000001
Expect-CT:
schema:
type: string
example: >-
max-age=604800,
report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
Server:
schema:
type: string
example: cloudflare
CF-RAY:
schema:
type: string
example: 647435237cce6dc4-SJC
content:
application/json:
schema:
type: object
example:
object: list
results:
- object: block
id: 48c1ffb5-2789-4025-937b-2c35eaaaab3f
created_time: '2021-04-27T20:38:19.437Z'
last_edited_time: '2021-04-27T20:38:19.437Z'
has_children: false
type: unsupported
unsupported: {}
- object: block
id: e381a0a3-4efb-4ba9-aa93-45b70fa9ce7f
created_time: '2021-04-27T20:38:19.437Z'
last_edited_time: '2021-04-27T20:38:19.437Z'
has_children: false
type: paragraph
paragraph:
text:
- type: text
text:
content: >-
I think we can all agree that Silicon Valley needs
more adult supervision right about now.
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: >-
I think we can all agree that Silicon Valley needs
more adult supervision right about now.
href: null
- object: block
id: ce5f79ac-8145-44ab-be3b-8ad143d6f8a7
created_time: '2021-04-27T20:38:19.437Z'
last_edited_time: '2021-04-27T20:38:19.437Z'
has_children: false
type: paragraph
paragraph:
text:
- type: text
text:
content: >-
Is the solution for its companies to hire a chief
ethics officer?
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: >-
Is the solution for its companies to hire a chief
ethics officer?
href: null
- object: block
id: 0387b374-7847-4ddc-bc53-6b0813ce4ed4
created_time: '2021-04-27T20:38:19.437Z'
last_edited_time: '2021-04-27T20:38:19.437Z'
has_children: false
type: paragraph
paragraph:
text:
- type: text
text:
content: >-
While some tech companies like Google have top
compliance officers and others turn to legal teams
to police themselves, no big tech companies that I
know of have yet taken this step. But a lot of
them seem to be talking about it, and I’ve
discussed the idea with several chief executives
recently. Why? Because slowly, then all at once,
it feels like too many digital leaders have lost
their minds.
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: >-
While some tech companies like Google have top
compliance officers and others turn to legal teams
to police themselves, no big tech companies that I
know of have yet taken this step. But a lot of them
seem to be talking about it, and I’ve discussed the
idea with several chief executives recently. Why?
Because slowly, then all at once, it feels like too
many digital leaders have lost their minds.
href: null
- object: block
id: da035311-5af3-48bc-8279-d28d9f4ef2e2
created_time: '2021-04-27T20:38:19.437Z'
last_edited_time: '2021-04-27T20:38:19.437Z'
has_children: false
type: paragraph
paragraph:
text:
- type: text
text:
content: >-
It’s probably no surprise, considering the complex
problems the tech industry faces. As one ethical
quandary after another has hit its profoundly
ill-prepared executives, their once-pristine
reputations have fallen like palm trees in a
hurricane. These last two weeks alone show how
tech is stumbling to react to big world issues
armed with only bubble world skills:
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: >-
It’s probably no surprise, considering the complex
problems the tech industry faces. As one ethical
quandary after another has hit its profoundly
ill-prepared executives, their once-pristine
reputations have fallen like palm trees in a
hurricane. These last two weeks alone show how tech
is stumbling to react to big world issues armed with
only bubble world skills:
href: null
- object: block
id: 63a60fca-4a11-43eb-8773-c5f0164a3117
created_time: '2021-04-27T20:38:19.437Z'
last_edited_time: '2021-04-27T20:38:19.437Z'
has_children: false
type: paragraph
paragraph:
text:
- type: text
text:
content: >-
As a journalist is beheaded and dismembered at the
direction of Saudi Arabian leaders (allegedly, but
the killers did bring a bone saw), Silicon Valley
is swimming in oceans of money from the kingdom’s
Public Investment Fund. Saudi funding includes
hundreds of millions for Magic Leap, and huge
investments in hot public companies like Tesla.
Most significantly: Saudis have invested about $45
billion in SoftBank’s giant Vision Fund, which has
in turn doused the tech landscape — $4.4 billion
to WeWork, $250 million to Slack, and $300 million
to the dog-walking app Wag. In total Uber has
gotten almost $14 billion, either through direct
investments from the Public Investment Fund or
through the Saudis’ funding of the Vision Fund. A
billion here, a billion there and it all adds up.
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: >-
As a journalist is beheaded and dismembered at the
direction of Saudi Arabian leaders (allegedly, but
the killers did bring a bone saw), Silicon Valley is
swimming in oceans of money from the kingdom’s
Public Investment Fund. Saudi funding includes
hundreds of millions for Magic Leap, and huge
investments in hot public companies like Tesla. Most
significantly: Saudis have invested about $45
billion in SoftBank’s giant Vision Fund, which has
in turn doused the tech landscape — $4.4 billion to
WeWork, $250 million to Slack, and $300 million to
the dog-walking app Wag. In total Uber has gotten
almost $14 billion, either through direct
investments from the Public Investment Fund or
through the Saudis’ funding of the Vision Fund. A
billion here, a billion there and it all adds up.
href: null
- object: block
id: 8c58c8f1-86ae-4a14-b6b9-74f5fa579620
created_time: '2021-04-27T20:38:19.437Z'
last_edited_time: '2021-04-27T20:38:19.437Z'
has_children: false
type: paragraph
paragraph:
text:
- type: text
text:
content: '['
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: '['
href: null
- type: text
text:
content: >-
Kara Swisher answered your questions about her
column
link: null
annotations:
bold: false
italic: true
strikethrough: false
underline: false
code: false
color: default
plain_text: >-
Kara Swisher answered your questions about her
column
href: null
- type: text
text:
content: on Twitter
link:
url: >-
https://twitter.com/karaswisher/status/1054842303922298880
annotations:
bold: false
italic: true
strikethrough: false
underline: false
code: false
color: default
plain_text: on Twitter
href: >-
https://twitter.com/karaswisher/status/1054842303922298880
- type: text
text:
content: .
link: null
annotations:
bold: false
italic: true
strikethrough: false
underline: false
code: false
color: default
plain_text: .
href: null
- type: text
text:
content: ']'
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: ']'
href: null
- object: block
id: 875d3aff-086b-45da-9ed1-bc3ddb185229
created_time: '2021-04-27T20:38:19.437Z'
last_edited_time: '2021-04-27T20:38:19.437Z'
has_children: false
type: paragraph
paragraph:
text:
- type: text
text:
content: >-
Facebook introduced a new home video device called
Portal, and promised that what could be seen as a
surveillance tool would not share data for the
sake of ad targeting. Soon after, as
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: >-
Facebook introduced a new home video device called
Portal, and promised that what could be seen as a
surveillance tool would not share data for the sake
of ad targeting. Soon after, as
href: null
- type: text
text:
content: reported by Recode
link:
url: >-
https://www.recode.net/2018/10/16/17966102/facebook-portal-ad-targeting-data-collection
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: reported by Recode
href: >-
https://www.recode.net/2018/10/16/17966102/facebook-portal-ad-targeting-data-collection
- type: text
text:
content: >-
, Facebook admitted that “data about who you call
and data about which apps you use on Portal
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: >-
, Facebook admitted that “data about who you call
and data about which apps you use on Portal
href: null
- type: text
text:
content: can
link: null
annotations:
bold: false
italic: true
strikethrough: false
underline: false
code: false
color: default
plain_text: can
href: null
- type: text
text:
content: ' be used to target you with ads on other Facebook-owned properties.” Oh. Um. That’s awkward.'
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: ' be used to target you with ads on other Facebook-owned properties.” Oh. Um. That’s awkward.'
href: null
- object: block
id: 306ab0fb-6daa-4c5b-b1f7-f51a5f92b6ff
created_time: '2021-04-27T20:38:19.437Z'
last_edited_time: '2021-04-27T20:38:19.437Z'
has_children: false
type: paragraph
paragraph:
text:
- type: text
text:
content: >-
After agreeing to pay $20 million to the
Securities and Exchange Commission for an
ill-advised tweet about possible funding (from the
Saudis, by the way), the Tesla co-founder Elon
Musk proceeded to troll the regulatory agency on,
you got it, Twitter. And even though the
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: >-
After agreeing to pay $20 million to the Securities
and Exchange Commission for an ill-advised tweet
about possible funding (from the Saudis, by the
way), the Tesla co-founder Elon Musk proceeded to
troll the regulatory agency on, you got it, Twitter.
And even though the
href: null
- type: text
text:
content: >-
settlement called for some kind of control of his
communications
link:
url: https://www.sec.gov/news/press-release/2018-226
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: >-
settlement called for some kind of control of his
communications
href: https://www.sec.gov/news/press-release/2018-226
- type: text
text:
content: >-
, it appears that Mr. Musk will continue tweeting
until someone steals his phone.
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: >-
, it appears that Mr. Musk will continue tweeting
until someone steals his phone.
href: null
- object: block
id: 122b1457-4129-4513-abaa-7cce7d66e4a1
created_time: '2021-04-27T20:38:19.437Z'
last_edited_time: '2021-04-27T20:38:19.437Z'
has_children: false
type: paragraph
paragraph:
text:
- type: text
text:
content: >-
Finally, Google took six months to make public
that user data on its social network, Google
Plus,
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: >-
Finally, Google took six months to make public that
user data on its social network, Google Plus,
href: null
- type: text
text:
content: had been exposed
link:
url: >-
https://www.nytimes.com/2018/10/08/technology/google-plus-security-disclosure.html?module=inline
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: had been exposed
href: >-
https://www.nytimes.com/2018/10/08/technology/google-plus-security-disclosure.html?module=inline
- type: text
text:
content: ' and that profiles of up to 500,000 users may have been compromised. While the service failed long ago, because it was pretty much designed by antisocial people, this lack of concern for privacy was profound.'
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: ' and that profiles of up to 500,000 users may have been compromised. While the service failed long ago, because it was pretty much designed by antisocial people, this lack of concern for privacy was profound.'
href: null
- object: block
id: 4d4af599-556f-4d8b-af8e-4d01ebe2aa27
created_time: '2021-04-27T20:38:19.437Z'
last_edited_time: '2021-04-27T20:38:19.437Z'
has_children: false
type: paragraph
paragraph:
text:
- type: text
text:
content: >-
Grappling with what to say and do about the
disasters they themselves create is only the
beginning. Then there are the broader issues that
the denizens of Silicon Valley expect their
employers to have a stance on: immigration, income
inequality, artificial intelligence, automation,
transgender rights, climate change, privacy, data
rights and whether tech companies should be
helping the government do controversial things.
It’s an ethical swamp out there.
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: >-
Grappling with what to say and do about the
disasters they themselves create is only the
beginning. Then there are the broader issues that
the denizens of Silicon Valley expect their
employers to have a stance on: immigration, income
inequality, artificial intelligence, automation,
transgender rights, climate change, privacy, data
rights and whether tech companies should be helping
the government do controversial things. It’s an
ethical swamp out there.
href: null
- object: block
id: f5775df5-59eb-4533-a2cb-e150412ec4f6
created_time: '2021-04-27T20:38:19.437Z'
last_edited_time: '2021-04-27T20:38:19.437Z'
has_children: false
type: paragraph
paragraph:
text:
- type: text
text:
content: >-
That’s why, in a recent interview, Marc Benioff,
the co-chief executive and a founder of
Salesforce, told me he was in the process of
hiring a chief ethical officer to help anticipate
and address any thorny conundrums it might
encounter as a business — like the decision it had
to make a few months back about whether it should
stop providing recruitment software for Customs
and Border Protection because of the government’s
policy of separating immigrant families at the
border.
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: >-
That’s why, in a recent interview, Marc Benioff, the
co-chief executive and a founder of Salesforce, told
me he was in the process of hiring a chief ethical
officer to help anticipate and address any thorny
conundrums it might encounter as a business — like
the decision it had to make a few months back about
whether it should stop providing recruitment
software for Customs and Border Protection because
of the government’s policy of separating immigrant
families at the border.
href: null
- object: block
id: 31405c6e-7ece-4667-8c4d-36c9d79a0bfa
created_time: '2021-04-27T20:38:19.437Z'
last_edited_time: '2021-04-27T20:38:19.437Z'
has_children: false
type: paragraph
paragraph:
text:
- type: text
text:
content: >-
Amid much criticism, Mr. Benioff decided to keep
the contract, but said he would focus more on
social and political issues.
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: >-
Amid much criticism, Mr. Benioff decided to keep the
contract, but said he would focus more on social and
political issues.
href: null
- object: block
id: a2ab7e8a-d521-401d-89ae-9eb27efb9990
created_time: '2021-04-27T20:38:19.437Z'
last_edited_time: '2021-04-27T20:38:19.437Z'
has_children: false
type: paragraph
paragraph:
text:
- type: text
text:
content: >-
At a recent company event, he elaborated: “We can
have a structured conversation not just with our
own employees myopically, but by bringing in the
key advisers, supporters and pundits and
philosophers and everybody necessary to ask the
question if what we are doing today is ethical and
humane.”
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: >-
At a recent company event, he elaborated: “We can
have a structured conversation not just with our own
employees myopically, but by bringing in the key
advisers, supporters and pundits and philosophers
and everybody necessary to ask the question if what
we are doing today is ethical and humane.”
href: null
- object: block
id: a4498e1e-8b85-48d7-802a-db447ca7d1ac
created_time: '2021-04-27T20:38:19.437Z'
last_edited_time: '2021-04-27T20:38:19.437Z'
has_children: false
type: paragraph
paragraph:
text:
- type: text
text:
content: >-
23andMe has also toyed with the idea of hiring a
chief ethics officer. In an interview I did this
week with its chief executive, Anne Wojcicki, she
said the genetics company had even interviewed
candidates, but that many of them wanted to remain
in academia to be freer to ponder these issues.
She acknowledged that the collection of DNA data
is rife with ethical considerations, but said, “I
think it has to be our management and leaders who
have to add this to our skill set, rather than
just hire one person to determine this.”
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: >-
23andMe has also toyed with the idea of hiring a
chief ethics officer. In an interview I did this
week with its chief executive, Anne Wojcicki, she
said the genetics company had even interviewed
candidates, but that many of them wanted to remain
in academia to be freer to ponder these issues. She
acknowledged that the collection of DNA data is rife
with ethical considerations, but said, “I think it
has to be our management and leaders who have to add
this to our skill set, rather than just hire one
person to determine this.”
href: null
- object: block
id: cbf7e7e0-5552-4b3f-b09e-9dcca120931c
created_time: '2021-04-27T20:38:19.437Z'
last_edited_time: '2021-04-27T20:38:19.437Z'
has_children: false
type: paragraph
paragraph:
text:
- type: text
text:
content: >-
When asked about the idea of a single source of
wisdom on ethics, some point out that legal or
diversity/inclusion departments are designed for
that purpose and that the ethics should really
come from the top — the chief executive.
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: >-
When asked about the idea of a single source of
wisdom on ethics, some point out that legal or
diversity/inclusion departments are designed for
that purpose and that the ethics should really come
from the top — the chief executive.
href: null
- object: block
id: d24b2887-0f1f-4e91-99c1-c295bed8ad65
created_time: '2021-04-27T20:38:19.437Z'
last_edited_time: '2021-04-27T20:38:19.437Z'
has_children: false
type: paragraph
paragraph:
text:
- type: text
text:
content: >-
Also of concern is the possibility that a single
person would not get listened to or, worse, get
steamrollered. And, if the person was bad at the
job, of course, it could drag the whole thing
down.
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: >-
Also of concern is the possibility that a single
person would not get listened to or, worse, get
steamrollered. And, if the person was bad at the
job, of course, it could drag the whole thing down.
href: null
- object: block
id: 78c55f65-c8b8-4364-a369-c40699968e90
created_time: '2021-04-27T20:38:19.437Z'
last_edited_time: '2021-04-27T20:38:19.437Z'
has_children: false
type: paragraph
paragraph:
text:
- type: text
text:
content: >-
Others are more worried that the move would be
nothing but window dressing. One consultant who
focuses on ethics, but did not want to be named,
told me: “We haven’t even defined ethics, so what
even is ethical use, especially for Silicon Valley
companies that are babies in this game?”
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: >-
Others are more worried that the move would be
nothing but window dressing. One consultant who
focuses on ethics, but did not want to be named,
told me: “We haven’t even defined ethics, so what
even is ethical use, especially for Silicon Valley
companies that are babies in this game?”
href: null
- object: block
id: 0b492111-1586-4a73-8848-04f0c391aadc
created_time: '2021-04-27T20:38:19.437Z'
last_edited_time: '2021-04-27T20:38:19.437Z'
has_children: false
type: paragraph
paragraph:
text:
- type: text
text:
content: >-
How can an industry that, unlike other business
sectors, persistently promotes itself as doing
good, learn to do that in reality? Do you want to
not do harm, or do you want to do good? These are
two totally different things.
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: >-
How can an industry that, unlike other business
sectors, persistently promotes itself as doing good,
learn to do that in reality? Do you want to not do
harm, or do you want to do good? These are two
totally different things.
href: null
- object: block
id: 302f8229-2404-460b-8c3c-e7058b4365e5
created_time: '2021-04-27T20:38:19.437Z'
last_edited_time: '2021-04-27T20:38:19.437Z'
has_children: false
type: paragraph
paragraph:
text:
- type: text
text:
content: >-
And how do you put an official ethical system in
place without it seeming like you’re telling
everyone how to behave? Who gets to decide those
rules anyway, setting a moral path for the
industry and — considering tech companies’
enormous power — the world.
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: >-
And how do you put an official ethical system in
place without it seeming like you’re telling
everyone how to behave? Who gets to decide those
rules anyway, setting a moral path for the industry
and — considering tech companies’ enormous power —
the world.
href: null
- object: block
id: 8f9bc91c-5662-4b3f-a110-809f46b79f49
created_time: '2021-04-27T20:38:19.437Z'
last_edited_time: '2021-04-27T20:38:19.437Z'
has_children: false
type: paragraph
paragraph:
text:
- type: text
text:
content: >-
Like I said, adult supervision. Or maybe, better
still, Silicon Valley itself has to grow up.
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: >-
Like I said, adult supervision. Or maybe, better
still, Silicon Valley itself has to grow up.
href: null
- object: block
id: 7bea1831-a25c-4b3e-8c9b-b37de814f948
created_time: '2021-04-27T20:38:19.437Z'
last_edited_time: '2021-04-27T20:38:19.437Z'
has_children: false
type: paragraph
paragraph:
text:
- type: text
text:
content: 'Follow The New York Times Opinion section on '
link: null
annotations:
bold: false
italic: true
strikethrough: false
underline: false
code: false
color: default
plain_text: 'Follow The New York Times Opinion section on '
href: null
- type: text
text:
content: Facebook
link:
url: https://www.facebook.com/nytopinion
annotations:
bold: false
italic: true
strikethrough: false
underline: false
code: false
color: default
plain_text: Facebook
href: https://www.facebook.com/nytopinion
- type: text
text:
content: ', '
link: null
annotations:
bold: false
italic: true
strikethrough: false
underline: false
code: false
color: default
plain_text: ', '
href: null
- type: text
text:
content: Twitter (@NYTopinion)
link:
url: http://twitter.com/NYTOpinion
annotations:
bold: false
italic: true
strikethrough: false
underline: false
code: false
color: default
plain_text: Twitter (@NYTopinion)
href: http://twitter.com/NYTOpinion
- type: text
text:
content: ' and '
link: null
annotations:
bold: false
italic: true
strikethrough: false
underline: false
code: false
color: default
plain_text: ' and '
href: null
- type: text
text:
content: Instagram
link:
url: https://www.instagram.com/nytopinion/
annotations:
bold: false
italic: true
strikethrough: false
underline: false
code: false
color: default
plain_text: Instagram
href: https://www.instagram.com/nytopinion/
- type: text
text:
content: ', and sign up for the '
link: null
annotations:
bold: false
italic: true
strikethrough: false
underline: false
code: false
color: default
plain_text: ', and sign up for the '
href: null
- type: text
text:
content: Opinion Today newsletter
link:
url: http://www.nytimes.com/newsletters/opiniontoday/
annotations:
bold: false
italic: true
strikethrough: false
underline: false
code: false
color: default
plain_text: Opinion Today newsletter
href: http://www.nytimes.com/newsletters/opiniontoday/
- type: text
text:
content: .
link: null
annotations:
bold: false
italic: true
strikethrough: false
underline: false
code: false
color: default
plain_text: .
href: null
next_cursor: null
has_more: false
patch:
tags:
- Blocks
summary: Append block children
requestBody:
content:
'*/*':
schema:
type: string
example: >-
"{\n\t\"children\": [\n\t\t{\n\t\t\t\"object\":
\"block\",\n\t\t\t\"type\": \"heading_2\",\n\t\t\t\"heading_2\":
{\n\t\t\t\t\"rich_text\": [{ \"type\": \"text\", \"text\": {
\"content\": \"Lacinato kale\" }
}]\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"object\":
\"block\",\n\t\t\t\"type\": \"paragraph\",\n\t\t\t\"paragraph\":
{\n\t\t\t\t\"rich_text\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"type\":
\"text\",\n\t\t\t\t\t\t\"text\": {\n\t\t\t\t\t\t\t\"content\":
\"Lacinato kale is a variety of kale with a long tradition in
Italian cuisine, especially that of Tuscany. It is also known as
Tuscan kale, Italian kale, dinosaur kale, kale, flat back kale,
palm tree kale, or black Tuscan
palm.\",\n\t\t\t\t\t\t\t\"link\": { \"url\":
\"https://en.wikipedia.org/wiki/Lacinato_kale\"
}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t}\n\t\t}\n\t]\n}"
parameters:
- name: Authorization
in: header
schema:
type: string
example: Bearer secret_t1CdN9S8yicG5eWLUOfhcWaOscVnFXns
- name: Content-Type
in: header
schema:
type: string
example: application/json
- name: Notion-Version
in: header
schema:
type: string
example: '{{NOTION_VERSION}}'
- name: id
in: path
schema:
type: string
required: true
example: '{{PAGE_ID}}'
responses:
'200':
description: OK
headers:
Date:
schema:
type: string
example: Wed, 12 May 2021 06:07:37 GMT
Content-Type:
schema:
type: string
example: application/json; charset=utf-8
Transfer-Encoding:
schema:
type: string
example: chunked
Connection:
schema:
type: string
example: keep-alive
X-DNS-Prefetch-Control:
schema:
type: string
example: 'off'
X-Frame-Options:
schema:
type: string
example: SAMEORIGIN
Strict-Transport-Security:
schema:
type: string
example: max-age=5184000; includeSubDomains
X-Download-Options:
schema:
type: string
example: noopen
X-Content-Type-Options:
schema:
type: string
example: nosniff
X-XSS-Protection:
schema:
type: string
example: 1; mode=block
Referrer-Policy:
schema:
type: string
example: same-origin
Content-Security-Policy:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://api.amplitude.com https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://checkout.stripe.com https://js.stripe.com
https://embed.typeform.com https://admin.typeform.com
https://public.profitwell.com js.sentry-cdn.com
https://platform.twitter.com https://cdn.syndication.twimg.com
https://www.googletagmanager.com https://x.clearbitjs.com;
connect-src 'self' https://msgstore.www.notion.so
wss://msgstore.www.notion.so ws://localhost:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://api.amplitude.com https://api.embed.ly
https://js.intercomcdn.com https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://api.segment.io https://api.pgncs.notion.so
https://checkout.stripe.com https://js.stripe.com
https://cdn.contentful.com https://preview.contentful.com
https://images.ctfassets.net https://www2.profitwell.com
https://api.unsplash.com https://boards-api.greenhouse.io;
font-src 'self' data: https://cdnjs.cloudflare.com
https://js.intercomcdn.com; img-src 'self' data: blob: https:
https://platform.twitter.com https://syndication.twitter.com
https://pbs.twimg.com https://ton.twimg.com
www.googletagmanager.com; style-src 'self' 'unsafe-inline'
https://cdnjs.cloudflare.com https://github.githubassets.com
https://platform.twitter.com https://ton.twimg.com; frame-src
https: http:; media-src https: http:
X-Content-Security-Policy:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://api.amplitude.com https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://checkout.stripe.com https://js.stripe.com
https://embed.typeform.com https://admin.typeform.com
https://public.profitwell.com js.sentry-cdn.com
https://platform.twitter.com https://cdn.syndication.twimg.com
https://www.googletagmanager.com https://x.clearbitjs.com;
connect-src 'self' https://msgstore.www.notion.so
wss://msgstore.www.notion.so ws://localhost:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://api.amplitude.com https://api.embed.ly
https://js.intercomcdn.com https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://api.segment.io https://api.pgncs.notion.so
https://checkout.stripe.com https://js.stripe.com
https://cdn.contentful.com https://preview.contentful.com
https://images.ctfassets.net https://www2.profitwell.com
https://api.unsplash.com https://boards-api.greenhouse.io;
font-src 'self' data: https://cdnjs.cloudflare.com
https://js.intercomcdn.com; img-src 'self' data: blob: https:
https://platform.twitter.com https://syndication.twitter.com
https://pbs.twimg.com https://ton.twimg.com
www.googletagmanager.com; style-src 'self' 'unsafe-inline'
https://cdnjs.cloudflare.com https://github.githubassets.com
https://platform.twitter.com https://ton.twimg.com; frame-src
https: http:; media-src https: http:
X-WebKit-CSP:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://api.amplitude.com https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://checkout.stripe.com https://js.stripe.com
https://embed.typeform.com https://admin.typeform.com
https://public.profitwell.com js.sentry-cdn.com
https://platform.twitter.com https://cdn.syndication.twimg.com
https://www.googletagmanager.com https://x.clearbitjs.com;
connect-src 'self' https://msgstore.www.notion.so
wss://msgstore.www.notion.so ws://localhost:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://api.amplitude.com https://api.embed.ly
https://js.intercomcdn.com https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://api.segment.io https://api.pgncs.notion.so
https://checkout.stripe.com https://js.stripe.com
https://cdn.contentful.com https://preview.contentful.com
https://images.ctfassets.net https://www2.profitwell.com
https://api.unsplash.com https://boards-api.greenhouse.io;
font-src 'self' data: https://cdnjs.cloudflare.com
https://js.intercomcdn.com; img-src 'self' data: blob: https:
https://platform.twitter.com https://syndication.twitter.com
https://pbs.twimg.com https://ton.twimg.com
www.googletagmanager.com; style-src 'self' 'unsafe-inline'
https://cdnjs.cloudflare.com https://github.githubassets.com
https://platform.twitter.com https://ton.twimg.com; frame-src
https: http:; media-src https: http:
Set-Cookie:
schema:
type: string
example: >-
notion_browser_id=0724819e-ad9a-4b7f-b50e-e5c75d6763dd;
Domain=www.notion.so; Path=/; Expires=Sat, 18 Jan 2053
07:54:17 GMT; Secure
ETag:
schema:
type: string
example: W/"105-p1Ka6kLp+wkCMX+oZhcjZAtwEtc"
Vary:
schema:
type: string
example: Accept-Encoding
CF-Cache-Status:
schema:
type: string
example: DYNAMIC
cf-request-id:
schema:
type: string
example: 0a00c92e8d00000231bf82c000000001
Expect-CT:
schema:
type: string
example: >-
max-age=604800,
report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
Server:
schema:
type: string
example: cloudflare
CF-RAY:
schema:
type: string
example: 64e177c41a820231-SJC
Content-Encoding:
schema:
type: string
example: gzip
content:
application/json:
schema:
type: object
example:
object: block
id: a1712d54-53e4-4893-a69d-4d581cd2c845
created_time: '2021-04-27T20:38:19.437Z'
last_edited_time: '2021-05-12T06:07:37.724Z'
has_children: true
type: child_page
child_page:
title: 'Who Will Teach Silicon Valley to Be Ethical? '
/v1/blocks/{id}:
patch:
tags:
- Blocks
summary: Update a block
description: >-
This endpoint allows you to update block content. [See Full
Documentation](https://developers.notion.com/reference/update-a-block)
requestBody:
content:
application/json:
schema:
type: object
example:
paragraph:
rich_text:
- type: text
text:
content: hello to you
parameters:
- name: Notion-Version
in: header
schema:
type: string
example: '{{NOTION_VERSION}}'
- name: id
in: path
schema:
type: string
required: true
example: '{{BLOCK_ID}}'
responses:
'200':
description: OK
headers:
Date:
schema:
type: string
example: Thu, 12 Aug 2021 00:12:49 GMT
Content-Type:
schema:
type: string
example: application/json; charset=utf-8
Transfer-Encoding:
schema:
type: string
example: chunked
Connection:
schema:
type: string
example: keep-alive
X-DNS-Prefetch-Control:
schema:
type: string
example: 'off'
X-Frame-Options:
schema:
type: string
example: SAMEORIGIN
Strict-Transport-Security:
schema:
type: string
example: max-age=5184000; includeSubDomains
X-Download-Options:
schema:
type: string
example: noopen
X-Content-Type-Options:
schema:
type: string
example: nosniff
X-XSS-Protection:
schema:
type: string
example: 1; mode=block
Referrer-Policy:
schema:
type: string
example: same-origin
Content-Security-Policy:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://api.amplitude.com https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://platform.twitter.com
https://cdn.syndication.twimg.com
https://www.googletagmanager.com https://x.clearbitjs.com
https://client-registry.mutinycdn.com
https://client.mutinycdn.com/ https://user-data.mutinycdn.com;
connect-src 'self' https://msgstore.www.notion.so
wss://msgstore.www.notion.so ws://localhost:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://api.amplitude.com https://api.embed.ly
https://js.intercomcdn.com https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://api.pgncs.notion.so https://o324374.ingest.sentry.io
https://checkout.stripe.com https://js.stripe.com
https://cdn.contentful.com https://preview.contentful.com
https://images.ctfassets.net https://www2.profitwell.com
https://api.unsplash.com https://boards-api.greenhouse.io
https://user-data.mutinycdn.com https://api-v2.mutinyhq.io
https://api.statuspage.io; font-src 'self' data:
https://cdnjs.cloudflare.com https://js.intercomcdn.com;
img-src 'self' data: blob: https: https://platform.twitter.com
https://syndication.twitter.com https://pbs.twimg.com
https://ton.twimg.com www.googletagmanager.com; style-src
'self' 'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://platform.twitter.com
https://ton.twimg.com; frame-src https: http:; media-src
https: http:
X-Content-Security-Policy:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://api.amplitude.com https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://platform.twitter.com
https://cdn.syndication.twimg.com
https://www.googletagmanager.com https://x.clearbitjs.com
https://client-registry.mutinycdn.com
https://client.mutinycdn.com/ https://user-data.mutinycdn.com;
connect-src 'self' https://msgstore.www.notion.so
wss://msgstore.www.notion.so ws://localhost:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://api.amplitude.com https://api.embed.ly
https://js.intercomcdn.com https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://api.pgncs.notion.so https://o324374.ingest.sentry.io
https://checkout.stripe.com https://js.stripe.com
https://cdn.contentful.com https://preview.contentful.com
https://images.ctfassets.net https://www2.profitwell.com
https://api.unsplash.com https://boards-api.greenhouse.io
https://user-data.mutinycdn.com https://api-v2.mutinyhq.io
https://api.statuspage.io; font-src 'self' data:
https://cdnjs.cloudflare.com https://js.intercomcdn.com;
img-src 'self' data: blob: https: https://platform.twitter.com
https://syndication.twitter.com https://pbs.twimg.com
https://ton.twimg.com www.googletagmanager.com; style-src
'self' 'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://platform.twitter.com
https://ton.twimg.com; frame-src https: http:; media-src
https: http:
X-WebKit-CSP:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://api.amplitude.com https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://platform.twitter.com
https://cdn.syndication.twimg.com
https://www.googletagmanager.com https://x.clearbitjs.com
https://client-registry.mutinycdn.com
https://client.mutinycdn.com/ https://user-data.mutinycdn.com;
connect-src 'self' https://msgstore.www.notion.so
wss://msgstore.www.notion.so ws://localhost:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://api.amplitude.com https://api.embed.ly
https://js.intercomcdn.com https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://api.pgncs.notion.so https://o324374.ingest.sentry.io
https://checkout.stripe.com https://js.stripe.com
https://cdn.contentful.com https://preview.contentful.com
https://images.ctfassets.net https://www2.profitwell.com
https://api.unsplash.com https://boards-api.greenhouse.io
https://user-data.mutinycdn.com https://api-v2.mutinyhq.io
https://api.statuspage.io; font-src 'self' data:
https://cdnjs.cloudflare.com https://js.intercomcdn.com;
img-src 'self' data: blob: https: https://platform.twitter.com
https://syndication.twitter.com https://pbs.twimg.com
https://ton.twimg.com www.googletagmanager.com; style-src
'self' 'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://platform.twitter.com
https://ton.twimg.com; frame-src https: http:; media-src
https: http:
Set-Cookie:
schema:
type: string
example: >-
notion_browser_id=72dd4057-624e-4aa3-80c6-ab911ed059b7;
Domain=www.notion.so; Path=/; Expires=Sun, 20 Apr 2053
01:59:29 GMT; Secure
ETag:
schema:
type: string
example: W/"1ae-RFHXdRIvpQZuh0kRKb9XuWbFwzo"
Vary:
schema:
type: string
example: Accept-Encoding
CF-Cache-Status:
schema:
type: string
example: DYNAMIC
Expect-CT:
schema:
type: string
example: >-
max-age=604800,
report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
Server:
schema:
type: string
example: cloudflare
CF-RAY:
schema:
type: string
example: 67d57e86ea672544-SJC
Content-Encoding:
schema:
type: string
example: gzip
content:
application/json:
schema:
type: object
example:
object: block
id: 4868767d-9029-4b9d-a41b-652ef4c9c7b9
created_time: '2021-08-06T17:46:00.000Z'
last_edited_time: '2021-08-12T00:12:00.000Z'
has_children: false
type: paragraph
paragraph:
text:
- type: text
text:
content: hello to you
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: hello to you
href: null
get:
tags:
- Blocks
summary: Retrieve a block
parameters:
- name: Notion-Version
in: header
schema:
type: string
example: '{{NOTION_VERSION}}'
- name: id
in: path
schema:
type: string
required: true
example: '{{BLOCK_ID}}'
responses:
'200':
description: OK
headers:
Date:
schema:
type: string
example: Thu, 12 Aug 2021 00:14:42 GMT
Content-Type:
schema:
type: string
example: application/json; charset=utf-8
Transfer-Encoding:
schema:
type: string
example: chunked
Connection:
schema:
type: string
example: keep-alive
X-DNS-Prefetch-Control:
schema:
type: string
example: 'off'
X-Frame-Options:
schema:
type: string
example: SAMEORIGIN
Strict-Transport-Security:
schema:
type: string
example: max-age=5184000; includeSubDomains
X-Download-Options:
schema:
type: string
example: noopen
X-Content-Type-Options:
schema:
type: string
example: nosniff
X-XSS-Protection:
schema:
type: string
example: 1; mode=block
Referrer-Policy:
schema:
type: string
example: same-origin
Content-Security-Policy:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://api.amplitude.com https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://platform.twitter.com
https://cdn.syndication.twimg.com
https://www.googletagmanager.com https://x.clearbitjs.com
https://client-registry.mutinycdn.com
https://client.mutinycdn.com/ https://user-data.mutinycdn.com;
connect-src 'self' https://msgstore.www.notion.so
wss://msgstore.www.notion.so ws://localhost:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://api.amplitude.com https://api.embed.ly
https://js.intercomcdn.com https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://api.pgncs.notion.so https://o324374.ingest.sentry.io
https://checkout.stripe.com https://js.stripe.com
https://cdn.contentful.com https://preview.contentful.com
https://images.ctfassets.net https://www2.profitwell.com
https://api.unsplash.com https://boards-api.greenhouse.io
https://user-data.mutinycdn.com https://api-v2.mutinyhq.io
https://api.statuspage.io; font-src 'self' data:
https://cdnjs.cloudflare.com https://js.intercomcdn.com;
img-src 'self' data: blob: https: https://platform.twitter.com
https://syndication.twitter.com https://pbs.twimg.com
https://ton.twimg.com www.googletagmanager.com; style-src
'self' 'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://platform.twitter.com
https://ton.twimg.com; frame-src https: http:; media-src
https: http:
X-Content-Security-Policy:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://api.amplitude.com https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://platform.twitter.com
https://cdn.syndication.twimg.com
https://www.googletagmanager.com https://x.clearbitjs.com
https://client-registry.mutinycdn.com
https://client.mutinycdn.com/ https://user-data.mutinycdn.com;
connect-src 'self' https://msgstore.www.notion.so
wss://msgstore.www.notion.so ws://localhost:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://api.amplitude.com https://api.embed.ly
https://js.intercomcdn.com https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://api.pgncs.notion.so https://o324374.ingest.sentry.io
https://checkout.stripe.com https://js.stripe.com
https://cdn.contentful.com https://preview.contentful.com
https://images.ctfassets.net https://www2.profitwell.com
https://api.unsplash.com https://boards-api.greenhouse.io
https://user-data.mutinycdn.com https://api-v2.mutinyhq.io
https://api.statuspage.io; font-src 'self' data:
https://cdnjs.cloudflare.com https://js.intercomcdn.com;
img-src 'self' data: blob: https: https://platform.twitter.com
https://syndication.twitter.com https://pbs.twimg.com
https://ton.twimg.com www.googletagmanager.com; style-src
'self' 'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://platform.twitter.com
https://ton.twimg.com; frame-src https: http:; media-src
https: http:
X-WebKit-CSP:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://api.amplitude.com https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://platform.twitter.com
https://cdn.syndication.twimg.com
https://www.googletagmanager.com https://x.clearbitjs.com
https://client-registry.mutinycdn.com
https://client.mutinycdn.com/ https://user-data.mutinycdn.com;
connect-src 'self' https://msgstore.www.notion.so
wss://msgstore.www.notion.so ws://localhost:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://api.amplitude.com https://api.embed.ly
https://js.intercomcdn.com https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://api.pgncs.notion.so https://o324374.ingest.sentry.io
https://checkout.stripe.com https://js.stripe.com
https://cdn.contentful.com https://preview.contentful.com
https://images.ctfassets.net https://www2.profitwell.com
https://api.unsplash.com https://boards-api.greenhouse.io
https://user-data.mutinycdn.com https://api-v2.mutinyhq.io
https://api.statuspage.io; font-src 'self' data:
https://cdnjs.cloudflare.com https://js.intercomcdn.com;
img-src 'self' data: blob: https: https://platform.twitter.com
https://syndication.twitter.com https://pbs.twimg.com
https://ton.twimg.com www.googletagmanager.com; style-src
'self' 'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://platform.twitter.com
https://ton.twimg.com; frame-src https: http:; media-src
https: http:
Set-Cookie:
schema:
type: string
example: >-
notion_browser_id=e557ec39-01fc-4a4e-84a1-0a6b1ab4a579;
Domain=www.notion.so; Path=/; Expires=Sun, 20 Apr 2053
02:01:22 GMT; Secure
ETag:
schema:
type: string
example: W/"1ae-RFHXdRIvpQZuh0kRKb9XuWbFwzo"
Vary:
schema:
type: string
example: Accept-Encoding
CF-Cache-Status:
schema:
type: string
example: DYNAMIC
Expect-CT:
schema:
type: string
example: >-
max-age=604800,
report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
Server:
schema:
type: string
example: cloudflare
CF-RAY:
schema:
type: string
example: 67d58148ef562544-SJC
Content-Encoding:
schema:
type: string
example: gzip
content:
application/json:
schema:
type: object
example:
object: block
id: 4868767d-9029-4b9d-a41b-652ef4c9c7b9
created_time: '2021-08-06T17:46:00.000Z'
last_edited_time: '2021-08-12T00:12:00.000Z'
has_children: false
type: paragraph
paragraph:
text:
- type: text
text:
content: hello to you
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: hello to you
href: null
delete:
tags:
- Blocks
summary: Delete a block
parameters:
- name: Notion-Version
in: header
schema:
type: string
example: '{{NOTION_VERSION}}'
- name: id
in: path
schema:
type: string
required: true
example: '{{BLOCK_ID}}'
responses:
'200':
description: OK
headers:
Date:
schema:
type: string
example: Thu, 24 Feb 2022 22:26:40 GMT
Content-Type:
schema:
type: string
example: application/json; charset=utf-8
Transfer-Encoding:
schema:
type: string
example: chunked
Connection:
schema:
type: string
example: keep-alive
Set-Cookie:
schema:
type: string
example: >-
notion_check_cookie_consent=false; Domain=www.notion.so;
Path=/; Expires=Fri, 25 Feb 2022 22:26:36 GMT; Secure
X-DNS-Prefetch-Control:
schema:
type: string
example: 'off'
X-Frame-Options:
schema:
type: string
example: SAMEORIGIN
Strict-Transport-Security:
schema:
type: string
example: max-age=5184000; includeSubDomains
X-Download-Options:
schema:
type: string
example: noopen
X-Content-Type-Options:
schema:
type: string
example: nosniff
X-XSS-Protection:
schema:
type: string
example: 1; mode=block
Referrer-Policy:
schema:
type: string
example: same-origin
Content-Security-Policy:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://cdn.amplitude.com https://api.amplitude.com
https://hkfxbbdzib.notion.so https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://js.chilipiper.com
https://platform.twitter.com
https://cdn.syndication.twimg.com; connect-src 'self'
https://msgstore.www.notion.so wss://msgstore.www.notion.so
ws://localhost:* ws://127.0.0.1:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://cdn.amplitude.com
https://api.amplitude.com https://hkfxbbdzib.notion.so
https://api.embed.ly https://js.intercomcdn.com
https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://analytics.pgncs.notion.so https://api.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://cdn.contentful.com
https://preview.contentful.com https://images.ctfassets.net
https://www2.profitwell.com https://tracking.chilipiper.com
https://api.chilipiper.com https://api.unsplash.com
https://boards-api.greenhouse.io https://api.statuspage.io
https://pgncd.notion.so https://api.statsig.com; font-src
'self' data: https://cdnjs.cloudflare.com
https://js.intercomcdn.com; img-src 'self' data: blob: https:
https://platform.twitter.com https://syndication.twitter.com
https://pbs.twimg.com https://ton.twimg.com; style-src 'self'
'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://js.chilipiper.com
https://platform.twitter.com https://ton.twimg.com; frame-src
https: http:; media-src https: http:
X-Content-Security-Policy:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://cdn.amplitude.com https://api.amplitude.com
https://hkfxbbdzib.notion.so https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://js.chilipiper.com
https://platform.twitter.com
https://cdn.syndication.twimg.com; connect-src 'self'
https://msgstore.www.notion.so wss://msgstore.www.notion.so
ws://localhost:* ws://127.0.0.1:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://cdn.amplitude.com
https://api.amplitude.com https://hkfxbbdzib.notion.so
https://api.embed.ly https://js.intercomcdn.com
https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://analytics.pgncs.notion.so https://api.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://cdn.contentful.com
https://preview.contentful.com https://images.ctfassets.net
https://www2.profitwell.com https://tracking.chilipiper.com
https://api.chilipiper.com https://api.unsplash.com
https://boards-api.greenhouse.io https://api.statuspage.io
https://pgncd.notion.so https://api.statsig.com; font-src
'self' data: https://cdnjs.cloudflare.com
https://js.intercomcdn.com; img-src 'self' data: blob: https:
https://platform.twitter.com https://syndication.twitter.com
https://pbs.twimg.com https://ton.twimg.com; style-src 'self'
'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://js.chilipiper.com
https://platform.twitter.com https://ton.twimg.com; frame-src
https: http:; media-src https: http:
X-WebKit-CSP:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://cdn.amplitude.com https://api.amplitude.com
https://hkfxbbdzib.notion.so https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://js.chilipiper.com
https://platform.twitter.com
https://cdn.syndication.twimg.com; connect-src 'self'
https://msgstore.www.notion.so wss://msgstore.www.notion.so
ws://localhost:* ws://127.0.0.1:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://cdn.amplitude.com
https://api.amplitude.com https://hkfxbbdzib.notion.so
https://api.embed.ly https://js.intercomcdn.com
https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://analytics.pgncs.notion.so https://api.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://cdn.contentful.com
https://preview.contentful.com https://images.ctfassets.net
https://www2.profitwell.com https://tracking.chilipiper.com
https://api.chilipiper.com https://api.unsplash.com
https://boards-api.greenhouse.io https://api.statuspage.io
https://pgncd.notion.so https://api.statsig.com; font-src
'self' data: https://cdnjs.cloudflare.com
https://js.intercomcdn.com; img-src 'self' data: blob: https:
https://platform.twitter.com https://syndication.twitter.com
https://pbs.twimg.com https://ton.twimg.com; style-src 'self'
'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://js.chilipiper.com
https://platform.twitter.com https://ton.twimg.com; frame-src
https: http:; media-src https: http:
ETag:
schema:
type: string
example: W/"258-nR8cSrr3A4mS1zWlKjaHASxX/tQ"
Vary:
schema:
type: string
example: Accept-Encoding
CF-Cache-Status:
schema:
type: string
example: DYNAMIC
Expect-CT:
schema:
type: string
example: >-
max-age=604800,
report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
Server:
schema:
type: string
example: cloudflare
CF-RAY:
schema:
type: string
example: 6e2c1dcfdbf0255c-SJC
Content-Encoding:
schema:
type: string
example: gzip
content:
application/json:
schema:
type: object
example:
object: block
id: 4868767d-9029-4b9d-a41b-652ef4c9c7b9
created_time: '2021-08-06T17:46:00.000Z'
last_edited_time: '2022-02-24T22:26:00.000Z'
created_by:
object: user
id: 6794760a-1f15-45cd-9c65-0dfe42f5135a
last_edited_by:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
has_children: false
archived: true
type: paragraph
paragraph:
text:
- type: text
text:
content: hello to you
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: hello to you
href: null
/v1/search:
post:
tags:
- Search
summary: Search
requestBody:
content:
'*/*':
schema:
type: string
example: >-
"{\n \"query\": \"Media Article\",\n \"sort\": {\n
\"direction\": \"ascending\",\n \"timestamp\":
\"last_edited_time\"\n }\n}"
parameters:
- name: Content-Type
in: header
schema:
type: string
example: application/json
- name: Notion-Version
in: header
schema:
type: string
example: '{{NOTION_VERSION}}'
responses:
'200':
description: OK
headers:
Date:
schema:
type: string
example: Thu, 24 Feb 2022 22:20:55 GMT
Content-Type:
schema:
type: string
example: application/json; charset=utf-8
Transfer-Encoding:
schema:
type: string
example: chunked
Connection:
schema:
type: string
example: keep-alive
Set-Cookie:
schema:
type: string
example: >-
notion_check_cookie_consent=false; Domain=www.notion.so;
Path=/; Expires=Fri, 25 Feb 2022 22:20:55 GMT; Secure
X-DNS-Prefetch-Control:
schema:
type: string
example: 'off'
X-Frame-Options:
schema:
type: string
example: SAMEORIGIN
Strict-Transport-Security:
schema:
type: string
example: max-age=5184000; includeSubDomains
X-Download-Options:
schema:
type: string
example: noopen
X-Content-Type-Options:
schema:
type: string
example: nosniff
X-XSS-Protection:
schema:
type: string
example: 1; mode=block
Referrer-Policy:
schema:
type: string
example: same-origin
Content-Security-Policy:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://cdn.amplitude.com https://api.amplitude.com
https://hkfxbbdzib.notion.so https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://js.chilipiper.com
https://platform.twitter.com
https://cdn.syndication.twimg.com; connect-src 'self'
https://msgstore.www.notion.so wss://msgstore.www.notion.so
ws://localhost:* ws://127.0.0.1:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://cdn.amplitude.com
https://api.amplitude.com https://hkfxbbdzib.notion.so
https://api.embed.ly https://js.intercomcdn.com
https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://analytics.pgncs.notion.so https://api.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://cdn.contentful.com
https://preview.contentful.com https://images.ctfassets.net
https://www2.profitwell.com https://tracking.chilipiper.com
https://api.chilipiper.com https://api.unsplash.com
https://boards-api.greenhouse.io https://api.statuspage.io
https://pgncd.notion.so https://api.statsig.com; font-src
'self' data: https://cdnjs.cloudflare.com
https://js.intercomcdn.com; img-src 'self' data: blob: https:
https://platform.twitter.com https://syndication.twitter.com
https://pbs.twimg.com https://ton.twimg.com; style-src 'self'
'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://js.chilipiper.com
https://platform.twitter.com https://ton.twimg.com; frame-src
https: http:; media-src https: http:
X-Content-Security-Policy:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://cdn.amplitude.com https://api.amplitude.com
https://hkfxbbdzib.notion.so https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://js.chilipiper.com
https://platform.twitter.com
https://cdn.syndication.twimg.com; connect-src 'self'
https://msgstore.www.notion.so wss://msgstore.www.notion.so
ws://localhost:* ws://127.0.0.1:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://cdn.amplitude.com
https://api.amplitude.com https://hkfxbbdzib.notion.so
https://api.embed.ly https://js.intercomcdn.com
https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://analytics.pgncs.notion.so https://api.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://cdn.contentful.com
https://preview.contentful.com https://images.ctfassets.net
https://www2.profitwell.com https://tracking.chilipiper.com
https://api.chilipiper.com https://api.unsplash.com
https://boards-api.greenhouse.io https://api.statuspage.io
https://pgncd.notion.so https://api.statsig.com; font-src
'self' data: https://cdnjs.cloudflare.com
https://js.intercomcdn.com; img-src 'self' data: blob: https:
https://platform.twitter.com https://syndication.twitter.com
https://pbs.twimg.com https://ton.twimg.com; style-src 'self'
'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://js.chilipiper.com
https://platform.twitter.com https://ton.twimg.com; frame-src
https: http:; media-src https: http:
X-WebKit-CSP:
schema:
type: string
example: >-
script-src 'self' 'unsafe-inline' 'unsafe-eval'
https://gist.github.com https://apis.google.com
https://cdn.amplitude.com https://api.amplitude.com
https://hkfxbbdzib.notion.so https://widget.intercom.io
https://js.intercomcdn.com https://logs-01.loggly.com
https://cdn.segment.com https://analytics.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://embed.typeform.com
https://admin.typeform.com https://public.profitwell.com
js.sentry-cdn.com https://js.chilipiper.com
https://platform.twitter.com
https://cdn.syndication.twimg.com; connect-src 'self'
https://msgstore.www.notion.so wss://msgstore.www.notion.so
ws://localhost:* ws://127.0.0.1:*
https://notion-emojis.s3-us-west-2.amazonaws.com
https://s3-us-west-2.amazonaws.com
https://s3.us-west-2.amazonaws.com
https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
https: http: https://cdn.amplitude.com
https://api.amplitude.com https://hkfxbbdzib.notion.so
https://api.embed.ly https://js.intercomcdn.com
https://api-iam.intercom.io
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
https://cdn.segment.com https://api.segment.io
https://analytics.pgncs.notion.so https://api.pgncs.notion.so
https://o324374.ingest.sentry.io https://checkout.stripe.com
https://js.stripe.com https://cdn.contentful.com
https://preview.contentful.com https://images.ctfassets.net
https://www2.profitwell.com https://tracking.chilipiper.com
https://api.chilipiper.com https://api.unsplash.com
https://boards-api.greenhouse.io https://api.statuspage.io
https://pgncd.notion.so https://api.statsig.com; font-src
'self' data: https://cdnjs.cloudflare.com
https://js.intercomcdn.com; img-src 'self' data: blob: https:
https://platform.twitter.com https://syndication.twitter.com
https://pbs.twimg.com https://ton.twimg.com; style-src 'self'
'unsafe-inline' https://cdnjs.cloudflare.com
https://github.githubassets.com https://js.chilipiper.com
https://platform.twitter.com https://ton.twimg.com; frame-src
https: http:; media-src https: http:
ETag:
schema:
type: string
example: W/"4861-NbPEy8LGXcEcgaoZaIeasLCwwWU"
Vary:
schema:
type: string
example: Accept-Encoding
Content-Encoding:
schema:
type: string
example: gzip
CF-Cache-Status:
schema:
type: string
example: DYNAMIC
Expect-CT:
schema:
type: string
example: >-
max-age=604800,
report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
Server:
schema:
type: string
example: cloudflare
CF-RAY:
schema:
type: string
example: 6e2c157ceda9255c-SJC
content:
application/json:
schema:
type: object
examples:
example-0:
summary: 200 Success - Search
value:
object: list
results:
- object: page
id: ae1905c3-b77b-475b-b98f-7596c242137f
created_time: '2021-05-21T16:41:00.000Z'
last_edited_time: '2021-05-21T16:41:00.000Z'
created_by:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
last_edited_by:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
cover: null
icon: null
parent:
type: database_id
database_id: 8e2c2b76-9e1d-47d2-87b9-ed3035d607ae
archived: false
properties:
Score /5:
id: )Y7%22
type: select
select:
id: 5c944de7-3f4b-4567-b3a1-fa2c71c540b6
name: ⭐️⭐️⭐️⭐️⭐️
color: default
Type:
id: '%2F7eo'
type: select
select:
id: f96d0d0a-5564-4a20-ab15-5f040d49759e
name: Article
color: default
Publisher:
id: '%3E%24Pb'
type: select
select:
id: 01f82d08-aa1f-4884-a4e0-3bc32f909ec4
name: The Atlantic
color: red
Summary:
id: '%3F%5C25'
type: rich_text
rich_text:
- type: text
text:
content: >-
Some think chief ethics officers could help
technology companies navigate political and
social questions.
link: null
annotations:
bold: true
italic: true
strikethrough: true
underline: true
code: true
color: default
plain_text: >-
Some think chief ethics officers could help
technology companies navigate political and
social questions.
href: null
Publishing/Release Date:
id: '%3Fex%2B'
type: date
date:
start: '2020-12-08T12:00:00.000+00:00'
end: null
time_zone: null
Link:
id: VVMi
type: url
url: >-
https://www.nytimes.com/2018/10/21/opinion/who-will-teach-silicon-valley-to-be-ethical.html
Read:
id: _MWJ
type: checkbox
checkbox: false
Status:
id: '%60zz5'
type: select
select:
id: 8c4a056e-6709-4dd1-ba58-d34d9480855a
name: Ready to Start
color: yellow
Author:
id: qNw_
type: multi_select
multi_select: []
Name:
id: title
type: title
title:
- type: text
text:
content: New Media Article
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: New Media Article
href: null
url: >-
https://www.notion.so/New-Media-Article-ae1905c3b77b475bb98f7596c242137f
- object: page
id: 8f16061d-4b77-4dbc-bf04-e8b0b4319b5a
created_time: '2021-05-21T16:42:00.000Z'
last_edited_time: '2021-05-21T16:42:00.000Z'
created_by:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
last_edited_by:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
cover: null
icon: null
parent:
type: database_id
database_id: 7a94f22f-59ae-484d-90ac-4aeddd667641
archived: false
properties:
Score /5:
id: )Y7%22
type: select
select:
id: 5c944de7-3f4b-4567-b3a1-fa2c71c540b6
name: ⭐️⭐️⭐️⭐️⭐️
color: default
Type:
id: '%2F7eo'
type: select
select:
id: f96d0d0a-5564-4a20-ab15-5f040d49759e
name: Article
color: default
Publisher:
id: '%3E%24Pb'
type: select
select:
id: 01f82d08-aa1f-4884-a4e0-3bc32f909ec4
name: The Atlantic
color: red
Summary:
id: '%3F%5C25'
type: rich_text
rich_text:
- type: text
text:
content: >-
Some think chief ethics officers could help
technology companies navigate political and
social questions.
link: null
annotations:
bold: true
italic: true
strikethrough: true
underline: true
code: true
color: default
plain_text: >-
Some think chief ethics officers could help
technology companies navigate political and
social questions.
href: null
Publishing/Release Date:
id: '%3Fex%2B'
type: date
date:
start: '2020-12-08T12:00:00.000+00:00'
end: null
time_zone: null
date:
id: Lpwp
type: date
date: null
Link:
id: VVMi
type: url
url: >-
https://www.nytimes.com/2018/10/21/opinion/who-will-teach-silicon-valley-to-be-ethical.html
Wine Pairing:
id: WO%40Z
type: rich_text
rich_text: []
Read:
id: _MWJ
type: checkbox
checkbox: false
Status:
id: '%60zz5'
type: select
select:
id: 8c4a056e-6709-4dd1-ba58-d34d9480855a
name: Ready to Start
color: yellow
Author:
id: qNw_
type: multi_select
multi_select: []
Name:
id: title
type: title
title:
- type: text
text:
content: New Media Article
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: New Media Article
href: null
url: >-
https://www.notion.so/New-Media-Article-8f16061d4b774dbcbf04e8b0b4319b5a
- object: page
id: dc2a9117-163d-4075-907e-604b2f04c504
created_time: '2021-06-15T17:23:00.000Z'
last_edited_time: '2021-06-15T17:23:00.000Z'
created_by:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
last_edited_by:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
cover: null
icon: null
parent:
type: database_id
database_id: 7a94f22f-59ae-484d-90ac-4aeddd667641
archived: false
properties:
Score /5:
id: )Y7%22
type: select
select:
id: 5c944de7-3f4b-4567-b3a1-fa2c71c540b6
name: ⭐️⭐️⭐️⭐️⭐️
color: default
Type:
id: '%2F7eo'
type: select
select:
id: f96d0d0a-5564-4a20-ab15-5f040d49759e
name: Article
color: default
Publisher:
id: '%3E%24Pb'
type: select
select:
id: 01f82d08-aa1f-4884-a4e0-3bc32f909ec4
name: The Atlantic
color: red
Summary:
id: '%3F%5C25'
type: rich_text
rich_text:
- type: text
text:
content: >-
Some think chief ethics officers could help
technology companies navigate political and
social questions.
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: >-
Some think chief ethics officers could help
technology companies navigate political and
social questions.
href: null
Publishing/Release Date:
id: '%3Fex%2B'
type: date
date:
start: '2020-12-08T12:00:00.000+00:00'
end: null
time_zone: null
date:
id: Lpwp
type: date
date: null
Link:
id: VVMi
type: url
url: >-
https://www.nytimes.com/2018/10/21/opinion/who-will-teach-silicon-valley-to-be-ethical.html
Wine Pairing:
id: WO%40Z
type: rich_text
rich_text: []
Read:
id: _MWJ
type: checkbox
checkbox: false
Status:
id: '%60zz5'
type: select
select:
id: 8c4a056e-6709-4dd1-ba58-d34d9480855a
name: Ready to Start
color: yellow
Author:
id: qNw_
type: multi_select
multi_select: []
Name:
id: title
type: title
title:
- type: text
text:
content: New Media Article
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: New Media Article
href: null
url: >-
https://www.notion.so/New-Media-Article-dc2a9117163d4075907e604b2f04c504
- object: page
id: c443c084-4637-4df2-ba37-b3c8a7e3d062
created_time: '2021-06-15T17:23:00.000Z'
last_edited_time: '2021-06-15T17:23:00.000Z'
created_by:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
last_edited_by:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
cover: null
icon: null
parent:
type: database_id
database_id: 7a94f22f-59ae-484d-90ac-4aeddd667641
archived: false
properties:
Score /5:
id: )Y7%22
type: select
select:
id: 5c944de7-3f4b-4567-b3a1-fa2c71c540b6
name: ⭐️⭐️⭐️⭐️⭐️
color: default
Type:
id: '%2F7eo'
type: select
select:
id: f96d0d0a-5564-4a20-ab15-5f040d49759e
name: Article
color: default
Publisher:
id: '%3E%24Pb'
type: select
select:
id: 01f82d08-aa1f-4884-a4e0-3bc32f909ec4
name: The Atlantic
color: red
Summary:
id: '%3F%5C25'
type: rich_text
rich_text:
- type: text
text:
content: >-
Some think chief ethics officers could help
technology companies navigate political and
social questions.
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: >-
Some think chief ethics officers could help
technology companies navigate political and
social questions.
href: null
Publishing/Release Date:
id: '%3Fex%2B'
type: date
date:
start: '2020-12-08T12:00:00.000+00:00'
end: null
time_zone: null
date:
id: Lpwp
type: date
date: null
Link:
id: VVMi
type: url
url: >-
https://www.nytimes.com/2018/10/21/opinion/who-will-teach-silicon-valley-to-be-ethical.html
Wine Pairing:
id: WO%40Z
type: rich_text
rich_text: []
Read:
id: _MWJ
type: checkbox
checkbox: false
Status:
id: '%60zz5'
type: select
select:
id: 8c4a056e-6709-4dd1-ba58-d34d9480855a
name: Ready to Start
color: yellow
Author:
id: qNw_
type: multi_select
multi_select: []
Name:
id: title
type: title
title:
- type: text
text:
content: New Media Article
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: New Media Article
href: null
url: >-
https://www.notion.so/New-Media-Article-c443c08446374df2ba37b3c8a7e3d062
- object: page
id: 0ac85319-05c5-4b5b-b812-7ea0f6476ea0
created_time: '2021-06-15T17:23:00.000Z'
last_edited_time: '2021-06-15T17:23:00.000Z'
created_by:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
last_edited_by:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
cover: null
icon: null
parent:
type: database_id
database_id: 7a94f22f-59ae-484d-90ac-4aeddd667641
archived: false
properties:
Score /5:
id: )Y7%22
type: select
select:
id: 5c944de7-3f4b-4567-b3a1-fa2c71c540b6
name: ⭐️⭐️⭐️⭐️⭐️
color: default
Type:
id: '%2F7eo'
type: select
select:
id: f96d0d0a-5564-4a20-ab15-5f040d49759e
name: Article
color: default
Publisher:
id: '%3E%24Pb'
type: select
select:
id: 01f82d08-aa1f-4884-a4e0-3bc32f909ec4
name: The Atlantic
color: red
Summary:
id: '%3F%5C25'
type: rich_text
rich_text:
- type: text
text:
content: >-
Some think chief ethics officers could help
technology companies navigate political and
social questions.
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: >-
Some think chief ethics officers could help
technology companies navigate political and
social questions.
href: null
Publishing/Release Date:
id: '%3Fex%2B'
type: date
date:
start: '2020-12-08T12:00:00.000+00:00'
end: null
time_zone: null
date:
id: Lpwp
type: date
date: null
Link:
id: VVMi
type: url
url: >-
https://www.nytimes.com/2018/10/21/opinion/who-will-teach-silicon-valley-to-be-ethical.html
Wine Pairing:
id: WO%40Z
type: rich_text
rich_text: []
Read:
id: _MWJ
type: checkbox
checkbox: false
Status:
id: '%60zz5'
type: select
select:
id: 8c4a056e-6709-4dd1-ba58-d34d9480855a
name: Ready to Start
color: yellow
Author:
id: qNw_
type: multi_select
multi_select: []
Name:
id: title
type: title
title:
- type: text
text:
content: New Media Article
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: New Media Article
href: null
url: >-
https://www.notion.so/New-Media-Article-0ac8531905c54b5bb8127ea0f6476ea0
- object: page
id: 794fc25a-7f59-419d-a6e5-d9f0b516ecc7
created_time: '2021-06-15T17:24:00.000Z'
last_edited_time: '2021-06-15T17:24:00.000Z'
created_by:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
last_edited_by:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
cover: null
icon: null
parent:
type: database_id
database_id: 7a94f22f-59ae-484d-90ac-4aeddd667641
archived: false
properties:
Score /5:
id: )Y7%22
type: select
select:
id: 5c944de7-3f4b-4567-b3a1-fa2c71c540b6
name: ⭐️⭐️⭐️⭐️⭐️
color: default
Type:
id: '%2F7eo'
type: select
select:
id: f96d0d0a-5564-4a20-ab15-5f040d49759e
name: Article
color: default
Publisher:
id: '%3E%24Pb'
type: select
select:
id: 01f82d08-aa1f-4884-a4e0-3bc32f909ec4
name: The Atlantic
color: red
Summary:
id: '%3F%5C25'
type: rich_text
rich_text:
- type: text
text:
content: >-
Some think chief ethics officers could help
technology companies navigate political and
social questions.
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: >-
Some think chief ethics officers could help
technology companies navigate political and
social questions.
href: null
Publishing/Release Date:
id: '%3Fex%2B'
type: date
date:
start: '2020-12-08T12:00:00.000+00:00'
end: null
time_zone: null
date:
id: Lpwp
type: date
date: null
Link:
id: VVMi
type: url
url: >-
https://www.nytimes.com/2018/10/21/opinion/who-will-teach-silicon-valley-to-be-ethical.html
Wine Pairing:
id: WO%40Z
type: rich_text
rich_text: []
Read:
id: _MWJ
type: checkbox
checkbox: false
Status:
id: '%60zz5'
type: select
select:
id: 8c4a056e-6709-4dd1-ba58-d34d9480855a
name: Ready to Start
color: yellow
Author:
id: qNw_
type: multi_select
multi_select: []
Name:
id: title
type: title
title:
- type: text
text:
content: New Media Article
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: New Media Article
href: null
url: >-
https://www.notion.so/New-Media-Article-794fc25a7f59419da6e5d9f0b516ecc7
- object: page
id: 41ad30b7-98e7-4c55-bf21-7ac7f09c2fd5
created_time: '2021-06-15T17:24:00.000Z'
last_edited_time: '2021-06-15T17:24:00.000Z'
created_by:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
last_edited_by:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
cover: null
icon: null
parent:
type: database_id
database_id: 7a94f22f-59ae-484d-90ac-4aeddd667641
archived: false
properties:
Score /5:
id: )Y7%22
type: select
select:
id: 5c944de7-3f4b-4567-b3a1-fa2c71c540b6
name: ⭐️⭐️⭐️⭐️⭐️
color: default
Type:
id: '%2F7eo'
type: select
select:
id: f96d0d0a-5564-4a20-ab15-5f040d49759e
name: Article
color: default
Publisher:
id: '%3E%24Pb'
type: select
select:
id: 01f82d08-aa1f-4884-a4e0-3bc32f909ec4
name: The Atlantic
color: red
Summary:
id: '%3F%5C25'
type: rich_text
rich_text:
- type: text
text:
content: >-
Some think chief ethics officers could help
technology companies navigate political and
social questions.
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: >-
Some think chief ethics officers could help
technology companies navigate political and
social questions.
href: null
Publishing/Release Date:
id: '%3Fex%2B'
type: date
date:
start: '2020-12-08T12:00:00.000+00:00'
end: null
time_zone: null
date:
id: Lpwp
type: date
date: null
Link:
id: VVMi
type: url
url: >-
https://www.nytimes.com/2018/10/21/opinion/who-will-teach-silicon-valley-to-be-ethical.html
Wine Pairing:
id: WO%40Z
type: rich_text
rich_text: []
Read:
id: _MWJ
type: checkbox
checkbox: false
Status:
id: '%60zz5'
type: select
select:
id: b598e780-263b-4b02-862c-9bf7a91859ac
name: New Option
color: orange
Author:
id: qNw_
type: multi_select
multi_select: []
Name:
id: title
type: title
title:
- type: text
text:
content: New Media Article
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: New Media Article
href: null
url: >-
https://www.notion.so/New-Media-Article-41ad30b798e74c55bf217ac7f09c2fd5
- object: page
id: 6a313bae-fdd3-4617-9bd6-5b132f23be35
created_time: '2021-06-15T17:24:00.000Z'
last_edited_time: '2021-06-15T17:24:00.000Z'
created_by:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
last_edited_by:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
cover: null
icon: null
parent:
type: database_id
database_id: 7a94f22f-59ae-484d-90ac-4aeddd667641
archived: false
properties:
Score /5:
id: )Y7%22
type: select
select:
id: 5c944de7-3f4b-4567-b3a1-fa2c71c540b6
name: ⭐️⭐️⭐️⭐️⭐️
color: default
Type:
id: '%2F7eo'
type: select
select:
id: f96d0d0a-5564-4a20-ab15-5f040d49759e
name: Article
color: default
Publisher:
id: '%3E%24Pb'
type: select
select:
id: 01f82d08-aa1f-4884-a4e0-3bc32f909ec4
name: The Atlantic
color: red
Summary:
id: '%3F%5C25'
type: rich_text
rich_text:
- type: text
text:
content: >-
Some think chief ethics officers could help
technology companies navigate political and
social questions.
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: >-
Some think chief ethics officers could help
technology companies navigate political and
social questions.
href: null
Publishing/Release Date:
id: '%3Fex%2B'
type: date
date:
start: '2020-12-08T12:00:00.000+00:00'
end: null
time_zone: null
date:
id: Lpwp
type: date
date: null
Link:
id: VVMi
type: url
url: >-
https://www.nytimes.com/2018/10/21/opinion/who-will-teach-silicon-valley-to-be-ethical.html
Wine Pairing:
id: WO%40Z
type: rich_text
rich_text: []
Read:
id: _MWJ
type: checkbox
checkbox: false
Status:
id: '%60zz5'
type: select
select:
id: ad038109-97d3-4b5d-a93a-3b88229b1b58
name: New Option 3
color: purple
Author:
id: qNw_
type: multi_select
multi_select: []
Name:
id: title
type: title
title:
- type: text
text:
content: New Media Article
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: New Media Article
href: null
url: >-
https://www.notion.so/New-Media-Article-6a313baefdd346179bd65b132f23be35
next_cursor: null
has_more: false
example-1:
summary: 200 Success - Search
value:
object: list
results:
- object: page
id: ae1905c3-b77b-475b-b98f-7596c242137f
created_time: '2021-05-21T16:41:00.000Z'
last_edited_time: '2021-05-21T16:41:00.000Z'
created_by:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
last_edited_by:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
cover: null
icon: null
parent:
type: database_id
database_id: 8e2c2b76-9e1d-47d2-87b9-ed3035d607ae
archived: false
properties:
Score /5:
id: )Y7%22
type: select
select:
id: 5c944de7-3f4b-4567-b3a1-fa2c71c540b6
name: ⭐️⭐️⭐️⭐️⭐️
color: default
Type:
id: '%2F7eo'
type: select
select:
id: f96d0d0a-5564-4a20-ab15-5f040d49759e
name: Article
color: default
Publisher:
id: '%3E%24Pb'
type: select
select:
id: 01f82d08-aa1f-4884-a4e0-3bc32f909ec4
name: The Atlantic
color: red
Summary:
id: '%3F%5C25'
type: rich_text
rich_text:
- type: text
text:
content: >-
Some think chief ethics officers could help
technology companies navigate political and
social questions.
link: null
annotations:
bold: true
italic: true
strikethrough: true
underline: true
code: true
color: default
plain_text: >-
Some think chief ethics officers could help
technology companies navigate political and
social questions.
href: null
Publishing/Release Date:
id: '%3Fex%2B'
type: date
date:
start: '2020-12-08T12:00:00.000+00:00'
end: null
time_zone: null
Link:
id: VVMi
type: url
url: >-
https://www.nytimes.com/2018/10/21/opinion/who-will-teach-silicon-valley-to-be-ethical.html
Read:
id: _MWJ
type: checkbox
checkbox: false
Status:
id: '%60zz5'
type: select
select:
id: 8c4a056e-6709-4dd1-ba58-d34d9480855a
name: Ready to Start
color: yellow
Author:
id: qNw_
type: multi_select
multi_select: []
Name:
id: title
type: title
title:
- type: text
text:
content: New Media Article
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: New Media Article
href: null
url: >-
https://www.notion.so/New-Media-Article-ae1905c3b77b475bb98f7596c242137f
- object: page
id: 8f16061d-4b77-4dbc-bf04-e8b0b4319b5a
created_time: '2021-05-21T16:42:00.000Z'
last_edited_time: '2021-05-21T16:42:00.000Z'
created_by:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
last_edited_by:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
cover: null
icon: null
parent:
type: database_id
database_id: 7a94f22f-59ae-484d-90ac-4aeddd667641
archived: false
properties:
Score /5:
id: )Y7%22
type: select
select:
id: 5c944de7-3f4b-4567-b3a1-fa2c71c540b6
name: ⭐️⭐️⭐️⭐️⭐️
color: default
Type:
id: '%2F7eo'
type: select
select:
id: f96d0d0a-5564-4a20-ab15-5f040d49759e
name: Article
color: default
Publisher:
id: '%3E%24Pb'
type: select
select:
id: 01f82d08-aa1f-4884-a4e0-3bc32f909ec4
name: The Atlantic
color: red
Summary:
id: '%3F%5C25'
type: rich_text
rich_text:
- type: text
text:
content: >-
Some think chief ethics officers could help
technology companies navigate political and
social questions.
link: null
annotations:
bold: true
italic: true
strikethrough: true
underline: true
code: true
color: default
plain_text: >-
Some think chief ethics officers could help
technology companies navigate political and
social questions.
href: null
Publishing/Release Date:
id: '%3Fex%2B'
type: date
date:
start: '2020-12-08T12:00:00.000+00:00'
end: null
time_zone: null
date:
id: Lpwp
type: date
date: null
Link:
id: VVMi
type: url
url: >-
https://www.nytimes.com/2018/10/21/opinion/who-will-teach-silicon-valley-to-be-ethical.html
Wine Pairing:
id: WO%40Z
type: rich_text
rich_text: []
Read:
id: _MWJ
type: checkbox
checkbox: false
Status:
id: '%60zz5'
type: select
select:
id: 8c4a056e-6709-4dd1-ba58-d34d9480855a
name: Ready to Start
color: yellow
Author:
id: qNw_
type: multi_select
multi_select: []
Name:
id: title
type: title
title:
- type: text
text:
content: New Media Article
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: New Media Article
href: null
url: >-
https://www.notion.so/New-Media-Article-8f16061d4b774dbcbf04e8b0b4319b5a
- object: page
id: dc2a9117-163d-4075-907e-604b2f04c504
created_time: '2021-06-15T17:23:00.000Z'
last_edited_time: '2021-06-15T17:23:00.000Z'
created_by:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
last_edited_by:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
cover: null
icon: null
parent:
type: database_id
database_id: 7a94f22f-59ae-484d-90ac-4aeddd667641
archived: false
properties:
Score /5:
id: )Y7%22
type: select
select:
id: 5c944de7-3f4b-4567-b3a1-fa2c71c540b6
name: ⭐️⭐️⭐️⭐️⭐️
color: default
Type:
id: '%2F7eo'
type: select
select:
id: f96d0d0a-5564-4a20-ab15-5f040d49759e
name: Article
color: default
Publisher:
id: '%3E%24Pb'
type: select
select:
id: 01f82d08-aa1f-4884-a4e0-3bc32f909ec4
name: The Atlantic
color: red
Summary:
id: '%3F%5C25'
type: rich_text
rich_text:
- type: text
text:
content: >-
Some think chief ethics officers could help
technology companies navigate political and
social questions.
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: >-
Some think chief ethics officers could help
technology companies navigate political and
social questions.
href: null
Publishing/Release Date:
id: '%3Fex%2B'
type: date
date:
start: '2020-12-08T12:00:00.000+00:00'
end: null
time_zone: null
date:
id: Lpwp
type: date
date: null
Link:
id: VVMi
type: url
url: >-
https://www.nytimes.com/2018/10/21/opinion/who-will-teach-silicon-valley-to-be-ethical.html
Wine Pairing:
id: WO%40Z
type: rich_text
rich_text: []
Read:
id: _MWJ
type: checkbox
checkbox: false
Status:
id: '%60zz5'
type: select
select:
id: 8c4a056e-6709-4dd1-ba58-d34d9480855a
name: Ready to Start
color: yellow
Author:
id: qNw_
type: multi_select
multi_select: []
Name:
id: title
type: title
title:
- type: text
text:
content: New Media Article
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: New Media Article
href: null
url: >-
https://www.notion.so/New-Media-Article-dc2a9117163d4075907e604b2f04c504
- object: page
id: c443c084-4637-4df2-ba37-b3c8a7e3d062
created_time: '2021-06-15T17:23:00.000Z'
last_edited_time: '2021-06-15T17:23:00.000Z'
created_by:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
last_edited_by:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
cover: null
icon: null
parent:
type: database_id
database_id: 7a94f22f-59ae-484d-90ac-4aeddd667641
archived: false
properties:
Score /5:
id: )Y7%22
type: select
select:
id: 5c944de7-3f4b-4567-b3a1-fa2c71c540b6
name: ⭐️⭐️⭐️⭐️⭐️
color: default
Type:
id: '%2F7eo'
type: select
select:
id: f96d0d0a-5564-4a20-ab15-5f040d49759e
name: Article
color: default
Publisher:
id: '%3E%24Pb'
type: select
select:
id: 01f82d08-aa1f-4884-a4e0-3bc32f909ec4
name: The Atlantic
color: red
Summary:
id: '%3F%5C25'
type: rich_text
rich_text:
- type: text
text:
content: >-
Some think chief ethics officers could help
technology companies navigate political and
social questions.
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: >-
Some think chief ethics officers could help
technology companies navigate political and
social questions.
href: null
Publishing/Release Date:
id: '%3Fex%2B'
type: date
date:
start: '2020-12-08T12:00:00.000+00:00'
end: null
time_zone: null
date:
id: Lpwp
type: date
date: null
Link:
id: VVMi
type: url
url: >-
https://www.nytimes.com/2018/10/21/opinion/who-will-teach-silicon-valley-to-be-ethical.html
Wine Pairing:
id: WO%40Z
type: rich_text
rich_text: []
Read:
id: _MWJ
type: checkbox
checkbox: false
Status:
id: '%60zz5'
type: select
select:
id: 8c4a056e-6709-4dd1-ba58-d34d9480855a
name: Ready to Start
color: yellow
Author:
id: qNw_
type: multi_select
multi_select: []
Name:
id: title
type: title
title:
- type: text
text:
content: New Media Article
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: New Media Article
href: null
url: >-
https://www.notion.so/New-Media-Article-c443c08446374df2ba37b3c8a7e3d062
- object: page
id: 0ac85319-05c5-4b5b-b812-7ea0f6476ea0
created_time: '2021-06-15T17:23:00.000Z'
last_edited_time: '2021-06-15T17:23:00.000Z'
created_by:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
last_edited_by:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
cover: null
icon: null
parent:
type: database_id
database_id: 7a94f22f-59ae-484d-90ac-4aeddd667641
archived: false
properties:
Score /5:
id: )Y7%22
type: select
select:
id: 5c944de7-3f4b-4567-b3a1-fa2c71c540b6
name: ⭐️⭐️⭐️⭐️⭐️
color: default
Type:
id: '%2F7eo'
type: select
select:
id: f96d0d0a-5564-4a20-ab15-5f040d49759e
name: Article
color: default
Publisher:
id: '%3E%24Pb'
type: select
select:
id: 01f82d08-aa1f-4884-a4e0-3bc32f909ec4
name: The Atlantic
color: red
Summary:
id: '%3F%5C25'
type: rich_text
rich_text:
- type: text
text:
content: >-
Some think chief ethics officers could help
technology companies navigate political and
social questions.
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: >-
Some think chief ethics officers could help
technology companies navigate political and
social questions.
href: null
Publishing/Release Date:
id: '%3Fex%2B'
type: date
date:
start: '2020-12-08T12:00:00.000+00:00'
end: null
time_zone: null
date:
id: Lpwp
type: date
date: null
Link:
id: VVMi
type: url
url: >-
https://www.nytimes.com/2018/10/21/opinion/who-will-teach-silicon-valley-to-be-ethical.html
Wine Pairing:
id: WO%40Z
type: rich_text
rich_text: []
Read:
id: _MWJ
type: checkbox
checkbox: false
Status:
id: '%60zz5'
type: select
select:
id: 8c4a056e-6709-4dd1-ba58-d34d9480855a
name: Ready to Start
color: yellow
Author:
id: qNw_
type: multi_select
multi_select: []
Name:
id: title
type: title
title:
- type: text
text:
content: New Media Article
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: New Media Article
href: null
url: >-
https://www.notion.so/New-Media-Article-0ac8531905c54b5bb8127ea0f6476ea0
- object: page
id: 794fc25a-7f59-419d-a6e5-d9f0b516ecc7
created_time: '2021-06-15T17:24:00.000Z'
last_edited_time: '2021-06-15T17:24:00.000Z'
created_by:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
last_edited_by:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
cover: null
icon: null
parent:
type: database_id
database_id: 7a94f22f-59ae-484d-90ac-4aeddd667641
archived: false
properties:
Score /5:
id: )Y7%22
type: select
select:
id: 5c944de7-3f4b-4567-b3a1-fa2c71c540b6
name: ⭐️⭐️⭐️⭐️⭐️
color: default
Type:
id: '%2F7eo'
type: select
select:
id: f96d0d0a-5564-4a20-ab15-5f040d49759e
name: Article
color: default
Publisher:
id: '%3E%24Pb'
type: select
select:
id: 01f82d08-aa1f-4884-a4e0-3bc32f909ec4
name: The Atlantic
color: red
Summary:
id: '%3F%5C25'
type: rich_text
rich_text:
- type: text
text:
content: >-
Some think chief ethics officers could help
technology companies navigate political and
social questions.
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: >-
Some think chief ethics officers could help
technology companies navigate political and
social questions.
href: null
Publishing/Release Date:
id: '%3Fex%2B'
type: date
date:
start: '2020-12-08T12:00:00.000+00:00'
end: null
time_zone: null
date:
id: Lpwp
type: date
date: null
Link:
id: VVMi
type: url
url: >-
https://www.nytimes.com/2018/10/21/opinion/who-will-teach-silicon-valley-to-be-ethical.html
Wine Pairing:
id: WO%40Z
type: rich_text
rich_text: []
Read:
id: _MWJ
type: checkbox
checkbox: false
Status:
id: '%60zz5'
type: select
select:
id: 8c4a056e-6709-4dd1-ba58-d34d9480855a
name: Ready to Start
color: yellow
Author:
id: qNw_
type: multi_select
multi_select: []
Name:
id: title
type: title
title:
- type: text
text:
content: New Media Article
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: New Media Article
href: null
url: >-
https://www.notion.so/New-Media-Article-794fc25a7f59419da6e5d9f0b516ecc7
- object: page
id: 41ad30b7-98e7-4c55-bf21-7ac7f09c2fd5
created_time: '2021-06-15T17:24:00.000Z'
last_edited_time: '2021-06-15T17:24:00.000Z'
created_by:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
last_edited_by:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
cover: null
icon: null
parent:
type: database_id
database_id: 7a94f22f-59ae-484d-90ac-4aeddd667641
archived: false
properties:
Score /5:
id: )Y7%22
type: select
select:
id: 5c944de7-3f4b-4567-b3a1-fa2c71c540b6
name: ⭐️⭐️⭐️⭐️⭐️
color: default
Type:
id: '%2F7eo'
type: select
select:
id: f96d0d0a-5564-4a20-ab15-5f040d49759e
name: Article
color: default
Publisher:
id: '%3E%24Pb'
type: select
select:
id: 01f82d08-aa1f-4884-a4e0-3bc32f909ec4
name: The Atlantic
color: red
Summary:
id: '%3F%5C25'
type: rich_text
rich_text:
- type: text
text:
content: >-
Some think chief ethics officers could help
technology companies navigate political and
social questions.
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: >-
Some think chief ethics officers could help
technology companies navigate political and
social questions.
href: null
Publishing/Release Date:
id: '%3Fex%2B'
type: date
date:
start: '2020-12-08T12:00:00.000+00:00'
end: null
time_zone: null
date:
id: Lpwp
type: date
date: null
Link:
id: VVMi
type: url
url: >-
https://www.nytimes.com/2018/10/21/opinion/who-will-teach-silicon-valley-to-be-ethical.html
Wine Pairing:
id: WO%40Z
type: rich_text
rich_text: []
Read:
id: _MWJ
type: checkbox
checkbox: false
Status:
id: '%60zz5'
type: select
select:
id: b598e780-263b-4b02-862c-9bf7a91859ac
name: New Option
color: orange
Author:
id: qNw_
type: multi_select
multi_select: []
Name:
id: title
type: title
title:
- type: text
text:
content: New Media Article
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: New Media Article
href: null
url: >-
https://www.notion.so/New-Media-Article-41ad30b798e74c55bf217ac7f09c2fd5
- object: page
id: 6a313bae-fdd3-4617-9bd6-5b132f23be35
created_time: '2021-06-15T17:24:00.000Z'
last_edited_time: '2021-06-15T17:24:00.000Z'
created_by:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
last_edited_by:
object: user
id: 92a680bb-6970-4726-952b-4f4c03bff617
cover: null
icon: null
parent:
type: database_id
database_id: 7a94f22f-59ae-484d-90ac-4aeddd667641
archived: false
properties:
Score /5:
id: )Y7%22
type: select
select:
id: 5c944de7-3f4b-4567-b3a1-fa2c71c540b6
name: ⭐️⭐️⭐️⭐️⭐️
color: default
Type:
id: '%2F7eo'
type: select
select:
id: f96d0d0a-5564-4a20-ab15-5f040d49759e
name: Article
color: default
Publisher:
id: '%3E%24Pb'
type: select
select:
id: 01f82d08-aa1f-4884-a4e0-3bc32f909ec4
name: The Atlantic
color: red
Summary:
id: '%3F%5C25'
type: rich_text
rich_text:
- type: text
text:
content: >-
Some think chief ethics officers could help
technology companies navigate political and
social questions.
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: >-
Some think chief ethics officers could help
technology companies navigate political and
social questions.
href: null
Publishing/Release Date:
id: '%3Fex%2B'
type: date
date:
start: '2020-12-08T12:00:00.000+00:00'
end: null
time_zone: null
date:
id: Lpwp
type: date
date: null
Link:
id: VVMi
type: url
url: >-
https://www.nytimes.com/2018/10/21/opinion/who-will-teach-silicon-valley-to-be-ethical.html
Wine Pairing:
id: WO%40Z
type: rich_text
rich_text: []
Read:
id: _MWJ
type: checkbox
checkbox: false
Status:
id: '%60zz5'
type: select
select:
id: ad038109-97d3-4b5d-a93a-3b88229b1b58
name: New Option 3
color: purple
Author:
id: qNw_
type: multi_select
multi_select: []
Name:
id: title
type: title
title:
- type: text
text:
content: New Media Article
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: New Media Article
href: null
url: >-
https://www.notion.so/New-Media-Article-6a313baefdd346179bd65b132f23be35
next_cursor: null
has_more: false
/v1/comments:
get:
tags:
- Comments
summary: Retrieve comments
description: Retrieve a user object using the ID specified in the request path.
parameters:
- name: Notion-Version
in: header
schema:
type: string
example: '{{NOTION_VERSION}}'
- name: block_id
in: query
schema:
type: string
example: '{{BLOCK_ID}}'
- name: page_size
in: query
schema:
type: integer
example: '100'
responses:
'200':
description: OK
headers:
Content-Security-Policy:
schema:
type: string
example: "script-src 'self' 'unsafe-inline' 'unsafe-eval' https://gist.github.com https://apis.google.com https://www.google.com https://www.gstatic.com https://cdn.amplitude.com https://api.amplitude.com https://hkfxbbdzib.notion.so https://widget.intercom.io https://js.intercomcdn.com https://static.zdassets.com https://api.smooch.io\t https://logs-01.loggly.com https://cdn.segment.com https://analytics.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com https://js.stripe.com https://embed.typeform.com https://admin.typeform.com https://public.profitwell.com js.sentry-cdn.com https://js.chilipiper.com https://platform.twitter.com https://cdn.syndication.twimg.com www.googletagmanager.com https://www.googleadservices.com https://googleads.g.doubleclick.net https://api-v2.mutinyhq.io https://client-registry.mutinycdn.com https://client.mutinycdn.com https://user-data.mutinycdn.com http://localhost:3003 http://0.0.0.0:3003;connect-src 'self' http://localhost:3001 ws://localhost:3001 ws://localhost:* ws://127.0.0.1:* https://notion-emojis.s3-us-west-2.amazonaws.com https://s3-us-west-2.amazonaws.com https://s3.us-west-2.amazonaws.com https://notion-local-snapshots-2.s3.us-west-2.amazonaws.com https://cdn.amplitude.com https://api.amplitude.com https://hkfxbbdzib.notion.so http://localhost:3000 https://api.embed.ly https://js.intercomcdn.com https://api-iam.intercom.io https://uploads.intercomcdn.com wss://nexus-websocket-a.intercom.io https://ekr.zdassets.com https://ekr.zendesk.com\t https://makenotion.zendesk.com\t https://api.smooch.io\t wss://api.smooch.io\t https://logs-01.loggly.com https://cdn.segment.com https://api.segment.io https://analytics.pgncs.notion.so https://api.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com https://js.stripe.com https://cdn.contentful.com https://preview.contentful.com https://images.ctfassets.net https://www2.profitwell.com https://tracking.chilipiper.com https://api.chilipiper.com https://api.unsplash.com https://boards-api.greenhouse.io https://www.googleadservices.com https://googleads.g.doubleclick.net https://region1.google-analytics.com https://region1.analytics.google.com https://www.google-analytics.com https://api-v2.mutinyhq.io https://client-registry.mutinycdn.com https://client.mutinycdn.com https://user-data.mutinycdn.com https://api.statuspage.io https://pgncd.notion.so https://api.statsig.com https://statsigapi.net http://localhost:3003 ws://localhost:3003 ws://*.pages.local.notion.co:3003 http://0.0.0.0:3003 ws://0.0.0.0:3003;font-src 'self' data: https://cdnjs.cloudflare.com https://js.intercomcdn.com http://localhost:3003 http://0.0.0.0:3003;img-src 'self' data: blob: https: https://platform.twitter.com https://syndication.twitter.com https://pbs.twimg.com https://ton.twimg.com https://region1.google-analytics.com https://region1.analytics.google.com http://localhost:3003 http://0.0.0.0:3003;style-src 'self' 'unsafe-inline' https://cdnjs.cloudflare.com https://github.githubassets.com https://js.chilipiper.com https://platform.twitter.com https://ton.twimg.com http://localhost:3003 http://0.0.0.0:3003;frame-src https: http:;media-src https: http:"
X-DNS-Prefetch-Control:
schema:
type: string
example: 'off'
X-Frame-Options:
schema:
type: string
example: SAMEORIGIN
Strict-Transport-Security:
schema:
type: string
example: max-age=5184000; includeSubDomains
X-Download-Options:
schema:
type: string
example: noopen
X-Content-Type-Options:
schema:
type: string
example: nosniff
X-Permitted-Cross-Domain-Policies:
schema:
type: string
example: none
Referrer-Policy:
schema:
type: string
example: same-origin
X-XSS-Protection:
schema:
type: integer
example: '0'
Content-Type:
schema:
type: string
example: application/json; charset=utf-8
Content-Length:
schema:
type: integer
example: '704'
ETag:
schema:
type: string
example: W/"2c0-mVXaT7TnMaE5ytatx672v7KLMB0"
Vary:
schema:
type: string
example: Accept-Encoding
Date:
schema:
type: string
example: Fri, 15 Jul 2022 16:58:23 GMT
Connection:
schema:
type: string
example: keep-alive
Keep-Alive:
schema:
type: string
example: timeout=5
content:
application/json:
schema:
type: object
example:
object: list
results:
- object: comment
id: ed4c62f2-c0ad-4081-b6b8-dad025637741
parent:
type: block_id
block_id: 5d4ca33c-d6b7-4675-93d9-84b70af45d1c
discussion_id: ce18f8c6-ef2a-427f-b416-43531fc7c117
created_time: '2022-07-15T21:38:00.000Z'
last_edited_time: '2022-07-15T21:38:00.000Z'
created_by:
object: user
id: 952f41bb-da96-4d36-9c2e-74924eee8ef1
rich_text:
- type: text
text:
content: Please cite your source
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: Please cite your source
href: null
- object: comment
id: 8949cb38-aee6-4c62-ba96-6ef7df9b4cf2
parent:
type: block_id
block_id: 5d4ca33c-d6b7-4675-93d9-84b70af45d1c
discussion_id: e63f446f-a84a-4cab-8f5a-b9e7779ecb67
created_time: '2022-07-15T21:38:00.000Z'
last_edited_time: '2022-07-15T21:38:00.000Z'
created_by:
object: user
id: 952f41bb-da96-4d36-9c2e-74924eee8ef1
rich_text:
- type: text
text:
content: What other nutrients does kale have?
link: null
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: What other nutrients does kale have?
href: null
- object: comment
id: 6cd52483-6d55-4f8a-a724-4adb1c17ed43
parent:
type: block_id
block_id: 5d4ca33c-d6b7-4675-93d9-84b70af45d1c
discussion_id: ce18f8c6-ef2a-427f-b416-43531fc7c117
created_time: '2022-07-18T21:48:00.000Z'
last_edited_time: '2022-07-18T21:48:00.000Z'
created_by:
object: user
id: e450a39e-9051-4d36-bc4e-8581611fc592
rich_text:
- type: text
text:
content: >-
https://www.healthline.com/nutrition/10-proven-benefits-of-kale
link:
url: >-
https://www.healthline.com/nutrition/10-proven-benefits-of-kale
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: >-
https://www.healthline.com/nutrition/10-proven-benefits-of-kale
href: >-
https://www.healthline.com/nutrition/10-proven-benefits-of-kale
next_cursor: null
has_more: false
type: comment
comment: {}
post:
tags:
- Comments
summary: Add comment to discussion
requestBody:
content:
'*/*':
schema:
type: string
example: >-
"{\n \"discussion_id\": \"{{DISCUSSION_ID}}\",\n
\"rich_text\": [\n {\n \"text\":
{\n \"content\":
\"https://www.healthline.com/nutrition/10-proven-benefits-of-kale\",\n
\"link\": {\n \"type\":
\"url\",\n \"url\":
\"https://www.healthline.com/nutrition/10-proven-benefits-of-kale\"\n
}\n }\n }\n ]\n}"
parameters:
- name: Content-Type
in: header
schema:
type: string
example: application/json
- name: Notion-Version
in: header
schema:
type: string
example: '{{NOTION_VERSION}}'
responses:
'200':
description: OK
headers:
Content-Security-Policy:
schema:
type: string
example: "script-src 'self' 'unsafe-inline' 'unsafe-eval' https://gist.github.com https://apis.google.com https://www.google.com https://www.gstatic.com https://cdn.amplitude.com https://api.amplitude.com https://hkfxbbdzib.notion.so https://widget.intercom.io https://js.intercomcdn.com https://static.zdassets.com https://api.smooch.io\t https://logs-01.loggly.com https://cdn.segment.com https://analytics.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com https://js.stripe.com https://embed.typeform.com https://admin.typeform.com https://public.profitwell.com js.sentry-cdn.com https://js.chilipiper.com https://platform.twitter.com https://cdn.syndication.twimg.com www.googletagmanager.com https://www.googleadservices.com https://googleads.g.doubleclick.net https://api-v2.mutinyhq.io https://client-registry.mutinycdn.com https://client.mutinycdn.com https://user-data.mutinycdn.com http://localhost:3003 http://0.0.0.0:3003;connect-src 'self' http://localhost:3001 ws://localhost:3001 ws://localhost:* ws://127.0.0.1:* https://notion-emojis.s3-us-west-2.amazonaws.com https://s3-us-west-2.amazonaws.com https://s3.us-west-2.amazonaws.com https://notion-local-snapshots-2.s3.us-west-2.amazonaws.com https://cdn.amplitude.com https://api.amplitude.com https://hkfxbbdzib.notion.so http://localhost:3000 https://api.embed.ly https://js.intercomcdn.com https://api-iam.intercom.io https://uploads.intercomcdn.com wss://nexus-websocket-a.intercom.io https://ekr.zdassets.com https://ekr.zendesk.com\t https://makenotion.zendesk.com\t https://api.smooch.io\t wss://api.smooch.io\t https://logs-01.loggly.com https://cdn.segment.com https://api.segment.io https://analytics.pgncs.notion.so https://api.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com https://js.stripe.com https://cdn.contentful.com https://preview.contentful.com https://images.ctfassets.net https://www2.profitwell.com https://tracking.chilipiper.com https://api.chilipiper.com https://api.unsplash.com https://boards-api.greenhouse.io https://www.googleadservices.com https://googleads.g.doubleclick.net https://region1.google-analytics.com https://region1.analytics.google.com https://www.google-analytics.com https://api-v2.mutinyhq.io https://client-registry.mutinycdn.com https://client.mutinycdn.com https://user-data.mutinycdn.com https://api.statuspage.io https://pgncd.notion.so https://api.statsig.com https://statsigapi.net http://localhost:3003 ws://localhost:3003 ws://*.pages.local.notion.co:3003 http://0.0.0.0:3003 ws://0.0.0.0:3003;font-src 'self' data: https://cdnjs.cloudflare.com https://js.intercomcdn.com http://localhost:3003 http://0.0.0.0:3003;img-src 'self' data: blob: https: https://platform.twitter.com https://syndication.twitter.com https://pbs.twimg.com https://ton.twimg.com https://region1.google-analytics.com https://region1.analytics.google.com http://localhost:3003 http://0.0.0.0:3003;style-src 'self' 'unsafe-inline' https://cdnjs.cloudflare.com https://github.githubassets.com https://js.chilipiper.com https://platform.twitter.com https://ton.twimg.com http://localhost:3003 http://0.0.0.0:3003;frame-src https: http:;media-src https: http:"
X-DNS-Prefetch-Control:
schema:
type: string
example: 'off'
X-Frame-Options:
schema:
type: string
example: SAMEORIGIN
Strict-Transport-Security:
schema:
type: string
example: max-age=5184000; includeSubDomains
X-Download-Options:
schema:
type: string
example: noopen
X-Content-Type-Options:
schema:
type: string
example: nosniff
X-Permitted-Cross-Domain-Policies:
schema:
type: string
example: none
Referrer-Policy:
schema:
type: string
example: same-origin
X-XSS-Protection:
schema:
type: integer
example: '0'
Content-Type:
schema:
type: string
example: application/json; charset=utf-8
Content-Length:
schema:
type: integer
example: '940'
ETag:
schema:
type: string
example: W/"3ac-FxFX1g8QlNhF6Pt6zjnEfIMlXcs"
Vary:
schema:
type: string
example: Accept-Encoding
Date:
schema:
type: string
example: Fri, 15 Jul 2022 20:21:42 GMT
Connection:
schema:
type: string
example: keep-alive
Keep-Alive:
schema:
type: string
example: timeout=5
content:
application/json:
schema:
type: object
example:
object: comment
id: 6cd52483-6d55-4f8a-a724-4adb1c17ed43
parent:
type: block_id
block_id: 5d4ca33c-d6b7-4675-93d9-84b70af45d1c
discussion_id: ce18f8c6-ef2a-427f-b416-43531fc7c117
created_time: '2022-07-18T21:48:00.000Z'
last_edited_time: '2022-07-18T21:48:00.000Z'
created_by:
object: user
id: e450a39e-9051-4d36-bc4e-8581611fc592
rich_text:
- type: text
text:
content: >-
https://www.healthline.com/nutrition/10-proven-benefits-of-kale
link:
url: >-
https://www.healthline.com/nutrition/10-proven-benefits-of-kale
annotations:
bold: false
italic: false
strikethrough: false
underline: false
code: false
color: default
plain_text: >-
https://www.healthline.com/nutrition/10-proven-benefits-of-kale
href: >-
https://www.healthline.com/nutrition/10-proven-benefits-of-kale
⚠️ 実際にこのスキーマで実装等はしてないので未検証になります
どう使うのか?
最近GPTsがリリースされたのでこの人のようにOpenAPIスキーマさえあれば、適当に〇〇書いてって言えばNotionに書き込みできるのでは?と思い、作成してみました。
GPTsでNotion APIを叩くようにしてみたらやばかった
OpenAPIスキーマさえあれば何でもかんでもChatGPTに作業を自動化できてしまうのすごい時代ですね。