Returns detailed information about a specific member in your enterprise, including their profile, activity metrics, and access permissions.
Path Parameters
The unique identifier of the user to get details for
Response
Unique identifier for the user
User’s role within the enterprise (account_admin, account_member)
When the user was added to the enterprise
User’s last login time (null if never logged in)
Total number of times the user has logged in (null if never logged in)
Total count of sessions created by this user
curl -X GET "https://api.devin.ai/v2/enterprise/members/user_123" \
-H "Authorization: Bearer YOUR_API_KEY"
{
"user_id": "user_123",
"email": "john.doe@company.com",
"name": "John Doe",
"enterprise_role": "account_admin",
"created_at": "2024-01-15T10:30:00Z",
"last_login": "2024-01-20T14:22:00Z",
"login_count": 15,
"sessions_created_count": 42
}