Retrieve a paginated list of users. Accessible by ADMIN and VENTANA roles.
cURL
curl --request GET \ --url https://api.example.com/api/v1/users
{ "success": true, "data": [ { "id": "770e8400-e29b-41d4-a716-446655440000", "name": "Juan Pérez", "username": "jperez", "email": "[email protected]", "phone": "8091234567", "role": "VENDEDOR", "ventanaId": "660e8400-e29b-41d4-a716-446655440000", "code": "V001", "isActive": true, "settings": { "theme": "dark", "print": { "width": 58 } }, "platform": "android", "appVersion": "2.0.7", "createdAt": "2024-03-15T12:00:00Z", "updatedAt": "2024-03-15T12:00:00Z" } ], "meta": { "page": 1, "pageSize": 10, "total": 1, "totalPages": 1 } }
Show User object
Show Meta object