全てユーザーのリストを取得
GET
/v1/users全てのユーザーを含むリストを取得します。
Request
Queryパラメータ
start_cursor
string
可選
指定された場合、このエンドポイントは、提供されたカーソルの後に始まる結果のページを返します。提供されていない場合、このエンドポイントは結果の最初のページを返します。
page_size
integer
可選
応答で必要な完全なリストの項目数。最大:100
Headerパラメータ
Notion-Version
string
必須
Request samples
Response
OK(200)
HTTP Code: 200
Content Type : JSONapplication/json
データ構造
results
array [object {7}]
必須
object
string
必須
id
string
必須
type
string
必須
person
object
可選
name
string
必須
avatar_url
string
必須
bot
object
可選
next_cursor
string
必須
has_more
boolean
必須
例成功例
{
"results": [
{
"object": "user",
"id": "d40e767c-d7af-4b18-a86d-55c61f1e39a4",
"type": "person",
"person": {
"email": "avo@example.org",
},
"name": "Avocado Lovelace",
"avatar_url": "https://secure.notion-static.com/e6a352a8-8381-44d0-a1dc-9ed80e62b53d.jpg",
},
{
"object": "user",
"id": "9a3b5ae0-c6e6-482d-b0e1-ed315ee6dc57",
"type": "bot",
"bot": {},
"name": "Doug Engelbot",
"avatar_url": "https://secure.notion-static.com/6720d746-3402-4171-8ebb-28d15144923c.jpg",
}
],
"next_cursor": "fe2cc560-036c-44cd-90e8-294d5a74cebc",
"has_more": true
}
最終更新: 2 years ago