The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

ArangoDB2::User - ArangoDB user API methods

DESCRIPTION

API METHODS

create

POST /_api/user

Create new user.

Parameters: active changePassword extra name passwd

delete

DELETE /_api/user/{name}

Removes an existing user.

Parameters: name

get

GET /_api/user/{name}

Fetches data about the specified user.

Parameters: name

update

PATCH /_api/user/{user}

Partially updates the data of an existing user.

Parameters: active changePassword extra name passwd

replace

PUT /_api/user/{user}

Replaces the data of an existing user.

Parameters: active changePassword extra name passwd

PROPERTY METHODS

active

An optional flag that specifies whether the user is active

changePassword

An optional flag that specifies whethers the user must change the password or not.

extra

An optional JSON object with arbitrary extra data about the user

passwd

The user password as a string. If no password is specified, the empty string will be used.

name

The name of the user as a string.

AUTHOR

Ersun Warncke, <ersun.warncke at outlook.com>

http://ersun.warnckes.com

COPYRIGHT

Copyright (C) 2014 Ersun Warncke

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.