curl --request GET \
--url https://dashboard.hologram.io/api/1/users \
--header 'Authorization: Basic <encoded-value>'{
"success": true,
"limit": 3,
"size": 2,
"data": [
{
"id": 12345,
"email": "john.doe@example.com",
"first": "John",
"last": "Doe",
"role": "",
"registered": "2023-03-15 10:30:00",
"is_verified": 1,
"personal_org": 67890
},
{
"id": 54321,
"email": "admin@example.com",
"first": "Jane",
"last": "Smith",
"role": "",
"registered": "2022-01-01 09:00:00",
"is_verified": 1,
"personal_org": 98765
}
]
}Retrieve a list of users. The users returned depend on your role and organization membership.
curl --request GET \
--url https://dashboard.hologram.io/api/1/users \
--header 'Authorization: Basic <encoded-value>'{
"success": true,
"limit": 3,
"size": 2,
"data": [
{
"id": 12345,
"email": "john.doe@example.com",
"first": "John",
"last": "Doe",
"role": "",
"registered": "2023-03-15 10:30:00",
"is_verified": 1,
"personal_org": 67890
},
{
"id": 54321,
"email": "admin@example.com",
"first": "Jane",
"last": "Smith",
"role": "",
"registered": "2022-01-01 09:00:00",
"is_verified": 1,
"personal_org": 98765
}
]
}Documentation Index
Fetch the complete documentation index at: https://docs.hologram.io/llms.txt
Use this file to discover all available pages before exploring further.
HTTP Basic authentication using API keys. Set the username to apikey and the password to your API key.
You can find your API key on the Hologram Dashboard under Account Settings.
Maximum number of items to return in a single request. For endpoints that support pagination, use this with corresponding /pages endpoints to manage large result sets.
50
Was this page helpful?