Get detailed information about a specific organization member.
GET/v1/organizations/{organization_id}/users/{user_id}
organization_id string required
Organization ID
user_id string required
User ID (usr_...) or OrganizationUser ID (orgusr_...) of the member to retrieve
Returns the member object.
Requires Admin or Owner role.
Bash
- Bash
- Python
- JavaScript
curl https://api.aitronos.com/v1/organizations/org_abc123/users/usr_xyz789 \
-H "X-API-Key: $FREDDY_API_KEY"Response:
{
"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"
}