Skip to main content
GET
/
api
/
v1
/
users
List all users
curl --request GET \
  --url https://ai-loop.alpeadria.com/api/v1/users \
  --header 'Authorization: Bearer <token>'
[
  {
    "email": "[email protected]",
    "name": "Alice",
    "surname": "Johnson",
    "companyName": "WaveCentric",
    "companyVerified": true,
    "permission": "admin",
    "status": "Completed",
    "jobTitle": "Operations Manager"
  },
  {
    "email": "[email protected]",
    "name": "Bob",
    "surname": "Smith",
    "companyName": "AlpeAdria Logistics",
    "companyVerified": true,
    "permission": "ailoop",
    "status": "Completed",
    "jobTitle": "Logistics Coordinator"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.wavecentric.ai/llms.txt

Use this file to discover all available pages before exploring further.

Admin only endpoint to retrieve alphabetical list of all registered users.

Authorizations

Authorization
string
header
required

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

Response

List of users

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