curl -X GET "https://api.caret.so/v1/workspace/members?limit=10&offset=0" \
-H "X-API-Key: your_api_key_here"
{
"items": [
{
"id": "user_123456789",
"name": "John Doe",
"email": "[email protected]",
"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
}
}
Get a paginated list of members in the workspace
curl -X GET "https://api.caret.so/v1/workspace/members?limit=10&offset=0" \
-H "X-API-Key: your_api_key_here"
{
"items": [
{
"id": "user_123456789",
"name": "John Doe",
"email": "[email protected]",
"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
}
}
search parameter.
X-API-Key HTTP header. This endpoint requires the users scope.
Show properties
curl -X GET "https://api.caret.so/v1/workspace/members?limit=10&offset=0" \
-H "X-API-Key: your_api_key_here"
{
"items": [
{
"id": "user_123456789",
"name": "John Doe",
"email": "[email protected]",
"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
}
}