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
Api Key via Otto-Schmidt Online
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
Last updated