Added endpoint to search for users
This commit is contained in:
parent
3401d7ab2c
commit
64d290bcae
5 changed files with 92 additions and 7 deletions
11
REST-Tests/users.http
Normal file
11
REST-Tests/users.http
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
|
||||
# Get all users
|
||||
GET http://localhost:8080/api/v1/users
|
||||
Authorization: Bearer {{auth_token}}
|
||||
|
||||
######
|
||||
# Search for a user
|
||||
GET http://localhost:8080/api/v1/users?s=3
|
||||
Authorization: Bearer {{auth_token}}
|
||||
|
||||
###
|
||||
Reference in a new issue