Find out more details about our APIs and all the options available.
CHAPTERS
Create an Account
Log in
Tabs and Options
Authentication and Communication flow
Create an Account
- Visit the Avionte API website
- Click the Sign up button.
- Enter your contact information
- Password: Must be a minimum of 8 characters
- Confirm password
- First name
- Last name
- There is also a Captcha at the bottom of the screen
- Click the Sign up button
- An email will be sent to your email address to confirm your account
- Click the link in the email
- This will open the Avionte API website and display a message stating your email address has been confirmed
- This will open the Avionte API website and display a message stating your email address has been confirmed
- Another email will be sent to your email address
Log in
- Visit the Avionte API website
- Enter your Email and Password
- Click the Sign in button.
- You will then be brought to the Main page
Tabs and Options
There are 4 different Tabs to choose from as well as your Profile.
Home Tab
This page has a few different helpful links for documentation and support.
APIs Tabs
There are several different links that will bring you to the respective details for that specific API.
Products Tabs
Issues Tabs
Please don't use the Issues tab for submitting questions or tickets, instead use Zendesk.
Authentication and Communication flow
To make a valid request to the Bold Front Office APIs, your request must be authenticated via bearer token. In order to get a valid token, the first request you make is a POST to the Partner Authentication API, supplying the following required information:
- Header: "Content-Type" = "application/x-www-form-urlencoded"
- Header: "Ocp-Apim-Subscription-Key" = (provided to you by Avointe)
- Body Key/Value Pair: "grant_type" = "client_credentials"
- Body Key/Value Pair: "client_id" = (provided to you by Avionte)
- Body Key/Value Pair: "client_secret" = (provided to you by Avionte)
- Body Key/Value Pair: "scope" = "avionte.aero.compasintegrationservice”
The Partner Authentication API will respond with an access token (bearer token) which you’ll need to use in subsequent requests to the Bold Front Office APIs. Each access token is valid for one hour, after which you’ll need to make a new request to the Partner Authentication API to generate a new valid access token.
Once you have a valid bearer access token, you may start making requests to the Bold Front Office API. Each request is required to have the following information:
- Header: "Tenant" = (provided to you by Avionte)
- Header: "Ocp-Apim-Subscription-Key" = (provided to you by Avointe)
- Header: "Authorization" = (the word "Bearer" a space and your current access token)
- Required Body and/or Parameters: These are method specific, please refer to the API documentation here: https://partner-developer.avionte.com/
- Optional Header: "RequestId” = If you’d like your responses from requests to be identifiable, you can provide this header with a valid GUID. The response from Avointe will contain a “RequestId” header as well, containing the same valid GUID you provided in your request.
See the diagram below for an overview of the API authentication and communication flow