🚀 Introducing Agent Gateway — governance, observability, and control for your AI agents.  Register for live webinar ↗
from portkey_ai import Portkey
# Initialize the Portkey client
portkey = Portkey(
api_key="PORTKEY_API_KEY",
)
# Get user from workspace
user = portkey.admin.workspaces.users.retrieve(
workspace_id="WORKSPACE_SLUG",
user_id="USER_ID"
)
print(user){
"object": "workspace-user",
"id": "66dc015d-0270-11f1-8eec-0e27d7367989",
"first_name": "John",
"last_name": "Doe",
"org_role": "admin",
"role": "admin",
"created_at": "2026-03-09T07:55:25.000Z",
"last_updated_at": "2026-03-09T07:55:25.000Z",
"status": "active",
"workspace_id": "bf276bb9-4cef-4d87-b69b-b23a6ed6b1dd",
"email": "[email protected]",
"scopes": [
"organisations.read",
"organisation_users.read",
"workspaces.read",
"logs.list",
"logs.view",
"prompts.create",
"prompts.read",
"prompts.list",
"configs.create",
"configs.read",
"configs.list",
"virtual_keys.create",
"virtual_keys.read",
"virtual_keys.list",
"workspace_users.create",
"workspace_users.read",
"workspace_users.list",
"generations.create"
],
"settings": null
}from portkey_ai import Portkey
# Initialize the Portkey client
portkey = Portkey(
api_key="PORTKEY_API_KEY",
)
# Get user from workspace
user = portkey.admin.workspaces.users.retrieve(
workspace_id="WORKSPACE_SLUG",
user_id="USER_ID"
)
print(user){
"object": "workspace-user",
"id": "66dc015d-0270-11f1-8eec-0e27d7367989",
"first_name": "John",
"last_name": "Doe",
"org_role": "admin",
"role": "admin",
"created_at": "2026-03-09T07:55:25.000Z",
"last_updated_at": "2026-03-09T07:55:25.000Z",
"status": "active",
"workspace_id": "bf276bb9-4cef-4d87-b69b-b23a6ed6b1dd",
"email": "[email protected]",
"scopes": [
"organisations.read",
"organisation_users.read",
"workspaces.read",
"logs.list",
"logs.view",
"prompts.create",
"prompts.read",
"prompts.list",
"configs.create",
"configs.read",
"configs.list",
"virtual_keys.create",
"virtual_keys.read",
"virtual_keys.list",
"workspace_users.create",
"workspace_users.read",
"workspace_users.list",
"generations.create"
],
"settings": null
}OK
workspace-user "workspace-user"
"66dc015d-0270-11f1-8eec-0e27d7367989"
"John"
"Doe"
admin, member, owner "admin"
admin, member, manager "admin"
"2026-03-09T07:55:25.000Z"
"2026-03-09T07:55:25.000Z"
active "active"
"bf276bb9-4cef-4d87-b69b-b23a6ed6b1dd"
[
"organisations.read",
"organisation_users.read",
"workspaces.read",
"logs.list",
"logs.view",
"prompts.create",
"prompts.read",
"prompts.list",
"configs.create",
"configs.read",
"configs.list",
"virtual_keys.create",
"virtual_keys.read",
"virtual_keys.list",
"workspace_users.create",
"workspace_users.read",
"workspace_users.list",
"generations.create"
]null
Was this page helpful?