curl --request GET \
--url https://dashboard.hologram.io/api/1/users/me \
--header 'Authorization: Basic <encoded-value>'{
"success": true,
"data": {
"id": 12345,
"email": "holly.graham@hlgresearch.com",
"partnerid": 1,
"first": "Holly",
"last": "Graham",
"role": "",
"registered": "2023-03-15 10:30:00",
"has_password": 1,
"defaultaddressid": 0,
"is_verified": 1,
"deleted": 0,
"personal_org": 67890
}
}Retrieve information about the currently authenticated user’s account. This endpoint is limited to returning details about the user associated with the API key in use.
This can be useful to find personal organization IDs, which should be avoided when activating SIMs. If your user only has access to a personal organization, you should create a new organization using the /organizations endpoint.
curl --request GET \
--url https://dashboard.hologram.io/api/1/users/me \
--header 'Authorization: Basic <encoded-value>'{
"success": true,
"data": {
"id": 12345,
"email": "holly.graham@hlgresearch.com",
"partnerid": 1,
"first": "Holly",
"last": "Graham",
"role": "",
"registered": "2023-03-15 10:30:00",
"has_password": 1,
"defaultaddressid": 0,
"is_verified": 1,
"deleted": 0,
"personal_org": 67890
}
}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.
Was this page helpful?