user_id and receive their name, email, current role assignment, activation status, and login history.
Endpoint
Authentication
This endpoint requires a valid Dashboard JWT. Pass the token in theAuthorization header:
Request Body
The unique identifier of the team member whose details you want to retrieve. You can obtain member IDs from the Fetch Members endpoint.
Response
| Field | Type | Description |
|---|---|---|
id | UUID | Unique identifier for the team member |
email | string | Email address of the team member |
first_name | string | Member’s first name |
last_name | string | Member’s last name |
user_role_id | UUID | ID of the role currently assigned to the member |
is_active | boolean | Whether the member’s account is currently active |
last_login | datetime | Timestamp of the member’s most recent login (null if never logged in) |
date_joined | datetime | Timestamp of when the member joined the account |