Users
Retrieve Users
Retrieve User
GET
`/v1/users/:user`
Get a single user using its id
.
List Users
Example
GET
`/v1/users`
When you want to retrieve multiple users, your data
property on the result will always be an array
even if you don't have any users. The users are returned in alphabetical order by first name.
Pagination
If the has_more
property on the pagination object is set to true, you know there are more users in the database that have not been returned to you. The pagination object also has a page
property indicating your current offset and a limit property. The total_count property in pagination returns the the total number of users in the database.
By default the page
is set to 1
and the limit
is 25
.
If we want to query for users 26 - 50, we would request page 2 with a query parameter.