Mediloop

List users

Platform

Retrieve users visible in the active tenant context with role-aware filtering and pagination.

Identity

One user identity

Membership

Tenant affiliation

Role

Functional access

Context

Tenant + membership

GET/v1/usersScope: users.read

Endpoint summary

GET /v1/users requires users.read and returns only users visible in the active tenant context.

Query parameters

NameTypeDescription
statusstringOptional membership/user status filter
rolestringFilter by role in the active tenant
pageintegerPage number
limitintegerItems per page

Example request

cURLCopy
GET https://api.mediloop.com/v1/users?status=active&page=1&limit=25
Authorization: Bearer $ACCESS_TOKEN
X-Tenant-Id: tnt_123
X-Membership-Id: mbr_456

Example response

JSONCopy
{
  "data": [{ "id": "usr_123", "display_name": "Dr. Sarah Müller" }],
  "meta": { "page": 1, "limit": 25 }
}

Access rules

Visibility is tenant-scoped and permission-checked. A caller cannot enumerate global Mediloop users.