Welcome to Bridge Public APIs
We provide industry-leading APIs.

In order to use our APIs you need to be a registered and approved 3rd party application. The solution is for now primarily focused on companies developing systems that can be integrated with the Idem Solution.
Please contact the Idem team if you are interested in integrating with the Idem solution!
You will need a subscription key and also instructions on how to retrieve a Oath 2.0 token before the APIs can be invoked.
APIs are protected using a Oauth 2.0 provider and the Client Credentials flow. For a primer on how Client Credentials flow work visit this page.
You will be supplied with a ClientID and a Client Secret and token provider URL. This three attributes should used to retrieve a token which should then be used to invoke the Idem APIs.
Retrieving a token - example call
curl --request POST \
--url https://{will be supplied by the Idem team}/token \
--header 'content-type: application/json' \
--data '{"client_id":"666tcxJrdDS7G2BhQSYfBm2n4M66CdU7","client_secret":"vKpmbpuU7mCPmRjr5y4cjPEC5DysLweF4mpCpjyNxqZWb3yG","audience":"{will be supplied by the Idem team}","grant_type":"client_credentials"}'
Please note that the client_id and client_secret attributes used in this example are only for instructional purposes and should not be used.
Response
{ "access_token":"eyJz93a...k4laUWw", "token_type":"Bearer", "expires_in":86400 }Calling the API
curl --request GET
\ --url https://myapi.com/api
\ --header 'authorization: Bearer ACCESS_TOKEN'
\ --header 'content-type: application/json'
Testing the APIs from the portal
The same token can be used as well when the API operations are called from this portal.
The Idem Android app can be downloaded and installed outside the Google Play Store. This can be useful for developers that want to install the Idem app or where the Idem app is not available in your market.
Download
Click on the following hyperlink to download the Idem Android app:
This link will always direct to the latest version of the app. Older versions of the app will not be available for download.
To install the Idem Android app in a devices requires configuration changes to the device.
Instructions on how to install an Android app from a web site is available here:
Changing configuration of your Android phone, or installing an app outside an app store is not controlled by the Idem team, which cannot be held liable to any damages made to the device from changing configuration.
It is the responsibility of the device owner to make sure that any configuration changes do not break any contractual agreements with a mobile operator or phone supplier.
Powered by Azure API Management.