Skip to main content
GET
/
api
/
v1
/
users
/
{id}
Get user details
curl --request GET \
  --url https://ai-loop.alpeadria.com/api/v1/users/{id} \
  --header 'Authorization: Bearer <token>'
{
  "_id": "507f1f77bcf86cd799439011",
  "email": "[email protected]",
  "name": "Alice",
  "surname": "Johnson",
  "companyName": "WaveCentric",
  "companyVerified": true,
  "permission": "admin",
  "status": "Completed",
  "jobTitle": "Operations Manager"
}
Retrieve detailed information about a specific user by their ID. Requires Administrative access.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

The MongoDB ObjectId of the user.

Response

User details

_id
string
email
string
name
string
surname
string
companyName
string
companyVerified
boolean
permission
string
status
string
jobTitle
string