Skip to main content
Fetch all users
curl --request GET \
  --url localhost:///8080/v1/users
[
  {
    "id": "12345",
    "email": "[email protected]",
    "first_name": "John",
    "last_name": "Doe",
    "phone": "0776655443",
    "role": "manager"
  }
]

Response

Returns all users.

id
string
Example:

"12345"

email
string
first_name
string
Example:

"John"

last_name
string
Example:

"Doe"

phone
string
Example:

"0776655443"

role
string
Example:

"manager"