Get user

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.

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"
  }
}