Test Get users
GET
/api/v1/usersRetrieves a list of users.
Request
Query Params
limit
string
optional
Specific the max number of records to return per page.
Example:
10
page
string
optional
Indicate current page for results you want to retrieve.
Example:
1
Request samples
Responses
OK(200)
Bad Request(400)
Server Error(500)
HTTP Code: 200
Content Type : JSONapplication/json
Indicates that the required number of pages are fetched.
Data Schema
id
integer
optional
ID
Example
[
{
"id": 1,
"name": "John Doe"
},
{
"id": 2,
"name": "Jane Doe"
}
]
Last modified: 5 days ago