List Users
Get a paginated list of users
GET
Returns a paginated list of users.
Query Parameters
limitintegerdefault: 20Maximum number of results to return.
offsetintegerPagination offset for fetching subsequent pages.
searchstringSearch by name or email.
curl -X GET "https://api.example.com/v1/users?limit=20&search=jane" \
-H "Authorization: Bearer $TOKEN"{
"data": [
{
"id": "user_123",
"email": "jane@example.com",
"displayName": "Jane Doe",
"createdAt": "2024-01-15T10:30:00Z"
}
],
"meta": {
"total": 150,
"limit": 20,
"offset": 0
}
}