curl -X GET "https://api.caret.so/v1/workspace/members?limit=10&offset=0" \
-H "Authorization: Bearer your_api_key_here"
{
"items": [
{
"id": "user_123456789",
"name": "John Doe",
"email": "john@example.com",
"profileUrl": "https://example.com/profile.jpg",
"role": "admin",
"createdAt": "2023-01-01T00:00:00Z",
"folders": [
{
"id": "folder_123",
"name": "Product"
}
]
}
],
"pagination": {
"limit": 10,
"offset": 0,
"total": 1
}
}
ワークスペースメンバーのページネーションされた一覧を取得します
curl -X GET "https://api.caret.so/v1/workspace/members?limit=10&offset=0" \
-H "Authorization: Bearer your_api_key_here"
{
"items": [
{
"id": "user_123456789",
"name": "John Doe",
"email": "john@example.com",
"profileUrl": "https://example.com/profile.jpg",
"role": "admin",
"createdAt": "2023-01-01T00:00:00Z",
"folders": [
{
"id": "folder_123",
"name": "Product"
}
]
}
],
"pagination": {
"limit": 10,
"offset": 0,
"total": 1
}
}
Documentation Index
Fetch the complete documentation index at: https://docs.caret.so/llms.txt
Use this file to discover all available pages before exploring further.
searchパラメータを使用して、名前またはメールで結果をフィルタリングできます。
Authorization: Bearer <API_KEY> で認証します。このエンドポイントにはusersスコープが必要です。
Bearer <API_KEY>。
curl -X GET "https://api.caret.so/v1/workspace/members?limit=10&offset=0" \
-H "Authorization: Bearer your_api_key_here"
{
"items": [
{
"id": "user_123456789",
"name": "John Doe",
"email": "john@example.com",
"profileUrl": "https://example.com/profile.jpg",
"role": "admin",
"createdAt": "2023-01-01T00:00:00Z",
"folders": [
{
"id": "folder_123",
"name": "Product"
}
]
}
],
"pagination": {
"limit": 10,
"offset": 0,
"total": 1
}
}