Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Orion/Server API/User API

< Orion‎ | Server API
Revision as of 20:07, 17 February 2011 by Szymon.Brandys.pl.ibm.com (Talk | contribs) (Creating users)

The User API is a web server API for browsing and manipulating users.

Actions on users

Creating users

Overview
Overview
HTTP Method
POST
Example Request
POST /users HTTP/1.1
Orion-Version: 1.0
Content-Type: application/json

{
 "Login" : "Login",
 "Password" : "Password"
}  
Example Response
HTTP/1.1 201 OK

{
 "Login" : "Login"
}
Detailed Explanation
TBD.


Getting a user

Updating a user

Deleting a user

Listing users

Actions on user roles

JSON representations

User

Back to the top