authentication
OAuth2 authentication.
get /auth/oidc
List of all OIDC configs.
Parameters
pagination object query
Pagination request. When supplied, the result will be filtered, sorted and limited according to this request object.
Responses
default response
default response
oneOf A response that can be either paginated or a raw list (depending on the presence of the pagination query parameter).
object
A paginated result.
Examples
No request body required
post /auth/login
OAuth 2 authentication via HTTP basic authentication, see Section 4.4 of RFC 6749 for details.
Parameters
body object
Responses
default response
default response
object
Examples
Request Body
{
"grant_type": "string"
}
post /auth/login-form
OAuth 2 authentication with all parameters as url-encoded form, see Section 4.3 of RFC 6749 for details.
Parameters
body object
Responses
default response
default response
object
Examples
Request Body
{
"password": "string",
"username": "string",
"grant_type": "string"
}