I have a DB with 106 entries and I can't seem to access the first 6 entries. I tried adding start_cursor and page_size keys to my request but they don't seem to have any effect. If I add them as ints the request gets rejected so I'm adding them as strings - not sure if this is the issue (I also tried converting to bytes). Whatever I do, it seems to return the last 100 results.
import requests
_url = 'https://api.notion.com/v1/databases/xxxxx/query'
_header = {
'Authorization': _auth,
'Content-Type': 'application/json',
'Notion-Version': '2021-08-16',
'page_size': '3',
'start_cursor': '0'}
_result = requests.post(_url, headers=_header)
Any idea how I can get all the results, or change my request to get the first six results?