Welcome, this is a quick introduction to help you get started using the API. On the left sidebar you see all available endpoints. Each endpoint shows the available request methods and the request/response data format.

Through the developer portal it is possible to manage all your apps and authorizations. If you have obtained an app key and secret you have several options to obtain an access token. The API uses OAuth2 for authorization so you can use any OAuth2 compatible library to request an access token.

Authorization-Endpoint
/developer/auth
Token-Endpoint
/authorization/token

Authorization Code Grant
For the authorization code you have to redirect the resource owner to the consumer endpoint: /developer/auth?response_type=code&client_id=[app_key]&redirect_uri=[url]&scope=authorization. If the authorization was successful the user gets redirected to the redirect_uri of your app. The redirect_uri contains a GET parameter code which can be exchanged for an access token.

Resource Owner Password Credentials Grant
Through the resource owner password credentials grant you can obtain an access token with your app credentials and the username/password of your account.

Please contact the API provider for more informations. This API was built with Fusio.