GET
notion_file_uploads_list.py
Requires
Read content. Pages by cursor: next_cursor is sent back as start_cursor.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
List this integration’s file uploads, optionally by status.
from charter.packs import notion
result = await notion.file_uploads_list.ainvoke({})
Read content. Pages by cursor: next_cursor is sent back as start_cursor.| Field | Type | Description |
|---|---|---|
startCursor | string | A next_cursor value returned in a previous response. Returns the results immediately after this cursor; omit it to start from the beginning. |
pageSize | integer | The number of items from the full list desired in the response. Maximum 100, and 100 is also what the server returns when this is absent. ≥ 1; ≤ 100 |
status | "pending" | "uploaded" | "expired" | "failed" | Return only uploads in this state. pending is awaiting bytes, uploaded is ready to attach, expired was never completed in time, and failed is an import that did not work. |
Was this page helpful?