Claude Platform Docs

Users

List Users
beta.organization.users.list(**kwargs) -> Page<BetaOrganizationUser>
GET/v1/organizations/users
Get User
beta.organization.users.retrieve(user_id) -> BetaOrganizationUser
GET/v1/organizations/users/{user_id}
Update User
beta.organization.users.update(user_id, **kwargs) -> BetaOrganizationUser
POST/v1/organizations/users/{user_id}
Remove User
beta.organization.users.remove(user_id) -> UserRemoveResponse
DELETE/v1/organizations/users/{user_id}
Models
class BetaOrganizationUser { id, added_at, email, 3 more }
id: String

ID of the User.

added_at: Time

RFC 3339 datetime string indicating when the User joined the Organization.

formatdate-time
email: String

Email of the User.

name: String

Name of the User.

Organization role of the User.

One of the following:
:admin
:billing
:claude_code_user
:developer
:managed
:membership_admin
:owner
:primary_owner
:user
type: :user

Object type.

For Users, this is always "user".

class UserRemoveResponse { id, type }
id: String

ID of the User.

type: :user_deleted

Deleted object type.

For Users, this is always "user_deleted".