Skip to main content
GET
/
admin
/
list
Get All Admins
curl --request GET \
  --url https://www.api.baselink.tech/admin/list \
  --header 'bearer: <api-key>'
{
  "admins": [
    {}
  ],
  "admins[].id": "<string>",
  "admins[].userEmail": "<string>",
  "admins[].userSub": "<string>",
  "admins[].createdAt": "<string>",
  "admins[].updatedAt": "<string>"
}
Retrieve a list of all admin users in the system. This endpoint is restricted to admin users only.
admins
array
Array of admin user objects.
admins[].id
string
The unique identifier of the admin user.
admins[].userEmail
string
The email address of the admin user.
admins[].userSub
string
The sub identifier of the admin user.
admins[].createdAt
string
The creation timestamp of the admin user.
admins[].updatedAt
string
The last update timestamp of the admin user.