Fetch Users
Retrieve all the users of your NFT Management Platform, their information and associated rights.
URL
Required rights:
admin
,accountManage
orusersManage
To retrieve all the users of your NFT Management Platform, use /users
.
GET - https://{{nmpUrl}}/users
The user's
userId
will allow you to generate or update the API key.
Return Payload
Your users' information is returned.
[
{
"_id": "605c9a833ad5c229e7267bd",
"profile": "admin",
"email": "[email protected]",
"userId": "QMQP2yTFcQaszbyUdGV4mJcKP",
"deleted": false,
"__v": 0,
"auth0Id": "email|611a2dcad1ce9f9dc8",
"apiKey": "...",
"id": "605c9a833ad5c229e7267bd"
},
{
"_id": "612f6a6bc9b767880ccd46",
"email": "[email protected]",
"profile": "admin",
"userId": "email|612f6a6bd1ce9f9dc8",
"auth0Id": "email|612f6a6bd1ce9f9dc8",
"deleted": true,
"__v": 0,
"id": "612f6a6bc9b767880ccd46"
},
{
"_id": "61375e88f103e0904b517",
"email": "[email protected]",
"profile": "admin",
"userId": "423ce7d5-eb30-4b04-9d73-d4b4aed",
"auth0Id": "email|61375e88d1ce9f9dc881",
"deleted": true,
"__v": 0,
"id": "61375e88f103e0904b517"
}
]
Updated 11 days ago