curl --request GET \ --url 'https://YOURSITE.konstant.ly/openapi/v1/users?offset=20' \ --header 'X-API-KEY: 1qaz2wsx3edc4rfv1qaz2wsx3edc4rfv'
{ "users": [ { "id": "1234567890", "name": "John Doe", "language": "en", "occupation": "Salesman", "location": "London", "timezone": "Europe/London", "email": "john.doe@example.com", "isBanned": false, "role": { "alias": "learner" }, "fromApi": false, "image": null, "attributes": {} } ], "totalCount": 1 }
Get a list of users (sorted by name, 20 entries per page)
Show User object properties
Show Image object properties
Was this page helpful?