Skip to content

Get users

GET
/api/v1/users

Gets paginated users. When invoked by an admin, the full user object is returned, otherwise the public user only.

Parameters

Query Parameters

limit

Number of results to return.

Typeinteger
default20
minimum1
offset

Number of results to skip.

Typeinteger
minimum0

Responses

OK
application/json
JSON
{
"limit": 20,
"offset": 0,
"results": [
{
"display_name": "Coral Fischer",
"email": "coral.fischer@example.com",
"id": 1234567890,
"role": "annotator"
}
],
"total": 1
}

Samples