curl --request GET \
--url https://api.example.com/api/v1/users{
"200": {},
"500": {},
"[]": [
{
"id": "<string>",
"username": "<string>",
"email": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"role": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"active": true
}
]
}Retrieve a list of all registered users
curl --request GET \
--url https://api.example.com/api/v1/users{
"200": {},
"500": {},
"[]": [
{
"id": "<string>",
"username": "<string>",
"email": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"role": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"active": true
}
]
}Documentation Index
Fetch the complete documentation index at: https://mintlify.com/ferneybaron/user-management-api/llms.txt
Use this file to discover all available pages before exploring further.
GET /api/v1/users
0f4df2de-fffb-4a24-9891-381ecf4f0f87jdoejdoe@example.comJohnDoeUSER2024-01-15T10:30:002024-01-15T10:30:00truecurl http://localhost:8080/api/v1/users
[
{
"id": "0f4df2de-fffb-4a24-9891-381ecf4f0f87",
"username": "jdoe",
"email": "jdoe@example.com",
"firstName": "John",
"lastName": "Doe",
"role": "USER",
"createdAt": "2024-01-15T10:30:00",
"updatedAt": "2024-01-15T10:30:00",
"active": true
}
]
[] if no users are registered