Beanstalk HTTP client v0.1.0 Beanstalk.User
Manage user accounts within Beanstalk.
Summary
Functions
Returns a full list of users within your Beanstalk account
Returns a paginated list of users within your Beanstalk account
Returns currently logged in user (that is: the user you configured for module)
Delete the given user
Returns a single user matching the given user_id
Update the given user
Functions
Returns a paginated list of users within your Beanstalk account.
Set the page number and per page.
Args:
page
- page number for pagination.per_page
- number of elements per page (default 30, maximum 50).
Create new user.
Admin privileges required for this API method.
Args:
login
- Username. Unique per Account.email
- Email address. Unique per account.name
- Full name.password
- Required on create.timezone
- Optional.admin
- Boolean value. Optional. Default isfalse.
Delete the given user.
Admin privileges required for this API method.
You can not delete account owner.
Args:
user_id
- Theid
attribute from theuser
object (notaccount_id
).
Returns a single user matching the given user_id
.
Args:
user_id
- Theid
attribute from theuser
object (notaccount_id
).
Update the given user.
Admin privileges required for this API method.
Args:
user_id
- Theid
attribute from theuser
object (notaccount_id
).login
- Username. Unique per Account.email
- Email address. Unique per account.name
- Full name.password
- Required on create.timezone
- Optional.admin
- Boolean value. Optional. Default isfalse.