Authentication
How to manage authentification on API call
All your connections should respect the Basic access authentication protocol, which must be used via HTTPS, except in development mode. In order to make an API call with this method, you must add an HTTP header:
Authorization: Basic base64(public_id:private_api_key)
You must concatenate your public_id and private_api_key , then convert the whole to base64. Your HTTP header will therefore look like:
# For the keys 'public_id' and 'private_key'
Authorization: Basic cHVibGljX2lkOnByaXZhdGVfYXBpX2tleQ==
All your requests should have at least a "group_id" key with the company id you
Last modified 3yr ago