Retrieve details of a specific organization member.
GEThttps://api.aitronos.com/v1/organizations/{organization_id}/users/{user_id}
organization_id string required
Organization ID with org_ prefix.
user_id string required
User ID with usr_ prefix.
Organization member details with role and status information.
Requires authentication. User must be a member of the organization.
Bash
- Bash
- Python
- Python
- JavaScript
curl -X GET \
"https://api.aitronos.com/v1/organizations/org_xyz789/users/usr_abc123" \
-H "X-API-Key: $FREDDY_API_KEY"Response:
{
"id": "orguser_abc123",
"user_id": "usr_abc123",
"organization_id": "org_xyz789",
"role_id": "role_admin",
"status_id": "status_active",
"joined_at": "2025-01-15T08:00:00Z",
"email": "admin@example.com",
"full_name": "John Doe",
"role_name": "Admin",
"status_name": "Active"
}