ZUGRIFF AUF UNSERE API
API Dokumentation
Getting started
1. Einen API-Key: Der API Key wird von Quivo erstellt und ist dir zugeordnet.
2. Zugangsdaten: Dein Benutzername und dein Passwort mit dem du dich in der Connector Web App einloggst.
Alle Zugriffe auf die API sind nur mit einem gültigen Token erlaubt. Der Token
kann über die Login API Funktion erstellt werden und ist für eine Stunde gültig:
QUIVO BASE URLs: Production: https://api.quivo.co Sandbox: https://api-sandbox.quivo.co Example: #Send a request to support to get your apikey # Login and get your TOKEN curl ${BASE_URL}/login -H 'X-Api-Key: ${APIKEY}' -H 'Content-Type: application/json' -d '{ "username":"${USER}", "password":"${PASS}" }' # Make your first Quivo REST API call using the token you got from the first request curl ${BASE_URL}/orders -H 'X-Api-Key: ${APIKEY}' -H "Authorization: ${TOKEN}"