This video introduces the ARIS Restful API and shows several example API calls as well as an example external web application that interacts with ARIS. Content:
- ARIS Connect Repository API (ARIS 10 SR 11)
- Web Application that makes several calls to ARIS Connect (POST tokens, GET list of databases, GET find items in database, GET png graphic of model by id, PUT update a model)
I was hoping to use my free trial to gain access to your API documentation, but I am getting 403 Forbidden when I attempt to add apidocs to the server URL... I created the trial and am listed as having Admin priviledge. Is there a way to gain access to the API documentation within the free trial?
Hi Charlie,
the API is only available for ARIS Enterprise as you can see it here: https://ariscloud.com/pricing/
Kind regards
Eva
Dear Michael,
We don't have an official test environment for ARIS RESTful API as that functionality is available in every ARIS installation. And when you open ARIS_10.0_SR13_Mobile_Access_Legal_Terms.pdf on the ARIS Mobile/API Access certification inquiry form you can check which ARIS client license includes which ARIS API license.
On your ARIS Server you can access ARIS PI via by adding /apidocs in the URL instead of /#default/home.
Cheers
Rune
Hi Imran,
Yes there is (however, I am not sure what you mean with "without enterprise"), you can find it under:
[Your ARIS URL]/apidocs/
e.g.: https://aris.example.loc/apidocs/
Hope this helps.
Best,
Veronika
Example how to create a token
mobileAPIKey will be you license key
function getToken() { return new Promise(function (resolve, reject) { var settings = { "url": host + "umc/api/tokens", "method": "POST", "headers": { "content-type": "application/x-www-form-urlencoded" }, "data": { "tenant": "default", "name": "system", "password": "abc", "key": mobileAPIKey } }; $.ajax(settings).done(function (response) { resolve(response.token); }); }); }