Users
Retrieve Users
Retrieve UserGET `/v1/users/:user`
Get a single user using its id
.
List Users
ExampleGET `/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.
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.