Login and Authorisation

Find most important and hands-on documentation on usage login and usage of the Apikey

Login via MS Azure Active Directory or partner managed SSO

Once you are on-boarded you can access the front-end at https://www.os-assist.de

Please get more information about the on-onboarding process from LDA Legal Data Analytics team.

Api Key via Otto-Schmidt Online

Please get in touch with Otto-Schmidt to obtain your client_id and client_secret to generate your access token.

Token Retrieval

curl

curl --location 'https://online.otto-schmidt.de/token' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'grant_type=authorization_code' \
--data-urlencode 'client_id=YOUR_CLIENT_ID' \
--data-urlencode 'client_secret=YOUR_CLIENT_SECRET'

python

import requests
url = "https://online.otto-schmidt.de/token"
payload = 'grant_type=authorization_code&client_id=YOUR_CLIENT_ID&client_secret=YOUR_CLIENT_SECRET' headers = { 'Content-Type': 'application/x-www-form-urlencoded' }
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)

Authorisation Scheme

The access_token and apikey can be used to access the Legal Data Hub REST APIs

and

Last updated