browse the application's end-users (search + status filter, paginated).
GET
Secret API key operationId: list/v1/users Authorization
Server-to-server. Send a secret key as a Bearer token plus the x-application-id header.
Query parameters
searchstring optionalEmail substring
statusstring optionalactive | banned | locked
limitinteger<int64> optionalPage size (1..=100)
offsetinteger<int64> optionalPage offset
Responses
200 Users
{
"data": {
"items": [
{
"created_at": null,
"email_verified": null,
"id": null,
"primary_email": null,
"profile": null,
"status": null
}
],
"limit": 0,
"offset": 0,
"total": 0
},
"error": {
"code": "string",
"message": "string"
},
"meta": {
"timestamp": "string"
},
"success": false
}Request
curl -X GET "http://localhost:8080/v1/users" \Try it
live requestGET
http://localhost:8080/v1/users