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/Login API

The Login API is a web server API for logging into the Orion server with an authorized account.

Actions on login

Login with form based authentication

Overview
To login to your user account, send a POST with your username and password.
HTTP Method
POST
Example Request
POST /login/form?username=newuser&password=myPassw0rd HTTP/1.1
Orion-Version: 1.0

  
Example Response
HTTP/1.1 200 OK
Content-Type: application/json

{
 "EmailConfirmed": false,
 "FullName": "New User",
 "HasPassword": true,
 "LastLoginTimestamp": "1416865840208",
 "Location": "/users/newuser",
 "UserName": "newuser"
}
Detailed Explanation
This login is used for the Orion form based authentication.

Back to the top