v1

latestOpenAPI 3.0.2Apache 2.02026-07-1739106293.5 KB
Account Management

HTTP Basic authentication

Checks the credentials provided through HTTP Basic Authentication according to RFC 7617 and returns an access token in exchange for providing valid credentials.

The credentials (username and password) MUST be sent in the HTTP header Authorization with type Basic and the Base64 encoded string consisting of username and password separated by a double colon :. The header would look as follows for username user and password pw: Authorization: Basic dXNlcjpwdw==.

The access token has to be used in the Bearer token for authorization in subsequent API calls (see also the information about Bearer tokens in this document).

It is RECOMMENDED to implement this authentication method for non-public services only.

get/credentials/basic

Response

Credentials are correct and authentication succeeded.

access_tokenstring required

The access token to be used in the Bearer token for authorization in subsequent API calls (without the custom basic// prefix).

Example response

{
  "access_token": "b34ba2bdf9ac9ee1"
}