GET

Get Account User

Returns detailed information about a specific user in your account.

Endpoint

GET v5/accountuser/{user_id}

Requires authentication. Accessible to Account Administrator users only.

Path Parameters

The user to retrieve.

user_id
string
required
The ID of the account user to retrieve.

Query Parameters

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/YOUR_USER_ID?api_token=YOUR_API_TOKEN&api_token_secret=YOUR_API_TOKEN_SECRET"
Response
{
  "result_ok": true,
  "data": {
    "id": "YOUR_USER_ID",
    "username": "test",
    "email": "user@example.com",
    "admin": 0,
    "phone_support": 0,
    "userdata": [],
    "license": "",
    "defaultteam": false,
    "status": "Active",
    "last_login": null,
    "api_key": null,
    "api_secret": null
  }
}