Authorization: ********************curl --location --request GET '/system/users?page&limit&search&role&status' \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"users": [
{
"id": 0,
"username": "string",
"email": "user@example.com",
"role": "super_admin",
"status": "active",
"created_at": "2019-08-24T14:15:22Z"
}
],
"pagination": {
"page": 1,
"limit": 1,
"total": 0,
"totalPages": 0
}
},
"message": "string"
}