GET /user/:userID
Return user information
This endpoint will return the user object for the specific userID you specified.
Get user infos
GET
https://open-api.rezi.ai/v1/user/:userID
Path Parameters
Name
Type
Description
userID*
String
User ID
Headers
Name
Type
Description
Authentication*
String
"Bearer PRIVATE_TOKEN_API_KEY" Authentication token to secure and track down your usage. Use this specific format with your Private API key.
{
"status": "success",
"data": {
"userID": "123456789abc",
"email": "charlebloomberg@gmail.com",
"createdAt": "1655271138076",
"lastSeen": "1655271138076"
}
}
Last updated