Get detailed information about a specific organization member. #### Path Parameters **`organization_id`** string required Organization ID **`user_id`** string required User ID (`usr_...`) or OrganizationUser ID (`orgusr_...`) of the member to retrieve ## Returns Returns the member object. ## Authorization Requires Admin or Owner role. ```bash curl https://api.aitronos.com/v1/organizations/org_abc123/users/usr_xyz789 \ -H "X-API-Key: $FREDDY_API_KEY" ``` ```python import requests import os api_key = os.environ["FREDDY_API_KEY"] org_id = "org_abc123" user_id = "usr_xyz789" response = requests.get( f"https://api.aitronos.com/v1/organizations/{org_id}/users/{user_id}", headers={"X-API-Key": api_key} ) member = response.json() ``` ```javascript const response = await fetch('https://api.aitronos.com/v1/organizations/org_abc123/users/usr_xyz789', { headers: { 'Authorization': `Bearer ${process.env.FREDDY_API_KEY}` } }); const member = await response.json(); ``` **Response:** 200 OK ```json { "id": "orguser_abc123", "user_id": "usr_xyz789", "organization_id": "org_def456", "full_name": "John Doe", "email": "john@example.com", "username": "johndoe", "role": { "id": "role_abc123", "name": "Admin" }, "status": { "id": "status_xyz789", "name": "Active", "selectable_in_ui": true }, "joined_at": "2025-01-15T10:30:00Z", "created_at": "2025-01-15T10:30:00Z", "last_modified_at": "2025-01-20T14:45:00Z" } ```