Retrieve a record in a database in notion page with its id #196
Answered
by
ramnes
hpallantla
asked this question in
Q&A
-
I had a table in a notion page, and I am pulling the data from that notion page using a Python client , but now I want to retrieve a record with its id. Is there a way to do the same using a Python client? |
Beta Was this translation helpful? Give feedback.
Answered by
ramnes
Jun 13, 2023
Replies: 2 comments 2 replies
-
Unless I did not understand what you're asking, it should be just the same as any other page: |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
ramnes
-
Thanks a lot @ramnes , it worked !! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Unless I did not understand what you're asking, it should be just the same as any other page:
notion.pages.retrieve(page_id=page_id)
. :)