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"

m (add categories)
m (Category sort keys)
Line 36: Line 36:
 
== User ==
 
== User ==
  
[[Category:Orion/API]]
+
[[Category:Orion/API|U]]
[[Category:Orion/Server API]]
+
[[Category:Orion/Server API|U]]

Revision as of 12:26, 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