EndpointRow
DomainCollapsible row representing a single API endpoint — shows the method badge, path, summary, and expands to an OperationPanel.
Returns a paginated list of users. Requires admin role.
UsersBearerAuth
Path
| Name | In | Type | Required | Description |
|---|---|---|---|---|
userId | path | string (uuid) | required | Unique identifier of the user |
Query
| Name | In | Type | Required | Description |
|---|---|---|---|---|
page | query | integer | optional | Page number (1-based) |
pageSize | query | integer | optional | Results per page |
roledeprecated | query | string | optional | Filter by role admineditorviewer |
Headers
| Name | In | Type | Required | Description |
|---|---|---|---|---|
Authorization | header | string | required | Bearer token |
No request body.
application/json
object
dataarray[object]
totalintegerTotal items
pageinteger
pageSizeinteger
curl -X GET 'https://api.example.com/v1/users?page=1&pageSize=20' \
-H 'Authorization: Bearer <token>' \
-H 'Accept: application/json'<EndpointRow
path="/users"
operation={{ method: 'GET', summary: 'List users', ... }}
defaultOpen
/><EndpointRow path="/users" operation={getOp} />
<EndpointRow path="/users" operation={postOp} />
<EndpointRow path="/users/{userId}" operation={deleteOp} />