Skip to content

List users in current organization

GET
/v1/users
curl --request GET \
--url https://app.everruns.com/api/v1/users

Lists users that belong to the current organization with optional search filtering. TM-TENANT-008: Enforces org isolation to prevent cross-tenant user enumeration.

search
string

Search by name or email

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