Actions
Rest Users » History » Revision 1
Revision 1/30
| Next »
Jean-Philippe Lang, 2010-12-23 14:51
Users¶
Listing users¶
GET /users.xml
Returns users.
Showing a user¶
GET /users/[id].xml
Returns the user of given id.
GET /users/current.xml
Returns the user whose credentials are used to access the API.
Creating a user¶
POST /users.xml
Creates a user.
Parameters:
user
(required): a hash of the user attributes, including:login
(required): the user loginpassword
: the user passwordfirstname
(required)lastname
(required)mail
(required)
Response:
201 Created
: user was created422 Unprocessable Entity
: user was not created due to validation failures (response body contains the error messages)
Updating a user¶
PUT /users/[id].xml
Parameters:
user
(required): a hash of the user attributes
Updates the user of given id.
Deleting a user¶
Deleting a user is not supported yet.
Updated by Jean-Philippe Lang almost 14 years ago · 1 revisions