Introduction
Adaptix provides a REST API to manipulate leads and/or obtain information for various entities of Adaptix.
All Adaptix API endpoints require an OAuth1a signtature or OAuth2 access token.
Error Handling
If an OAuth error is encountered, it'll be a JSON encoded array similar to:
If a system error encountered, it'll be a JSON encoded array similar to:
Adaptix version check
In case your API service wants to support several Adaptix versions with different features, you might need to check the version of Adaptix you communicate with. Since Adaptix 2.4.0 the version number is added to all API response headers. The header name is Adaptix-Version
. With Adaptix PHP API library you can get the Adaptix version like this:
$version
will be in a semantic versioning format: [major].[minor].[patch]
. For example: 2.4.0
. If you'll try it on the latest BitBucket version, the version will have -dev
at the end. Like 2.5.1-dev
.