curl --location --request GET '/users?page&limit&q&isRegistrationComplete' \
--header 'Authorization: Bearer <token>'{
"isSuccess": true,
"statusCode": 200,
"data": {
"list": [
{
"id": "abc123",
"username": "john_doe",
"email": "john@example.com"
}
],
"pagination": {
"currentPage": 1,
"totalPages": 5,
"totalItems": 45,
"itemsPerPage": 10,
"hasNextPage": true,
"hasPrevPage": false
}
},
"errors": [
"Error messages..."
],
"timestamp": "2026-02-14T09:58:22.033Z"
}