Retrieve details about all users
Request
Path
:/admin/get_all_users
Method type
:GET
Headers
:Authorization: Bearer <token>
Params
limit
(required): The limit of users to query.
Example request
curl -X GET "https://api.example.com/admin/get_all_users" \
-H "Authorization: Bearer YOUR_TOKEN"
Example response
[
{
"id": "1",
"name": "John Doe",
"email": "john@example.com",
"app_id": 1001,
"assigned_wallet": "0x123abc456def789ghi"
},
{
"id": "2",
"name": "Jane Doe",
"email": "jane@example.com",
"app_id": 1002,
"assigned_wallet": "0xabc456def789ghi123"
}
]