API-get-users
Retrieve a list of all users in a Notion workspace via the Notion API. Supports pagination with customizable page size and cursor for efficient data retrieval.
Instructions
Notion | List all users
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page_size | No | The number of items from the full list desired in the response. Maximum: 100 | |
start_cursor | No | If supplied, this endpoint will return a page of results starting after the cursor provided. If not supplied, this endpoint will return the first page of results. |
Input Schema (JSON Schema)
{
"$defs": {},
"properties": {
"page_size": {
"default": 100,
"description": "The number of items from the full list desired in the response. Maximum: 100",
"type": "integer"
},
"start_cursor": {
"description": "If supplied, this endpoint will return a page of results starting after the cursor provided. If not supplied, this endpoint will return the first page of results.",
"type": "string"
}
},
"required": [],
"type": "object"
}