Get Account User
Returns detailed information about a single account user.
Endpoint
GET
v5/accountuser/{user_id}
Requires authentication.
Path Parameters
The account user to retrieve.
user_id
string
required
The ID of the account user to retrieve.
Query Parameters
This endpoint does not accept additional query parameters beyond authentication credentials.
None
Response
Returns a single account user object.
result_ok
boolean
Whether the request succeeded.
data
object
The account user object.
child attributes
id
string
The unique ID of the user.
username
string
The user's display name.
email
string
The user's email address.
admin
integer
Whether the user has account administrator privileges.
1 = admin, 0 = standard user.phone_support
integer
Whether phone support access is enabled for the user.
1 = enabled, 0 = disabled.userdata
array | object
Custom user data fields set on the user. Returns an empty array
[] if none are set.license
string
The license type assigned to the user (e.g.
Full Access, Professional, Collaborator, Stakeholder).defaultteam
integer | boolean
The ID of the user's default team, or
false if no default team is set.status
string | null
The user's account status. Possible values:
Active, Disabled, or null.last_login
string | null
Timestamp of the user's most recent login (EST/EDT), or
null if the user has not yet logged in.api_key
string | null
The user's API token, if one has been generated. Returns
null if no token exists.api_secret
string | null
The user's API token secret, if one has been generated. Returns
null if no token exists.Examples
Note GET requests are cached for 60 seconds. Repeated identical requests within that window will return cached results.
Request (cURL)
curl -X GET "https://api.alchemer.com/v5/accountuser/{{user_id}}?api_token=YOUR_API_TOKEN&api_token_secret=YOUR_API_TOKEN_SECRET"
Response
{
"result_ok": true,
"data": {
"id": "123456",
"username": "Jane Smith",
"email": "jane.smith@example.com",
"admin": 1,
"phone_support": 0,
"userdata": [],
"license": "Full Access",
"defaultteam": "true",
"status": "Active",
"last_login": "2026-04-06 10:39:20",
"api_key": "YOUR_API_TOKEN",
"api_secret": "YOUR_API_TOKEN_SECRET"
}
}