List users in current organization
GET
/v1/users
const url = 'https://app.everruns.com/api/v1/users';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://app.everruns.com/api/v1/usersLists users that belong to the current organization with optional search filtering. TM-TENANT-008: Enforces org isolation to prevent cross-tenant user enumeration.
Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” search
string
Search by name or email
Responses
Section titled “ Responses ”List of users in organization
Media type application/json
Response wrapper for list endpoints.
All list endpoints return responses wrapped in a data field.
object
data
required
Array of items returned by the list operation.
Array<object>
User response for listing
object
auth_provider
string | null
avatar_url
string | null
created_at
required
Timestamp when this resource was created (RFC 3339).
string format: date-time
email
required
string
id
required
Prefixed public identifier. See ID Schema.
string
name
required
Human-readable name. Safe to render in user-facing messages.
string
roles
required
Array<string>
Example generated
{ "data": [ { "auth_provider": "example", "avatar_url": "example", "created_at": "2026-04-15T12:00:00Z", "email": "example", "id": "example", "name": "example", "roles": [ "example" ] } ]}Unauthorized
Internal server error