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

Difference between revisions of "Orion/Server API/User API"

(Creating users)
m (add categories)
Line 35: Line 35:
  
 
== User ==
 
== User ==
 +
 +
[[Category:Orion/API]]
 +
[[Category:Orion/Server API]]

Revision as of 12:21, 11 March 2011

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