Python
from datagrid_ai import Datagrid client = Datagrid( api_key="My API Key", ) organization_user = client.organization.users.retrieve( "user_id", ) print(organization_user.id)
{ "id": "<string>", "email": "jsmith@example.com", "first_name": "<string>", "last_name": "<string>", "permissions": { "role": "owner" } }
Retrieve details of a specific user in the organization.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The ID of the user
User details
Represents a user in an organization