ACCESS TO THE API

API Documentation

Getting started 
 

1. An API key: The API key is created by Quivo and is assigned to you. 
2. Access data: Your user and password with which you log in to the Connector Web App.


All access to the API is only allowed with a valid token. The token can be created via the Login API function and is valid for one hour:

 

QUIVO BASE URLs:
Production: https://api.quivo.co
Sandbox: https://api-sandbox.quivo.co
Example:
# Login and get your TOKEN
curl ${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 ${BASE_URL}/orders 
 -H 'X-Api-Key: ${SANDBOX_APIKEY}' 
 -H "Authorization: ${TOKEN}"

List of all API functions