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:
# Login and get your TOKEN
curl https://${BASE_URL}/login 
 -H 'X-Api-Key: ${SANDBOX_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 https://${BASE_URL}/orders 
 -H 'X-Api-Key: ${SANDBOX_APIKEY}' 
 -H "Authorization: ${TOKEN}"

Eine Liste aller API Funktionen